Advertisement
robathome

Untitled

Dec 26th, 2018
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. # Allow users of this group to interact with dhcpcd via the control socket.
  2. #controlgroup wheel
  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.  
  10. # Persist interface configuration when dhcpcd exits.
  11. persistent
  12.  
  13. # Rapid commit support.
  14. option rapid_commit
  15.  
  16. # A list of options to request from the DHCP server.
  17. option domain_name_servers, domain_name, domain_search, host_name
  18. option classless_static_routes
  19.  
  20. # Most distributions have NTP support.
  21. option ntp_servers
  22.  
  23. # Respect the network MTU. This is applied to DHCP routes.
  24. option interface_mtu
  25.  
  26. # A ServerID is required by RFC2131.
  27. require dhcp_server_identifier
  28.  
  29. # Generate Stable Private IPv6 Addresses instead of hardware based ones
  30. slaac private
  31.  
  32. # Static IP configuration
  33. interface wlan0
  34. static ip_address = 192.168.1.100 / 24
  35. static routers = 192.168.1.1
  36. static domain_name_servers = 192.168.1.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement