Advertisement
kevinh

dhcp

Jan 20th, 2018
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 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 leasetime '12h'
  20. option dhcpv6 'server'
  21. option ra 'server'
  22. option start '10'
  23. option limit '40'
  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'
  34.  
  35. config host
  36. option name 'AmazonFireTV'
  37. option dns '1'
  38. option mac 'mac address'
  39. option ip '7.22.4.7'
  40.  
  41. config host
  42. option name 'Xubuntu15'
  43. option dns '1'
  44. option mac 'mac address'
  45. option ip '7.22.4.8'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement