Guest User

Untitled

a guest
Feb 18th, 2014
38
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # A sample configuration for dhcpcd.
  2. # See dhcpcd.conf(5) for details.
  3.  
  4. # Inform the DHCP server of our hostname for DDNS.
  5. hostname
  6.  
  7. # Use the hardware address of the interface for the Client ID.
  8. #clientid
  9. # or
  10. # Use the same DUID + IAID as set in DHCPv6 for DHCPv4 ClientID as per RFC4361.
  11. duid
  12.  
  13. # Persist interface configuration when dhcpcd exits.
  14. persistent
  15.  
  16. # fix dhcpcd not running issue
  17. interface wls1
  18. iaid wls1
  19.  
  20. # Rapid commit support.
  21. # Safe to enable by default because it requires the equivalent option set
  22. # on the server to actually work.
  23. option rapid_commit
  24.  
  25. # A list of options to request from the DHCP server.
  26. option domain_name_servers, domain_name, domain_search, host_name
  27. option classless_static_routes
  28. # Most distributions have NTP support.
  29. option ntp_servers
  30. # Respect the network MTU.
  31. # Some interface drivers reset when changing the MTU so disabled by default.
  32. #option interface_mtu
  33.  
  34. # A ServerID is required by RFC2131.
  35. require dhcp_server_identifier
  36.  
  37. # A hook script is provided to lookup the hostname if not set by the DHCP
  38. # server, but it should not be run by default.
  39. nohook lookup-hostname
  40. noipv4ll
RAW Paste Data