-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathudhcpc.sh
executable file
·48 lines (38 loc) · 1.1 KB
/
udhcpc.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/sh
RESOLV_CONF="/etc/resolv.conf"
[ -n "$1" ] || { echo "Error: should be called from udhcpc"; exit 1; }
[ -n "$broadcast" ] && BROADCAST="broadcast $broadcast"
[ -n "$subnet" ] && NETMASK="netmask $subnet"
case "$1" in
deconfig)
ifconfig $interface 0.0.0.0
if [ "Xwlan0" == "X$interface" ]; then
wpa_supplicant -B -i $interface -c /tmp/wpa.conf
fi
;;
renew|bound)
ifconfig $interface $ip $NETMASK $BROADCAST
if [ -n "$router" ]; then
while route del default gw 0.0.0.0 dev $interface
do
:
done
metric=0
for i in $router
do
route add default gw $i dev $interface metric $((metric++))
done
fi
if [ -n "$dns" ]
then
echo -n > $RESOLV_CONF
[ -n "$domain" ] && echo domain $domain >> $RESOLV_CONF
for i in $dns
do
echo adding dns $i
echo nameserver $i >> $RESOLV_CONF
done
fi
;;
esac
exit 0