summaryrefslogtreecommitdiffstats
path: root/openwrt/package/dnsmasq/files/S50dnsmasq
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-09-07 11:34:05 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-09-07 11:34:05 +0000
commit08e080d8163c34953035d39e7e81ff1138f9ebff (patch)
treefba813a87c953cef66828a11fcf38762b8d2f6bd /openwrt/package/dnsmasq/files/S50dnsmasq
parentd2f02c7a214e4ede79bfecf295d1f51289ee48d4 (diff)
set dnsmasq except-interface in init script to wan_ifname instead of vlan1
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1866 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/dnsmasq/files/S50dnsmasq')
-rwxr-xr-xopenwrt/package/dnsmasq/files/S50dnsmasq5
1 files changed, 4 insertions, 1 deletions
diff --git a/openwrt/package/dnsmasq/files/S50dnsmasq b/openwrt/package/dnsmasq/files/S50dnsmasq
index 4f3721846..c97096054 100755
--- a/openwrt/package/dnsmasq/files/S50dnsmasq
+++ b/openwrt/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}