File:  [ELWIX - Embedded LightWeight unIX -] / elwix / config / etc / default / rc.d / 014.gif.stop
Revision 1.1.1.1.22.2: download - view: text, annotated - select for diffs - revision graph
Thu Mar 5 23:39:31 2015 UTC (9 years, 4 months ago) by misho
Branches: elwix2_3
Diff to: branchpoint 1.1.1.1: preferred, colored
modify scripts

#!/bin/sh

IFACE="gif0"

TUNNEL="172.31.1.1 172.31.1.2"

OPTS="mtu 1500"
#IP="10.10.10.1/24 10.10.10.2"
IP=""

[ -z "$IFACE" ] && exit

echo "Config GIF network interface $IFACE ..."

ifconfig $IFACE create || exit
ifconfig $IFACE tunnel $TUNNEL
if [ -n "$IP" ]; then
	ifconfig $IFACE inet $IP
fi
ifconfig $IFACE $OPTS up

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