#!/bin/sh
#-----------------------------------------------
#IPIP tunnel config script on target side
#
#By Yu Cai(ycai@uccs.edu) at UCCS, June 2003
#-----------------------------------------------

#define var
client_ip=128.198.61.51
gw_ip=128.198.60.200

#route between client and target through gateway
ip route add $client_ip via $gw_ip dev eth0 onlink
