1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-23 00:15:52 +03:00
openwrt-xburst/root/usr/share/udhcpc/default.script
mbm 0671609012 cleanup
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@66 3c298f89-4303-0410-b956-a3cf2f4a3e73
2004-06-06 06:40:04 +00:00

39 lines
1.1 KiB
Bash
Executable File

#!/bin/sh
# udhcpc script edited by Tim Riker <Tim@Rikers.org>
# (slightly modified)
[ -z "$1" ] && echo "Error: should be run by udhcpc" && exit 1
RESOLV_CONF="/tmp/resolv.conf"
case "$1" in
deconfig)
ifconfig $interface 0.0.0.0
;;
renew|bound)
ifconfig $interface $ip \
${broadcast:+broadcast $broadcast} \
${subnet:+netmask $subnet}
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
done
;;
esac
exit 0