1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2007 OpenWrt.org
11 while [ -n "$ip" ]; do
14 res
="$(($res + $part))"
15 [ "${ip%.*}" != "$ip" ] && ip
="${ip#*.}" || ip
=
25 config_get_bool _loctmp
"$section" "$option"
26 [ "$_loctmp" -gt 0 ] && append args
"$value"
34 config_get _loctmp
"$section" "$option"
35 [ -z "$_loctmp" ] && return 0
36 append args
"$switch $_loctmp"
41 append_bool
"$cfg" authoritative
"-K"
42 append_bool
"$cfg" nodaemon
"-d"
43 append_bool
"$cfg" domainneeded
"-D"
44 append_bool
"$cfg" filterwin2k
"-f"
45 append_bool
"$cfg" nohosts
"-h"
46 append_bool
"$cfg" nonegcache
"-N"
47 append_bool
"$cfg" strictorder
"-o"
48 append_bool
"$cfg" logqueries
"-q"
49 append_bool
"$cfg" noresolv
"-R"
50 append_bool
"$cfg" localise_queries
"-y"
51 append_bool
"$cfg" readethers
"-Z"
52 append_bool
"$cfg" dbus
"-1"
53 append_bool
"$cfg" boguspriv
"-b"
54 append_bool
"$cfg" expandhosts
"-E"
56 append_parm
"$cfg" dnsforwardmax
"-0"
57 append_parm
"$cfg" port
"-p"
58 append_parm
"$cfg" ednspacket_max
"-P"
59 append_parm
"$cfg" dhcpleasemax
"-X"
60 append_parm
"$cfg" "addnhosts" "-H"
61 append_parm
"$cfg" "queryport" "-Q"
62 append_parm
"$cfg" "domain" "-s"
63 append_parm
"$cfg" "local" "-S"
64 append_parm
"$cfg" "leasefile" "-l"
65 append_parm
"$cfg" "resolvfile" "-r"
67 config_get leasefile
$cfg leasefile
68 [ -e "$leasefile" ] ||
touch "$leasefile"
69 config_get_bool cachelocal
"$cfg" cachelocal
1
75 config_get name
"$cfg" name
76 [ -n "$name" ] ||
return 0
78 config_get subscriberid
"$cfg" subscriberid
79 [ -n "$subscriberid" ] ||
return 0
81 append args
"--dhcp-subscrid=$name,$subscriberid"
83 dhcp_option_add
"$cfg" "$name"
89 config_get name
"$cfg" name
90 [ -n "$name" ] ||
return 0
92 config_get remoteid
"$cfg" remoteid
93 [ -n "$remoteid" ] ||
return 0
95 append args
"--dhcp-remoteid=$name,$remoteid"
97 dhcp_option_add
"$cfg" "$name"
100 dhcp_circuitid_add
() {
103 config_get name
"$cfg" name
104 [ -n "$name" ] ||
return 0
106 config_get circuitid
"$cfg" circuitid
107 [ -n "$circuitid" ] ||
return 0
109 append args
"--dhcp-circuitid=$name,$circuitid"
111 dhcp_option_add
"$cfg" "$name"
114 dhcp_userclass_add
() {
117 config_get name
"$cfg" name
118 [ -n "$name" ] ||
return 0
120 config_get userclass
"$cfg" userclass
121 [ -n "$userclass" ] ||
return 0
123 append args
"--dhcp-userclass=$name,$userclass"
125 dhcp_option_add
"$cfg" "$name"
128 dhcp_vendorclass_add
() {
131 config_get name
"$cfg" name
132 [ -n "$name" ] ||
return 0
134 config_get vendorclass
"$cfg" vendorclass
135 [ -n "$vendorclass" ] ||
return 0
137 append args
"--dhcp-vendorclass=$name,$vendorclass"
139 dhcp_option_add
"$cfg" "$name"
145 config_get name
"$cfg" name
146 [ -n "$name" ] ||
return 0
148 config_get mac
"$cfg" mac
149 [ -n "$mac" ] ||
return 0
151 config_get ip
"$cfg" ip
152 [ -n "$ip" ] ||
return 0
154 append args
"--dhcp-host=$mac,$ip"
156 dhcp_option_add
"$cfg" "$name"
162 config_get name
"$cfg" name
163 [ -n "$name" ] ||
return 0
165 config_get mac
"$cfg" mac
166 [ -n "$mac" ] ||
return 0
168 append args
"--dhcp-mac=$name,$mac"
170 dhcp_option_add
"$cfg" "$name"
176 config_get name
"$cfg" name
177 [ -n "$name" ] ||
return 0
179 config_get filename
"$cfg" filename
180 [ -n "$filename" ] ||
return 0
182 config_get servername
"$cfg" servername
183 [ -n "$servername" ] ||
return 0
185 config_get serveraddress
"$cfg" serveraddress
186 [ -n "$serveraddress" ] ||
return 0
188 append args
"--dhcp-boot=net:$name,$filename,$servername,$serveraddress"
190 dhcp_option_add
"$cfg" "$name"
196 config_get net
"$cfg" interface
197 [ -n "$net" ] ||
return 0
199 config_get name
"$cfg" name
200 [ -n "$name" ] || name
="$net"
202 config_get ifname
"$net" ifname
203 [ -n "$ifname" ] ||
return 0
205 config_get dnsserver
"$net" dns
206 [ "$cachelocal" = "0" -a -n "$dnsserver" ] && {
207 DNS_SERVERS
="$DNS_SERVERS $dnsserver"
210 append_bool
"$cfg" ignore
"-2 $ifname"
212 config_get proto
"$net" proto
213 [ static
= "$proto" ] ||
return 0
215 config_get ipaddr
"$net" ipaddr
216 config_get netmask
"$cfg" netmask
217 [ -n "$netmask" ] || config_get netmask
"$net" netmask
219 #check for an already active dhcp server on the interface, unless 'force' is set
220 config_get_bool force
"$cfg" force
0
221 [ "$force" -gt 0 ] ||
{
222 udhcpc
-n -q -R -s /bin
/true
-t 1 -i $ifname >&- && return 0
225 config_get start
"$cfg" start
226 config_get limit
"$cfg" limit
227 config_get leasetime
"$cfg" leasetime
228 config_get options
"$cfg" options
229 config_get_bool dynamicdhcp
"$cfg" dynamicdhcp
1
231 leasetime
="${leasetime:-12h}"
232 start
="$(dhcp_calc "${start:-100}")"
233 limit
="$((${limit:-150} + 1))"
234 eval "$(ipcalc.sh $ipaddr $netmask $start $limit)"
235 if [ "$dynamicdhcp" = "0" ]; then END
="static"; fi
236 append args
"--dhcp-range=$name,$START,$END,$NETMASK,$leasetime${options:+ $options}"
238 dhcp_option_add
"$cfg" "$name"
245 config_get dhcp_option
"$cfg" dhcp_option
246 for o
in $dhcp_option; do
247 append args
"-O $name","$o"
258 config_foreach dnsmasq dnsmasq
259 config_foreach dhcp_host_add
host
260 config_foreach dhcp_boot_add boot
261 config_foreach dhcp_mac_add mac
262 config_foreach dhcp_vendorclass_add vendorclass
263 config_foreach dhcp_userclass_add userclass
264 config_foreach dhcp_circuitid_add circuitid
265 config_foreach dhcp_remoteid_add remoteid
266 config_foreach dhcp_subscrid_add subscrid
267 config_foreach dhcp_add dhcp
269 /usr
/sbin
/dnsmasq
$args && {
270 rm -f /tmp
/resolv.conf
271 DNS_SERVERS
="$DNS_SERVERS 127.0.0.1"
272 for DNS_SERVER
in $DNS_SERVERS ; do
273 echo "nameserver $DNS_SERVER" >> /tmp
/resolv.conf
279 [ -f /tmp
/resolv.conf
] && {
280 rm -f /tmp
/resolv.conf
281 ln -s /tmp
/resolv.conf.auto
/tmp
/resolv.conf