File:  [ELWIX - Embedded LightWeight unIX -] / elwix / config / etc / uboot / rc.d / 015.bridge.stop
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Mon Sep 15 19:06:52 2014 UTC (9 years, 11 months ago) by misho
Branches: MAIN
CVS tags: elwix2_3, HEAD, ELWIX2_2p0
elwix 2.2

#!/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>