Advertisement
Guest User

dhcpd.conf

a guest
May 5th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. ddns-update-style none;
  2. option domain-name "mydomain.com";
  3. option domain-name-servers 192.168.0.2;
  4. option subnet-mask 255.255.255.0;
  5. option routers 10.0.0.1;
  6.  
  7. subnet 10.0.0.0 netmask 255.255.255.0 {
  8. range 10.0.0.50 10.0.0.150;
  9. default-lease-time 21600;
  10. max-lease-time 43200;
  11.  
  12. host terminal2 {
  13. hardware ethernet 00:0C:76:BC:4D:4B;
  14. fixed-address 10.0.0.22;
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement