Advertisement
LocutusOfBorg

dhclient.conf

Sep 14th, 2012
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 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. option rfc3442-classless-static-routes code 121 = array of unsigned integer 8;
  15.  
  16. send host-name "<hostname>";
  17. #send dhcp-client-identifier 1:0:a0:24:ab:fb:9c;
  18. #send dhcp-lease-time 3600;
  19. #supersede domain-name "fugue.com home.vix.com";
  20. #prepend domain-name-servers 127.0.0.1;
  21. request subnet-mask, broadcast-address, time-offset, routers,
  22. domain-name, domain-name-servers, domain-search, host-name,
  23. netbios-name-servers, netbios-scope, interface-mtu,
  24. rfc3442-classless-static-routes, ntp-servers,
  25. dhcp6.domain-search, dhcp6.fqdn,
  26. dhcp6.name-servers, dhcp6.sntp-servers;
  27. #require subnet-mask, domain-name-servers;
  28. #timeout 60;
  29. #retry 60;
  30. #reboot 10;
  31. #select-timeout 5;
  32. #initial-interval 2;
  33. #script "/etc/dhcp3/dhclient-script";
  34. #media "-link0 -link1 -link2", "link0 link1";
  35. #reject 192.33.137.209;
  36.  
  37. #alias {
  38. # interface "eth0";
  39. # fixed-address 192.5.5.213;
  40. # option subnet-mask 255.255.255.255;
  41. #}
  42.  
  43. #lease {
  44. # interface "eth0";
  45. # fixed-address 192.33.137.200;
  46. # medium "link0 link1";
  47. # option host-name "andare.swiftmedia.com";
  48. # option subnet-mask 255.255.255.0;
  49. # option broadcast-address 192.33.137.255;
  50. # option routers 192.33.137.250;
  51. # option domain-name-servers 127.0.0.1;
  52. # renew 2 2000/1/12 00:00:01;
  53. # rebind 2 2000/1/12 00:00:01;
  54. # expire 2 2000/1/12 00:00:01;
  55. #}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement