Advertisement
Guest User

Untitled

a guest
Jul 4th, 2015
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. $ cat /etc/dhcp/dhclient.conf
  2. # Configuration file for /sbin/dhclient, which is included in Debian's
  3. # dhcp3-client package.
  4. #
  5. # This is a sample configuration file for dhclient. See dhclient.conf's
  6. # man page for more information about the syntax of this file
  7. # and a more comprehensive list of the parameters understood by
  8. # dhclient.
  9. #
  10. # Normally, if the DHCP server provides reasonable information and does
  11. # not leave anything out (like the domain name, for example), then
  12. # few changes must be made to this file, if any.
  13. #
  14.  
  15. option rfc3442-classless-static-routes code 121 = array of unsigned integer 8;
  16.  
  17. #send host-name "andare.fugue.com";
  18. send host-name = gethostname();
  19. #send dhcp-client-identifier 1:0:a0:24:ab:fb:9c;
  20. #send dhcp-lease-time 3600;
  21. #supersede domain-name "fugue.com home.vix.com";
  22. supersede domain-name-servers 208.67.220.220;
  23. #prepend domain-name-servers 127.0.0.1;
  24. request subnet-mask, broadcast-address, time-offset, routers,
  25. domain-name, domain-name-servers, domain-search, host-name,
  26. dhcp6.name-servers, dhcp6.domain-search,
  27. netbios-name-servers, netbios-scope, interface-mtu,
  28. rfc3442-classless-static-routes, ntp-servers,
  29. dhcp6.fqdn, dhcp6.sntp-servers;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement