1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-06-02 02:08:43 +02:00
build/product/router/rpi3/dnsmasq.conf
David Oberhollenzer 618c79f02e Cleanup DHCP client/server configuration
Make sure dhcpcd does not interfere with resolv.conf. For the router
product we have a dnsmasq running that forwards to a local root
resolver (i.e. unbound).

For the ALIX board, we want to run a DHCP client on one port and a
DHCP server on the other two.

Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
2018-06-17 01:45:27 +02:00

19 lines
351 B
Plaintext

domain-needed
bogus-priv
no-hosts
no-resolv
dhcp-lease-max=150
dhcp-leasefile=/var/lib/dnsmasq.leases
user=dnsmasq
group=dnsmasq
except-interface=lo
dhcp-authoritative
enable-ra
# forward to unbound
server=127.0.0.1#5353
interface=eth0
dhcp-range=set:if0,192.168.0.2,192.168.0.254,255.255.255.0,12h
dhcp-option=tag:if0,option:dns-server,192.168.0.1