Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: dhcpcd.conf

Issue 2428004: Overhaul dhcpcd for chrome os use (Closed) Base URL: ssh://git@chromiumos-git//dhcpcd.git
Patch Set: purge hooks from configure to silence complaint Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « dhcpcd.c ('k') | dhcpcd-dbus.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # A sample configuration for dhcpcd. 1 # A sample configuration for dhcpcd.
2 # See dhcpcd.conf(5) for details. 2 # See dhcpcd.conf(5) for details.
3 3
4 # disable ARP checking
5 noarp
6
4 # Inform the DHCP server of our hostname for DDNS. 7 # Inform the DHCP server of our hostname for DDNS.
5 hostname 8 hostname
6 # To share the DHCP lease across OSX and Windows a ClientID is needed. 9 # To share the DHCP lease across OSX and Windows a ClientID is needed.
7 # Enabling this may get a different lease than the kernel DHCP client. 10 # Enabling this may get a different lease than the kernel DHCP client.
8 # Some upstream DHCP servers may also require a ClientID, such as FRITZ!Box. 11 # Some upstream DHCP servers may also require a ClientID, such as FRITZ!Box.
9 #clientid 12 clientid
10 13
11 # A list of options to request from the DHCP server. 14 # A list of options to request from the DHCP server.
12 option domain_name_servers, domain_name, domain_search, host_name 15 option domain_name_servers, domain_name, domain_search, host_name
13 option classless_static_routes 16 option classless_static_routes
14 # Most distributions have NTP support. 17 # Most distributions have NTP support.
15 option ntp_servers 18 #option ntp_servers
16 # Respect the network MTU. 19 # Respect the network MTU.
17 option interface_mtu 20 option interface_mtu
18 # A ServerID is required by RFC2131. 21 # A ServerID is required by RFC2131.
19 require dhcp_server_identifier 22 require dhcp_server_identifier
20
21 # A hook script is provided to lookup the hostname if not set by the DHCP
22 # server, but it should not be run by default.
23 nohook lookup-hostname
OLDNEW
« no previous file with comments | « dhcpcd.c ('k') | dhcpcd-dbus.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698