blob: 2a917eb6ce87e2b2e760f2314a3f2bcb398736b7 [file] [log] [blame]
Russ Dill61fb4892002-10-14 21:41:28 +00001#!/bin/sh
Russ Dill61fb4892002-10-14 21:41:28 +00002# udhcpc script edited by Tim Riker <Tim@Rikers.org>
3
Russ Dill61fb4892002-10-14 21:41:28 +00004RESOLV_CONF="/etc/resolv.conf"
Denis Vlasenko1b47bbd2009-04-21 00:17:00 +00005
Denys Vlasenkoc8ab67c2009-05-10 23:27:43 +02006[ -n "$1" ] || { echo "Error: should be called from udhcpc"; exit 1; }
Denis Vlasenko1b47bbd2009-04-21 00:17:00 +00007
Denis Vlasenkoea4f0842009-04-16 20:04:09 +00008NETMASK=""
Russ Dill61fb4892002-10-14 21:41:28 +00009[ -n "$subnet" ] && NETMASK="netmask $subnet"
Denis Vlasenkoea4f0842009-04-16 20:04:09 +000010BROADCAST="broadcast +"
11[ -n "$broadcast" ] && BROADCAST="broadcast $broadcast"
Russ Dill61fb4892002-10-14 21:41:28 +000012
13case "$1" in
14 deconfig)
Denis Vlasenkoea4f0842009-04-16 20:04:09 +000015 echo "Setting IP address 0.0.0.0 on $interface"
16 ifconfig $interface 0.0.0.0
Russ Dill61fb4892002-10-14 21:41:28 +000017 ;;
18
19 renew|bound)
Denis Vlasenkoea4f0842009-04-16 20:04:09 +000020 echo "Setting IP address $ip on $interface"
21 ifconfig $interface $ip $NETMASK $BROADCAST
Russ Dill61fb4892002-10-14 21:41:28 +000022
23 if [ -n "$router" ] ; then
Denis Vlasenkoea4f0842009-04-16 20:04:09 +000024 echo "Deleting routers"
Russ Dill61fb4892002-10-14 21:41:28 +000025 while route del default gw 0.0.0.0 dev $interface ; do
26 :
27 done
28
Eric Andersen1aee3ff2004-10-13 07:18:05 +000029 metric=0
Russ Dill61fb4892002-10-14 21:41:28 +000030 for i in $router ; do
Denis Vlasenkoea4f0842009-04-16 20:04:09 +000031 echo "Adding router $i"
maxwen27116ba2015-08-14 21:41:28 +020032 route add default gw $i dev $interface metric $metric
33 : $(( metric += 1 ))
Russ Dill61fb4892002-10-14 21:41:28 +000034 done
35 fi
36
Denis Vlasenkoea4f0842009-04-16 20:04:09 +000037 echo "Recreating $RESOLV_CONF"
maxwen27116ba2015-08-14 21:41:28 +020038 # If the file is a symlink somewhere (like /etc/resolv.conf
39 # pointing to /run/resolv.conf), make sure things work.
40 realconf=$(readlink -f "$RESOLV_CONF" 2>/dev/null || echo "$RESOLV_CONF")
41 tmpfile="$realconf-$$"
42 > "$tmpfile"
43 [ -n "$domain" ] && echo "search $domain" >> "$tmpfile"
Russ Dill61fb4892002-10-14 21:41:28 +000044 for i in $dns ; do
Denis Vlasenkoea4f0842009-04-16 20:04:09 +000045 echo " Adding DNS server $i"
maxwen27116ba2015-08-14 21:41:28 +020046 echo "nameserver $i" >> "$tmpfile"
Russ Dill61fb4892002-10-14 21:41:28 +000047 done
maxwen27116ba2015-08-14 21:41:28 +020048 mv "$tmpfile" "$realconf"
Russ Dill61fb4892002-10-14 21:41:28 +000049 ;;
50esac
51
52exit 0