hush/examples/udhcp/sample.renew

31 lines
619 B
Plaintext
Raw Normal View History

2002-08-21 14:24:38 +00:00
#!/bin/sh
# Sample udhcpc bound script
2002-10-14 21:41:28 +00:00
RESOLV_CONF="/etc/udhcpc/resolv.conf"
2002-08-21 14:24:38 +00:00
[ -n "$broadcast" ] && BROADCAST="broadcast $broadcast"
[ -n "$subnet" ] && NETMASK="netmask $subnet"
/sbin/ifconfig $interface $ip $BROADCAST $NETMASK
if [ -n "$router" ]
then
echo "deleting routers"
while /sbin/route del default gw 0.0.0.0 dev $interface
do :
done
metric=0
2002-08-21 14:24:38 +00:00
for i in $router
do
/sbin/route add default gw $i dev $interface metric $((metric++))
2002-08-21 14:24:38 +00:00
done
fi
echo -n > $RESOLV_CONF
[ -n "$domain" ] && echo domain $domain >> $RESOLV_CONF
for i in $dns
do
echo adding dns $i
echo nameserver $i >> $RESOLV_CONF
2002-10-14 21:41:28 +00:00
done