set dnsmasq except-interface in init script to wan_ifname instead of vlan1
SVN-Revision: 1866
This commit is contained in:
parent
a097b012fb
commit
9740c2942b
2 changed files with 4 additions and 4 deletions
|
@ -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}
|
||||
|
|
|
@ -8,9 +8,6 @@ localise-queries
|
|||
local=/lan/
|
||||
domain=lan
|
||||
|
||||
# no dhcp / dns queries from the wan
|
||||
except-interface=vlan1
|
||||
|
||||
# enable dhcp (start,end,netmask,leasetime)
|
||||
dhcp-authoritative
|
||||
#dhcp-range=192.168.1.100,192.168.1.250,255.255.255.0,12h
|
||||
|
|
Loading…
Reference in a new issue