File: busybr

package info (click to toggle)
bridge-utils 1.7.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 400 kB
  • sloc: ansic: 1,327; sh: 698; makefile: 99
file content (23 lines) | stat: -rwxr-xr-x 393 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /bin/sh
BR=${1:-"br549"}
ETH0=${1:-"eth0"}
ETH1=${1:-"eth1"}

# fetch ip of working br0
IP=`/sbin/ifconfig $BR | sed -n -e 's/^.*inet addr:\([0-9][0-9\.]*\).*$/\1/p'`
echo "Using IP address $IP"

while true;
do
	ifconfig $BR down
	brctl delbr $BR
	ifconfig $ETH0 $IP

	ifconfig $ETH0 0.0.0.0
	brctl addbr $BR
	brctl addif $BR $ETH0
	brctl addif $BR $ETH1
	ifconfig $BR $IP
	
	sleep 10
done