Guest User

/etc/dhcpd.conf

a guest
Jul 31st, 2015
778
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. # A sample configuration for dhcpcd.
  2. # See dhcpcd.conf(5) for details.
  3.  
  4. # Allow users of this group to interact with dhcpcd via the control socket.
  5. #controlgroup wheel
  6.  
  7. # Inform the DHCP server of our hostname for DDNS.
  8. hostname
  9.  
  10. # Use the hardware address of the interface for the Client ID.
  11. #clientid
  12. # or
  13. # Use the same DUID + IAID as set in DHCPv6 for DHCPv4 ClientID as per RFC4361.
  14. duid
  15.  
  16. # Persist interface configuration when dhcpcd exits.
  17. persistent
  18.  
  19. # Rapid commit support.
  20. # Safe to enable by default because it requires the equivalent option set
  21. # on the server to actually work.
  22. option rapid_commit
  23.  
  24. # A list of options to request from the DHCP server.
  25. option domain_name_servers, domain_name, domain_search, host_name
  26. option classless_static_routes
  27. # Most distributions have NTP support.
  28. option ntp_servers
  29. # Respect the network MTU.
  30. # Some interface drivers reset when changing the MTU so disabled by default.
  31. #option interface_mtu
  32.  
  33. # A ServerID is required by RFC2131.
  34. require dhcp_server_identifier
  35.  
  36. # Generate Stable Private IPv6 Addresses instead of hardware based ones
  37. slaac private
  38.  
  39. # A hook script is provided to lookup the hostname if not set by the DHCP
  40. # server, but it should not be run by default.
  41. nohook lookup-hostname
Add Comment
Please, Sign In to add comment