Advertisement
Guest User

DHCP

a guest
Oct 22nd, 2011
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. # Arquivo de Configuração de DHCP
  2. # Powered By Manu
  3. # Versão 1.2
  4. # /etc/dhcp3/dhcpd.conf
  5. ddns-update-style none;
  6. default-lease-time 600;
  7. max-lease-time 7200;
  8. authoritative;
  9. log-facility local7;
  10. #option wpad-url code 252 = text;
  11. subnet 10.0.0.0 netmask 255.255.255.0 {
  12. range 10.0.0.100 10.0.0.110;
  13. option routers 10.0.0.1;
  14. option domain-name "hw.local";
  15. option domain-name-servers 201.76.128.133;
  16. option netbios-name-servers 10.0.0.1;
  17. option broadcast-address 10.0.0.255;
  18. #option wpad-url "http://10.0.0.1/wpad.dat\n";
  19. }
  20. ## IP FIXO
  21. #host iPad do Henry Wall {
  22. #hardware ethernet 00:0F:B0:55:EA:13;
  23. #fixed-address 192.168.1.211;
  24. #}
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement