blob: 26b33ca80a30fb99518b3cf4c4d4dfe13a2583a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#!/bin/sh
which vconfig || {
echo "vconfig executable not found, aborting"
exit 0
}
[ -d /proc/net/vlan ] || {
echo "no kernel support for 802.1q found, aborting"
exit 0
}
case "$IFACE" in
vlan*)
vconfig set_name_type VLAN_PLUS_VID_NO_PAD
VLANID=`echo $IFACE|sed "s/vlan*//"`
;;
eth*.*)
vconfig set_name_type DEV_PLUS_VID_NO_PAD
VLANID=`echo $IFACE|sed "s/eth[0-9][0-9]*\.*//g"`
IF_VLAN_RAW_DEVICE=`echo $IFACE|sed "s/\(eth[0-9][0-9]*\)\..*/\1/"`
;;
*)
exit 0
;;
esac
if [ "$IF_VLAN_RAW_DEVICE" != "" ]; then
if ! grep -q "$IF_VLAN_RAW_DEVICE" /proc/net/dev
then
echo "$IF_VLAN_RAW_DEVICE does not exist, unable to create $IFACE"
exit 1
fi
ip link set up dev $IF_VLAN_RAW_DEVICE
vconfig add $IF_VLAN_RAW_DEVICE $VLANID
if [ "$IF_MAC_ADDRESS" != "" ]
then
ip link set $IF_VLAN_RAW_DEVICE.$VLANID address $IF_MAC_ADDRESS
fi
ip link set up dev $IF_VLAN_RAW_DEVICE.$VLANID
fi
exit 0
|