]> TLD Linux GIT Repositories - rc-scripts.git/blob - lib/ifup-vlan
3d72d7859c3d00c34e47da77319e223b854c9ca9
[rc-scripts.git] / lib / ifup-vlan
1 #!/bin/sh
2 #
3 #    ifup-vlan - Virtual LAN configuration script
4 #    Copyright (C) 2001 Arkadiusz Miƛkiewicz <misiek@pld-linux.org>
5 #
6 #    This program is free software; you can redistribute it and/or modify
7 #    it under the terms of the GNU General Public License as published by
8 #    the Free Software Foundation; either version 2 of the License, or
9 #    (at your option) any later version.
10 #
11 #    This program is distributed in the hope that it will be useful,
12 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #    GNU General Public License for more details.
15 #
16 #    You should have received a copy of the GNU General Public License
17 #    along with this program; if not, write to the Free Software
18 #    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 #
20 #
21 PATH=/sbin:/usr/sbin:/bin:/usr/bin
22
23 cd /lib/rc-scripts
24 . /etc/sysconfig/network
25 . /etc/rc.d/init.d/functions
26 . /lib/rc-scripts/functions.network
27
28 CONFIG=$1
29 source_config
30
31 if is_no "${VLAN_NETWORKING}"; then
32         exit 0
33 fi
34
35 if [ "foo$2" = "fooboot" ] && is_no "${ONBOOT}"; then
36         exit 0
37 fi
38
39 if [ -z "$VLAN_DEV" ]; then
40         VLAN_DEV=$(echo ${DEVICE} | awk ' { gsub(/\..*$/,NUL); print $0 } ')
41 fi
42 VLAN_ID=$(echo ${DEVICE} | awk " { gsub(/^.*\./,NUL); print \$0 } ")
43
44 if [ ! -f /etc/sysconfig/interfaces/ifcfg-${VLAN_DEV} ]; then
45         nls "%s is missing. Can't continue." "ifcfg-${VLAN_DEV}"
46         exit 1
47 fi
48
49 if ! grep -qlE "ONBOOT=[^n][^o]" /etc/sysconfig/interfaces/ifcfg-${VLAN_DEV}; then
50         nls "Warning: ${VLAN_DEV} is disabled on boot."
51 fi
52
53 modprobe -s 8021q
54
55 if [ ! -e /proc/net/vlan/config ]; then
56         nls "VLAN kernel support is missing. Can't continue."
57         exit 1
58 fi
59
60 # set all major variables
61 setup_ip_param
62
63 if (LC_ALL=C ip link add type vlan help 2>&1 | grep -q "VLANID :="); then
64         /sbin/ip link set ${VLAN_DEV} up
65         /sbin/ip link add link ${VLAN_DEV} name ${DEVICE} type vlan id ${VLAN_ID}
66         # default yes
67         is_no "${VLAN_REORDER_HDR}" && VLAN_REORDER_HDR=off || VLAN_REORDER_HDR=on
68         # default yes
69         is_no "$VLAN_GVRP" && VLAN_GVRP=off || VLAN_GVRP=on
70         /sbin/ip link set ${DEVICE} type vlan reorder_hdr ${VLAN_REORDER_HDR} gvrp ${VLAN_GVRP}
71 elif [ -x /sbin/vconfig ]; then
72         /sbin/vconfig set_name_type DEV_PLUS_VID_NO_PAD
73         /sbin/ip link set ${VLAN_DEV} up
74         /sbin/vconfig add ${VLAN_DEV} ${VLAN_ID}
75         /sbin/vconfig set_flag ${DEVICE} 1 ${VLAN_REORDER_HDR:-1}
76 else
77         nls "/sbin/vconfig or iproute2 with vlan support is missing. Can't continue."
78         exit 1
79 fi
80 RESULT=$?
81
82 # XXX: more VLAN specific options support
83
84 exit $RESULT