openwrt/openwrt/package/base-files/default/usr/share/udhcpc/default.script

43 lines
1.2 KiB
Plaintext
Raw Normal View History

2005-01-16 12:43:02 +01:00
#!/bin/sh
# udhcpc script edited by Tim Riker <Tim@Rikers.org>
# (slightly modified for OpenWrt)
2005-01-16 12:43:02 +01:00
[ -z "$1" ] && echo "Error: should be run by udhcpc" && exit 1
2005-01-16 12:43:02 +01:00
RESOLV_CONF="/tmp/resolv.conf"
2005-01-16 12:43:02 +01:00
case "$1" in
deconfig)
ifconfig $interface 0.0.0.0
;;
renew|bound)
ifconfig $interface $ip \
netmask ${subnet:-255.255.255.0} \
broadcast ${broadcast:-+}
if [ -n "$router" ] ; then
echo "deleting routers"
while route del default gw 0.0.0.0 dev $interface ; do
:
done
for i in $router ; do
route add default gw $i dev $interface
done
fi
echo -n > $RESOLV_CONF
${domain:+echo search $domain} >> $RESOLV_CONF
for i in $dns ; do
echo adding dns $i
echo nameserver $i >> $RESOLV_CONF
# user rules
[ -f /etc/udhcpc.user ] && . /etc/udhcpc.user
done
;;
2005-01-16 12:43:02 +01:00
esac
exit 0