]> git.pld-linux.org Git - projects/rc-scripts.git/blame_incremental - lib/ifup-br
If an iface type is specified NEVER override it
[projects/rc-scripts.git] / lib / ifup-br
... / ...
CommitLineData
1#!/bin/sh
2#
3# ifup-br - bridge configuration script
4# Copyright (C) 2000 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#
21PATH=/sbin:/usr/sbin:/bin:/usr/bin
22
23. /etc/sysconfig/network
24. /etc/rc.d/init.d/functions
25. /lib/rc-scripts/functions.network
26
27CONFIG=$1
28source_config
29
30if [ "foo$2" = "fooboot" ] && is_no "${ONBOOT}"; then
31 exit
32fi
33
34if [ ! -x /sbin/brctl ]; then
35 nls "%s is missing. Can't continue." "/sbin/brctl"
36 exit 1
37fi
38
39# load bridge module
40is_module "bridge" && modprobe -s bridge
41
42# set all major variables
43setup_ip_param
44
45# forget all addresses
46for device in $BRIDGE_DEVS; do
47 LC_ALL=C ip addr flush dev ${device} 2>&1 | grep -v "Nothing to flush"
48done
49
50# set wireless parameters
51for device in $BRIDGE_DEVS; do
52 if is_wireless_device "${device}"; then
53 wireless_param "${device}" "br"
54 fi
55done
56
57brctl addbr ${DEVICE}
58
59# add interfaces to bridge
60for device in $BRIDGE_DEVS; do
61 brctl addif ${DEVICE} ${device}
62 ip link set dev ${device} multicast ${MULTICAST} ${ARP}
63 ip link set ${device} up
64done
65
66
67# standard
68[ -n "$AGEING" ] && brctl setageing "$AGEING"
69[ -n "$GCINT" ] && brctl setgcint "$GCINT"
70[ -n "$FD" ] && brctl setfd ${DEVICE} "$FD"
71
72# spanning tree protocol
73if is_yes "$SPANNING_TREE"; then
74 brctl stp ${DEVICE} yes
75 [ -n "$BRIDGEPRIO" ] && brctl setbridgeprio ${DEVICE} "$BRIDGEPRIO"
76 [ -n "$HELLO" ] && brctl sethello ${DEVICE} "$HELLO"
77 [ -n "$MAXAGE" ] && brctl setmaxage ${DEVICE} "$MAXAGE"
78 [ -n "$PATHCOST" -a -n "$PATHCOST_PORT" ] && brctl setpathcost ${DEVICE} "$PATHCOST_PORT" "$PATHCOST"
79 [ -n "$PORTPRIO" -a -n "$PORTPRIO_PORT" ] && brctl setportprio ${DEVICE} "$PORTPRIO_PORT" "$PORTPRIO"
80else
81 brctl stp ${DEVICE} no
82fi
83
84ip link set dev ${DEVICE} multicast ${MULTICAST} ${ARP}
85if ! (ip link set dev ${DEVICE} up); then
86 nls "problems with setting bridge %s" "${DEVICE}"
87 exit 1
88fi
This page took 0.033829 seconds and 4 git commands to generate.