busybox/examples/udhcp/sample.bound

32 lines
620 B
Plaintext
Raw Normal View History

2002-08-21 19:54:38 +05:30
#!/bin/sh
# Sample udhcpc renew script
2002-10-15 03:11:28 +05:30
RESOLV_CONF="/etc/udhcpc/resolv.conf"
2002-08-21 19:54:38 +05:30
[ -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 19:54:38 +05:30
for i in $router
do
/sbin/route add default gw $i dev $interface metric $((metric++))
2002-08-21 19:54:38 +05:30
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
done