dhclient.conf 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # Configuration file for /sbin/dhclient.
  2. #
  3. # This is a sample configuration file for dhclient. See dhclient.conf's
  4. # man page for more information about the syntax of this file
  5. # and a more comprehensive list of the parameters understood by
  6. # dhclient.
  7. #
  8. # Normally, if the DHCP server provides reasonable information and does
  9. # not leave anything out (like the domain name, for example), then
  10. # few changes must be made to this file, if any.
  11. #
  12. option rfc3442-classless-static-routes code 121 = array of unsigned integer 8;
  13. send host-name = gethostname();
  14. request subnet-mask, broadcast-address, time-offset, routers, interface-mtu;
  15. #send dhcp-client-identifier 1:0:a0:24:ab:fb:9c;
  16. #send dhcp-lease-time 3600;
  17. #supersede domain-name "fugue.com home.vix.com";
  18. #prepend domain-name-servers 127.0.0.1;
  19. #require subnet-mask, domain-name-servers;
  20. #timeout 60;
  21. #retry 60;
  22. #reboot 10;
  23. #select-timeout 5;
  24. #initial-interval 2;
  25. script "/usr/local/sbin/dhclient-script";
  26. #media "-link0 -link1 -link2", "link0 link1";
  27. #reject 192.33.137.209;
  28. #alias {
  29. # interface "eth0";
  30. # fixed-address 192.5.5.213;
  31. # option subnet-mask 255.255.255.255;
  32. #}
  33. #lease {
  34. # interface "eth0";
  35. # fixed-address 192.33.137.200;
  36. # medium "link0 link1";
  37. # option host-name "andare.swiftmedia.com";
  38. # option subnet-mask 255.255.255.0;
  39. # option broadcast-address 192.33.137.255;
  40. # option routers 192.33.137.250;
  41. # option domain-name-servers 127.0.0.1;
  42. # renew 2 2000/1/12 00:00:01;
  43. # rebind 2 2000/1/12 00:00:01;
  44. # expire 2 2000/1/12 00:00:01;
  45. #}