Advertisement
Guest User

Untitled

a guest
Dec 9th, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. root@AP_6721:~# cat /etc/config/dhcp
  2.  
  3. config dnsmasq
  4. option noresolv '1'
  5. option strictorder '1'
  6. option domainneeded '1'
  7. option localise_queries '1'
  8. option rebind_protection '1'
  9. option rebind_localhost '1'
  10. option local '/lan/'
  11. option domain 'lan'
  12. option expandhosts '1'
  13. option authoritative '1'
  14. option readethers '1'
  15. option leasefile '/tmp/dhcp.leases'
  16. option resolvfile '/tmp/resolv.conf.auto'
  17. option nonwildcard '0'
  18. option localservice '1'
  19. option localuse '1'
  20. list interface 'LAN'
  21. list interface 'tun48'
  22. list interface 'tun49'
  23. list server '10.48.48.1'
  24.  
  25. config dhcp 'LAN'
  26. option start '1'
  27. option leasetime '12h'
  28. option limit '2'
  29. option interface 'LAN'
  30.  
  31. config dhcp 'WAN'
  32. option interface 'WAN'
  33. option ignore '1'
  34.  
  35. config dhcp 'GUEST_LAN'
  36. option interface 'GUEST_LAN'
  37. option ignore '1'
  38.  
  39. config dhcp 'GUEST_WAN'
  40. option interface 'GUEST_WAN'
  41. option ignore '1'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement