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