Advertisement
Guest User

dnsmasq config

a guest
Mar 4th, 2018
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. config dnsmasq
  2. option domainneeded '1'
  3. option boguspriv '1'
  4. option filterwin2k '0'
  5. option localise_queries '1'
  6. option rebind_protection '1'
  7. option rebind_localhost '1'
  8. option local '/lan/'
  9. option domain 'lan'
  10. option expandhosts '1'
  11. option nonegcache '0'
  12. option authoritative '1'
  13. option readethers '1'
  14. option leasefile '/tmp/dhcp.leases'
  15. option resolvfile '/tmp/resolv.conf.auto'
  16. option localservice '1'
  17.  
  18. config dhcp 'lan'
  19. option interface 'lan'
  20. option start '100'
  21. option limit '150'
  22. option leasetime '12h'
  23. option dhcpv6 'server'
  24. option ra 'server'
  25. option netmask '255.255.255.0'
  26. option ra_management '1'
  27.  
  28. config dhcp 'wan'
  29. option interface 'wan'
  30. option ignore '1'
  31.  
  32. config odhcpd 'odhcpd'
  33. option maindhcp '0'
  34. option leasefile '/tmp/hosts/odhcpd'
  35. option leasetrigger '/usr/sbin/odhcpd-update'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement