blob: f153df564b3348615ca296e658f5f6fbfce6db48 (
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
|
#!/bin/sh
which vconfig >/dev/null || exit 0
[ -d /proc/net/vlan ] || 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
|