Advertisement
Guest User

Untitled

a guest
Jan 25th, 2015
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. root@router:~# cat /etc/config/dhcp
  2.  
  3. config dnsmasq
  4. option authoritative '1'
  5. option readethers '1'
  6. option leasefile '/tmp/dhcp.leases'
  7. option resolvfile '/tmp/resolv.conf.auto'
  8. option domain 'docmax.home'
  9. list server '/docmax.home/192.168.1.2'
  10. option domainneeded '1'
  11. option localise_queries '1'
  12. option expandhosts '1'
  13. option rebind_protection '0'
  14. option boguspriv '1'
  15.  
  16. config dhcp 'lan'
  17. option interface 'lan'
  18. option start '100'
  19. option limit '150'
  20. option leasetime '12h'
  21. option ra 'server'
  22.  
  23. config dhcp 'wan'
  24. option interface 'wan'
  25. option ignore '1'
  26.  
  27. config odhcpd 'odhcpd'
  28. option maindhcp '0'
  29. option leasefile '/tmp/hosts/odhcpd'
  30. option leasetrigger '/usr/sbin/odhcpd-update'
  31.  
  32. config host
  33. option mac 'b8:97:5a:6e:b5:9d'
  34. option ip '192.168.1.2'
  35. option name 'server'
  36.  
  37. config srvhost
  38. option srv '_ldap._tcp.dc._msdcs.docmax.home'
  39. option target '192.168.1.2'
  40. option port '389'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement