File:  [ELWIX - Embedded LightWeight unIX -] / elwix / config / etc / uboot / rc.d / 015.bridge.stop
Revision 1.1.2.1: download - view: text, annotated - select for diffs - revision graph
Thu Jan 23 09:34:55 2014 UTC (10 years, 7 months ago) by misho
Branches: elwix2_2
add files

#!/bin/sh

IFACE="bridge0"

BRIDGED="fxp0 rl0 wlan0"
STP="fxp0 rl0"

IP=""

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 inet $IP up

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