File:  [ELWIX - Embedded LightWeight unIX -] / elwix / config / etc / default / rc.d / 015.bridge.stop
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Jul 5 23:43:00 2011 UTC (13 years ago) by misho
Branches: misho
CVS tags: start, elwix1_5, elwix1_4, Patch1
ELWIX project

#!/bin/sh

IFACE="bridge0"

BRIDGED="fxp0 rl0 wlan0 wlan1"
STP="fxp rl0"

echo "Config Bridge interface $IFACE ..."

ifconfig $IFACE create
for i in $BRIDGED; do
	ifconfig $IFACE addm $i
done
for i in $STP; do
	ifconfig $IFACE stp $i
done
ifconfig $IFACE up

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>