File:  [ELWIX - Embedded LightWeight unIX -] / elwix / config / etc / uboot / rc.d / 014.gre.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="gre0"

TUNNEL="172.31.2.1 172.31.2.2"

OPT=""
IP="10.10.10.1/24 10.10.10.2"

echo "Config GRE network interface $IFACE ..."
ifconfig $IFACE create
ifconfig $IFACE tunnel $TUNNEL
ifconfig $IFACE inet $IP $OPT up

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