blob: 53974e6d691773116c81d1794b6ad3c3c480b668 [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=""
Jiří Prchal47839ae2018-10-04 09:02:27 +02009if command -v ip >/dev/null; then
10 [ -n "$subnet" ] && NETMASK="/$subnet"
11else
12 [ -n "$subnet" ] && NETMASK="netmask $subnet"
13fi
Denis Vlasenkoea4f0842009-04-16 20:04:09 +000014BROADCAST="broadcast +"
15[ -n "$broadcast" ] && BROADCAST="broadcast $broadcast"
Russ Dill61fb4892002-10-14 21:41:28 +000016
17case "$1" in
18 deconfig)
Denis Vlasenkoea4f0842009-04-16 20:04:09 +000019 echo "Setting IP address 0.0.0.0 on $interface"
Jiří Prchal47839ae2018-10-04 09:02:27 +020020 if command -v ip >/dev/null; then
21 ip addr flush dev $interface
22 else
23 ifconfig $interface 0.0.0.0
24 fi
Russ Dill61fb4892002-10-14 21:41:28 +000025 ;;
26
27 renew|bound)
Denis Vlasenkoea4f0842009-04-16 20:04:09 +000028 echo "Setting IP address $ip on $interface"
Jiří Prchal47839ae2018-10-04 09:02:27 +020029 if command -v ip >/dev/null; then
30 ip addr add $ip$NETMASK $BROADCAST dev $interface
31 else
32 ifconfig $interface $ip $NETMASK $BROADCAST
33 fi
Russ Dill61fb4892002-10-14 21:41:28 +000034
35 if [ -n "$router" ] ; then
Denis Vlasenkoea4f0842009-04-16 20:04:09 +000036 echo "Deleting routers"
Russ Dill61fb4892002-10-14 21:41:28 +000037 while route del default gw 0.0.0.0 dev $interface ; do
38 :
39 done
40
Eric Andersen1aee3ff2004-10-13 07:18:05 +000041 metric=0
Russ Dill61fb4892002-10-14 21:41:28 +000042 for i in $router ; do
Denis Vlasenkoea4f0842009-04-16 20:04:09 +000043 echo "Adding router $i"
Denys Vlasenko9c192e72017-04-06 00:53:43 +020044 if [ "$subnet" = "255.255.255.255" ]; then
45 # special case for /32 subnets:
46 # /32 instructs kernel to always use routing for all outgoing packets
47 # (they can never be sent to local subnet - there is no local subnet for /32).
48 # Used in datacenters, avoids the need for private ip-addresses between two hops.
49 ip route add $i dev $interface
50 fi
51 route add default gw $i dev $interface metric $((metric++))
Russ Dill61fb4892002-10-14 21:41:28 +000052 done
53 fi
54
Denis Vlasenkoea4f0842009-04-16 20:04:09 +000055 echo "Recreating $RESOLV_CONF"
Mike Frysinger39b8fb42013-02-27 01:01:43 -050056 # If the file is a symlink somewhere (like /etc/resolv.conf
57 # pointing to /run/resolv.conf), make sure things work.
Rolf Eike Beer7180d9e2019-03-28 15:29:29 +010058 if test -L "$RESOLV_CONF"; then
59 # If it's a dangling symlink, try to create the target.
60 test -e "$RESOLV_CONF" || touch "$RESOLV_CONF"
61 fi
Mike Frysingerbca5c552013-03-12 10:48:09 -040062 realconf=$(readlink -f "$RESOLV_CONF" 2>/dev/null || echo "$RESOLV_CONF")
Mike Frysinger39b8fb42013-02-27 01:01:43 -050063 tmpfile="$realconf-$$"
64 > "$tmpfile"
65 [ -n "$domain" ] && echo "search $domain" >> "$tmpfile"
Russ Dill61fb4892002-10-14 21:41:28 +000066 for i in $dns ; do
Denis Vlasenkoea4f0842009-04-16 20:04:09 +000067 echo " Adding DNS server $i"
Mike Frysinger39b8fb42013-02-27 01:01:43 -050068 echo "nameserver $i" >> "$tmpfile"
Russ Dill61fb4892002-10-14 21:41:28 +000069 done
Mike Frysinger39b8fb42013-02-27 01:01:43 -050070 mv "$tmpfile" "$realconf"
Russ Dill61fb4892002-10-14 21:41:28 +000071 ;;
72esac
73
74exit 0