Advertisement
Guest User

jlewis

a guest
Jul 18th, 2008
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. # Configuration file for /sbin/dhclient, which is included in Debian's
  2. # dhcp3-client package.
  3. #
  4. # This is a sample configuration file for dhclient. See dhclient.conf's
  5. # man page for more information about the syntax of this file
  6. # and a more comprehensive list of the parameters understood by
  7. # dhclient.
  8. #
  9. # Normally, if the DHCP server provides reasonable information and does
  10. # not leave anything out (like the domain name, for example), then
  11. # few changes must be made to this file, if any.
  12. #
  13.  
  14. send host-name "<hostname>";
  15. #send dhcp-client-identifier 1:0:a0:24:ab:fb:9c;
  16. #send dhcp-lease-time 3600;
  17. #supersede domain-name-servers 208.67.222.222,208.67.220.220;
  18. prepend domain-name-servers 208.67.222.222,208.67.220.220;
  19. request subnet-mask, broadcast-address, time-offset, routers,
  20. domain-name, host-name,
  21. netbios-name-servers, netbios-scope;
  22. #require subnet-mask, domain-name-servers;
  23. timeout 30;
  24. #retry 60;
  25. #reboot 10;
  26. #select-timeout 5;
  27. #initial-interval 2;
  28. #script "/etc/dhcp3/dhclient-script";
  29. #media "-link0 -link1 -link2", "link0 link1";
  30. #reject 192.33.137.209;
  31.  
  32. #alias {
  33. # interface "eth0";
  34. # fixed-address 192.5.5.213;
  35. # option subnet-mask 255.255.255.255;
  36. #}
  37.  
  38. #lease {
  39. # interface "eth0";
  40. # fixed-address 208.67.222.222,208.67.220.220;
  41. # medium "link0 link1";
  42. # option host-name "andare.swiftmedia.com";
  43. # option subnet-mask 255.255.255.0;
  44. # option broadcast-address 192.33.137.255;
  45. # option routers 192.33.137.250;
  46. # option domain-name-servers 127.0.0.1;
  47. # renew 2 2000/1/12 00:00:01;
  48. # rebind 2 2000/1/12 00:00:01;
  49. # expire 2 2000/1/12 00:00:01;
  50. #}
  51.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement