X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/72936728abd1088b5d9f8e1c6c6fa013e5bb061c..28c07257241b2233fae07509986bc2761424fc63:/package/dnsmasq/files/S50dnsmasq diff --git a/package/dnsmasq/files/S50dnsmasq b/package/dnsmasq/files/S50dnsmasq index 4f3721846..c97096054 100755 --- a/package/dnsmasq/files/S50dnsmasq +++ b/package/dnsmasq/files/S50dnsmasq @@ -20,6 +20,9 @@ udhcpc -n -q -R -s /bin/true -i $ifname >&- || { end=$(nvram get dhcp_num) end=$((start+${end:-150})) - args="-l /tmp/dhcp.leases -K -F $(int2ip $start),$(int2ip $end),$(int2ip $netmask),12h" + wanproto=$(nvram get wan_proto) + [ -z "$wanproto" -o "$wanproto" = "none" ] || wanif=$(nvram get wan_ifname) + + args="-l /tmp/dhcp.leases -K -F $(int2ip $start),$(int2ip $end),$(int2ip $netmask),12h ${wanif:+-I ${wanif} }" } dnsmasq ${args}