2 # udhcpc script edited by Tim Riker <Tim@Rikers.org>
5 [ -z "$1" ] && echo "Error: should be run by udhcpc" && exit 1
7 RESOLV_CONF
="/tmp/resolv.conf"
11 ifconfig
$interface 0.0.0.0
15 ifconfig
$interface $ip \
16 ${broadcast:+broadcast $broadcast} \
17 ${subnet:+netmask $subnet}
19 if [ -n "$router" ] ; then
20 echo "deleting routers"
21 while route del default gw
0.0.0.0 dev
$interface ; do
26 route add default gw
$i dev
$interface
30 echo -n > $RESOLV_CONF
31 ${domain:+echo search $domain >> $RESOLV_CONF}
34 echo nameserver
$i >> $RESOLV_CONF
This page took 0.049005 seconds and 5 git commands to generate.