aboutsummaryrefslogtreecommitdiffstats
path: root/tests/mkbr
blob: 1d64e82eae2d82614a37976566498caa2744fc51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh

BR=${1:-"br549"}
ETH=${2:-"eth0"}

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

ifconfig $ETH 0.0.0.0
brctl addbr $BR
brctl addif $BR $ETH
ifconfig $BR $IP