Advertisement
xxorza

/etc/config/dhcp

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