#!/bin/sh IFACE="gif0" TUNNEL="172.31.1.1 172.31.1.2" OPT="mtu 1500" echo "Config GIF-EtherOverIP network interface $IFACE ..." ifconfig $IFACE create ifconfig $IFACE tunnel $TUNNEL ifconfig $IFACE $OPT up