netifd: add flow steering mode to the packet steering script
[openwrt/openwrt.git] / package / network / services / dnsmasq / files / dhcp.conf
1 config dnsmasq
2 option domainneeded 1
3 option boguspriv 1
4 option filterwin2k 0 # enable for dial on demand
5 option localise_queries 1
6 option rebind_protection 1 # disable if upstream must serve RFC1918 addresses
7 option rebind_localhost 1 # enable for RBL checking and similar services
8 #list rebind_domain example.lan # whitelist RFC1918 responses for domains
9 option local '/lan/'
10 option domain 'lan'
11 option expandhosts 1
12 option nonegcache 0
13 option cachesize 1000
14 option authoritative 1
15 option readethers 1
16 option leasefile '/tmp/dhcp.leases'
17 option resolvfile '/tmp/resolv.conf.d/resolv.conf.auto'
18 #list server '/mycompany.local/1.2.3.4'
19 option nonwildcard 1 # bind to & keep track of interfaces
20 #list interface br-lan
21 #list notinterface lo
22 #list bogusnxdomain '64.94.110.11'
23 option localservice 1 # disable to allow DNS requests from non-local subnets
24 option ednspacket_max 1232
25 option filter_aaaa 0
26 option filter_a 0
27 #list addnmount /some/path # read-only mount path to expose it to dnsmasq
28
29 config dhcp lan
30 option interface lan
31 option start 100
32 option limit 150
33 option leasetime 12h
34
35 config dhcp wan
36 option interface wan
37 option ignore 1