2002-10-15 03:11:28 +05:30
|
|
|
#!/bin/sh
|
|
|
|
# udhcpc script edited by Tim Riker <Tim@Rikers.org>
|
|
|
|
|
|
|
|
RESOLV_CONF="/etc/resolv.conf"
|
2009-04-21 05:47:00 +05:30
|
|
|
|
2009-05-11 02:57:43 +05:30
|
|
|
[ -n "$1" ] || { echo "Error: should be called from udhcpc"; exit 1; }
|
2009-04-21 05:47:00 +05:30
|
|
|
|
2009-04-17 01:34:09 +05:30
|
|
|
NETMASK=""
|
2002-10-15 03:11:28 +05:30
|
|
|
[ -n "$subnet" ] && NETMASK="netmask $subnet"
|
2009-04-17 01:34:09 +05:30
|
|
|
BROADCAST="broadcast +"
|
|
|
|
[ -n "$broadcast" ] && BROADCAST="broadcast $broadcast"
|
2002-10-15 03:11:28 +05:30
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
deconfig)
|
2009-04-17 01:34:09 +05:30
|
|
|
echo "Setting IP address 0.0.0.0 on $interface"
|
|
|
|
ifconfig $interface 0.0.0.0
|
2002-10-15 03:11:28 +05:30
|
|
|
;;
|
|
|
|
|
|
|
|
renew|bound)
|
2009-04-17 01:34:09 +05:30
|
|
|
echo "Setting IP address $ip on $interface"
|
|
|
|
ifconfig $interface $ip $NETMASK $BROADCAST
|
2002-10-15 03:11:28 +05:30
|
|
|
|
|
|
|
if [ -n "$router" ] ; then
|
2009-04-17 01:34:09 +05:30
|
|
|
echo "Deleting routers"
|
2002-10-15 03:11:28 +05:30
|
|
|
while route del default gw 0.0.0.0 dev $interface ; do
|
|
|
|
:
|
|
|
|
done
|
|
|
|
|
2004-10-13 12:48:05 +05:30
|
|
|
metric=0
|
2002-10-15 03:11:28 +05:30
|
|
|
for i in $router ; do
|
2009-04-17 01:34:09 +05:30
|
|
|
echo "Adding router $i"
|
2013-02-27 11:35:34 +05:30
|
|
|
route add default gw $i dev $interface metric $metric
|
|
|
|
: $(( metric += 1 ))
|
2002-10-15 03:11:28 +05:30
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2009-04-17 01:34:09 +05:30
|
|
|
echo "Recreating $RESOLV_CONF"
|
2013-02-27 11:31:43 +05:30
|
|
|
# If the file is a symlink somewhere (like /etc/resolv.conf
|
|
|
|
# pointing to /run/resolv.conf), make sure things work.
|
2013-03-12 20:18:09 +05:30
|
|
|
realconf=$(readlink -f "$RESOLV_CONF" 2>/dev/null || echo "$RESOLV_CONF")
|
2013-02-27 11:31:43 +05:30
|
|
|
tmpfile="$realconf-$$"
|
|
|
|
> "$tmpfile"
|
|
|
|
[ -n "$domain" ] && echo "search $domain" >> "$tmpfile"
|
2002-10-15 03:11:28 +05:30
|
|
|
for i in $dns ; do
|
2009-04-17 01:34:09 +05:30
|
|
|
echo " Adding DNS server $i"
|
2013-02-27 11:31:43 +05:30
|
|
|
echo "nameserver $i" >> "$tmpfile"
|
2002-10-15 03:11:28 +05:30
|
|
|
done
|
2013-02-27 11:31:43 +05:30
|
|
|
mv "$tmpfile" "$realconf"
|
2002-10-15 03:11:28 +05:30
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
exit 0
|