Advertisement
Vita94

sample isc dhcp config

Mar 10th, 2017
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. default-lease-time 600;
  2. max-lease-time 7200;
  3. option subnet-mask 255.255.255.0;
  4. option broadcast-address 192.168.4.255;
  5. option routers 192.168.4.1;
  6. option domain-name-servers 192.168.4.1;
  7. option domain-name "localhost.localdomain";
  8.  
  9. subnet 192.168.4.0 netmask 255.255.255.0 {
  10. range 192.168.4.10 192.168.4.254;
  11. }
  12.  
  13. host somehost1 {
  14. hardware ethernet aa:aa:aa:aa:aa:99;
  15. fixed-address 192.168.4.99;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement