1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-21 20:28:02 +03:00
openwrt-xburst/package/base-files/default/usr/share/udhcpc/default.script
wbx ba3ea46d52 add the possibility to use a script, idea by fulup
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1913 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-09-13 10:59:54 +00:00

43 lines
1.2 KiB
Bash
Executable File

#!/bin/sh
# udhcpc script edited by Tim Riker <Tim@Rikers.org>
# (slightly modified for OpenWrt)
[ -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 \
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
;;
esac
exit 0