hnetd: Now disable in dnsmasq both rebind_protection and boguspriv by default, so that IPv4 naming works 'as expected' with multiple routers without user configuration.

This commit is contained in:
Markus Stenberg 2015-09-02 12:35:37 +03:00
parent a845bb4b95
commit 444888b4bd
1 changed files with 7 additions and 0 deletions

View File

@ -1,7 +1,14 @@
#!/bin/sh
# Why we tune dnsmasq?
# localservice=0 => other hnetd instances can query for local names
# rebind_protection=0 => accept RFC1918 names from the other hnetd instances
# boguspriv=0 => allow reverse resolution of RFC1918 w/o local hosts entries
uci batch <<EOF
set dhcp.odhcpd.maindhcp=1
set dhcp.@dnsmasq[0].localservice=0
set dhcp.@dnsmasq[0].rebind_protection=0
set dhcp.@dnsmasq[0].boguspriv=0
commit dhcp
EOF