Advertisement
willianholtz

Config DHCPD.conf

Dec 7th, 2012
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.66 KB | None | 0 0
  1. #############################
  2.  
  3. #ddns-update-style ad-hoc;
  4. #ddns-update-style interim;
  5. authoritative;
  6. ddns-update-style none;
  7. default-lease-time 600;
  8. max-lease-time 7200;
  9.  
  10. subnet 192.168.254.0 netmask 255.255.255.0 {
  11.     range 192.168.254.50 192.168.254.99;
  12.     option routers 192.168.254.254;
  13.     option domain-name-servers 8.8.8.8,8.8.4.4;
  14.     #option domain-name "google.com" #dominio onde acessa os DNS
  15.     option broadcast-address 192.168.254.255;
  16. }
  17.  
  18. host eth0{
  19. hardware ethernet 00:c0:26:73:72:45;
  20. fixed-address 192.168.254.77;
  21. }
  22.  
  23. host eth1{
  24. hardware ethernet 00:17:31:4e:b0:d6;
  25. fixed-addres 192.168.254.78;
  26. }
  27.  
  28.  
  29. #############################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement