]> git.ipfire.org Git - thirdparty/dhcpcd.git/blame - dhcpcd.conf.5.in
Release dhcpcd-6.11.0
[thirdparty/dhcpcd.git] / dhcpcd.conf.5.in
CommitLineData
67f84564 1.\" Copyright (c) 2006-2016 Roy Marples
ba9dfb7a
RM
2.\" All rights reserved
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\" notice, this list of conditions and the following disclaimer in the
11.\" documentation and/or other materials provided with the distribution.
12.\"
13.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23.\" SUCH DAMAGE.
24.\"
663d44bf 25.Dd April 21, 2016
0b4a1931 26.Dt DHCPCD.CONF 5
918338f2 27.Os
ba9dfb7a
RM
28.Sh NAME
29.Nm dhcpcd.conf
443c8695 30.Nd dhcpcd configuration file
ba9dfb7a
RM
31.Sh DESCRIPTION
32Although
33.Nm dhcpcd
34can do everything from the command line, there are cases where it's just easier
cf42802e
RM
35to do it once in a configuration file.
36Most of the options found in
ba9dfb7a 37.Xr dhcpcd 8
cf42802e
RM
38can be used here.
39The first word on the line is the option and the rest of the line is the value.
40Leading and trailing whitespace for the option and value are trimmed.
41You can escape characters in the value using the \\ character.
67f84564
RM
42Comments can be prefixed with the # character.
43String values should be quoted with the " character.
ba9dfb7a
RM
44.Pp
45Here's a list of available options:
46.Bl -tag -width indent
ba97e494
RM
47.It Ic allowinterfaces Ar pattern
48When discovering interfaces, the interface name must match
49.Ar pattern
50which is a space or comma separated list of patterns passed to
51.Xr fnmatch 3 .
52If the same interface is matched in
53.Ic denyinterfaces
54then it is still denied.
55.It Ic denyinterfaces Ar pattern
56When discovering interfaces, the interface name must not match
57.Ar pattern
58which is a space or comma separated list of patterns passed to
59.Xr fnmatch 3 .
6f767217
RM
60.It Ic arping Ar address Op address
61.Nm dhcpcd
ff021b0b 62will arping each address in order before attempting DHCP.
6f767217
RM
63If an address is found, we will select the replying hardware address as the
64profile, otherwise the ip address.
65Example:
66.Pp
67.D1 interface bge0
68.D1 arping 192.168.0.1
69.Pp
a6162a75
RM
70.D1 # My specific 192.168.0.1 network
71.D1 profile dd:ee:aa:dd:bb:ee
6f767217 72.D1 static ip_address=192.168.0.10/24
a6162a75
RM
73.Pp
74.D1 # A generic 192.168.0.1 network
75.D1 profile 192.168.0.1
76.D1 static ip_address=192.168.0.98/24
c73ed171
RM
77.It Ic authprotocol Ar protocol Ar algorithm Ar rdm
78Authenticate DHCP messages.
0dc49454 79See the Supported Authentication Protocols section.
c73ed171
RM
80.It Ic authtoken Ar secretid Ar realm Ar expire Ar key
81Define a shared key for use in authentication.
82.Ar realm can be "" to for use with the
83.Ar delayed
84prptocol.
85.Ar expire
86is the date the token expires and should be formatted "yyy-mm-dd HH:MM".
87You can use the keyword
88.Ar forever
89or
90.Ar 0
91which means the token never expires.
0dc49454
RM
92For the token protocol,
93.Ar secretid
94needs to be 0 and
95.Ar realm
96needs to be "".
97If
98.Nm dhcpcd
99has the error
100.D1 dhcp_auth_encode: Invalid argument
101then it means that
102.Nm dhcpcd
103could not find the correct authentication token in your configuration.
bac03ede
RM
104.It Ic background
105Background immediately.
106This is useful for startup scripts which don't disable link messages for
107carrier status.
6f767217 108.It Ic blacklist Ar address Ns Op /cidr
ce6b39df 109Ignores all packets from
6f767217 110.Ar address Ns Op /cidr .
bf80d526
RM
111.It Ic whitelist Ar address Ns Op /cidr
112Only accept packets from
113.Ar address Ns Op /cidr .
114.Ic blacklist
115is ignored if
116.Ic whitelist
117is set.
8f924434
RM
118.It Ic bootp
119Be a BOOTP client.
120Basically, this just doesn't send a DHCP Message Type option and will only
121interact with a BOOTP server.
122All other DHCP options still work.
900b3da4
RM
123.It Ic broadcast
124Instructs the DHCP server to broadcast replies back to the client.
125Normally this is only set for non Ethernet interfaces,
126such as FireWire and InfiniBand.
127In most cases,
128.Nm dhcpcd
129will set this automatically.
a93e79c6
RM
130.It Ic controlgroup Ar group
131Sets the group ownership of
132.Pa @RUNDIR@/dhcpcd.sock
133so that users other than root can connect to
134.Nm dhcpcd .
a3099289
RM
135.It Ic debug
136Echo debug messages to the stderr and syslog.
413652c1
RM
137.It Ic dev Ar value
138Load the
139.Ar value
140.Pa /dev
141management module.
142.Nm dhcpcd
143will load the first one found to work, if any.
6bfd88f1
RM
144.It Ic env Ar value
145Push
146.Ar value
147to the environment for use in
148.Xr dhcpcd-run-hooks 8 .
149For example, you can force the hostname hook to always set the hostname with
150.Ic env
151.Va force_hostname=YES .
bbd250b4
RM
152Or set which driver
153.Xr wpa_supplicant 8
154should use with
155.Ic env
156.Va wpa_supplicant_driver=nl80211
77961e7b
RM
157.Pp
158If the hostname is set, will be will set to the FQDN if possible as per
159RFC 4702 section 3.1.
160If the FQDN option is missing,
161.Nm dhcpcd
162will still try and set a FQDN from the hostname and domain options for
163consistency.
164To override this, set
165.Ic env
166.Va hostname_fqdn=[YES|NO|SERVER] .
167A value of server means just what the server says, don't manipulate it.
168This could lead to an inconsistent hostname on a DHCPv4 and DHCPv6 network
169where the DHCPv4 hostname is short and the DHCPv6 has an FQDN.
170DHCPv6 has no hostname option.
d2616b08 171.It Ic clientid Ar string
c989b023
RM
172Send the
173.Ar clientid .
d2616b08 174If the string is of the format 01:02:03 then it is encoded as hex.
3faba9e6
RM
175For interfaces whose hardware address is longer than 8 bytes, or if the
176.Ar clientid
177is an empty string then
178.Nm dhcpcd
179sends a default
180.Ar clientid
181of the hardware family and the hardware address.
d2616b08
RM
182.It Ic duid
183Generate an
184.Rs
185.%T "RFC 4361"
186.Re
ebc9d360 187compliant DHCP Unique Identifier.
7e068c85
RM
188If persistent storage is available then a DUID-LLT (link local address + time)
189is generated, otherwise DUID-LL is generated (link local address).
ebc9d360
RM
190This, plus the IAID will be used as the
191.Ic clientid .
7e068c85 192The DUID-LLT generated will be held in
d2616b08
RM
193.Pa @SYSCONFDIR@/dhcpcd.duid
194and should not be copied to other hosts.
ebc9d360
RM
195.It Ic iaid Ar iaid
196Set the Interface Association Identifier to
197.Ar iaid .
9ff636a5
RM
198This option must be used in an
199.Ic interface
200block.
6f66c6c9
RM
201This defaults to the last 4 bytes of the hardware address assigned to the
202interface.
203Each instance of this should be unique within the scope of the client and
204.Nm dhcpcd
205warns if a conflict is detected.
206If there is a conflict, it is only a problem if the conflicted IAIDs are
207used on the same network.
94bec972
RM
208.It Ic dhcp
209Enable DHCP on the interface, on by default.
210.It Ic dhcp6
211Enable DHCPv6 on the interface, on by default.
212.It Ic ipv4
213Enable IPv4 on the interface, on by default.
214.It Ic ipv6
215Enable IPv6 on the interface, on by default.
438cfdcd
RM
216.It Ic request Op Ar address
217Request the
218.Ar address
219in the DHCP DISCOVER message.
220There is no guarantee this is the address the DHCP server will actually give.
221If no
222.Ar address
223is given then the first address currently assigned to the
224.Ar interface
225is used.
226.It Ic inform Op Ar address Ns Op Ar /cidr
227Behaves like
228.Ic request
229as above, but sends a DHCP INFORM instead of DISCOVER/REQUEST.
230This does not get a lease as such, just notifies the DHCP server of the
231.Ar address
232in use.
233You should also include the optional
234.Ar cidr
235network number in case the address is not already configured on the interface.
236.Nm dhcpcd
237remains running and pretends it has an infinite lease.
238.Nm dhcpcd
239will not de-configure the interface when it exits.
240If
241.Nm dhcpcd
242fails to contact a DHCP server then it returns a failure instead of falling
243back on IPv4LL.
244.It Ic inform6
245Performs a DHCPv6 Information Request.
246No address is requested or specified, but all other DHCPv6 options are allowed.
247This is normally performed automatically when the IPv6 Router Advertises
248that the client should perform this operation.
249This option is only needed when
250.Nm dhcpcd
251is not processing IPv6RA messages and the need for DHCPv6 Information Request
252exists.
15fc1181
RM
253.It Ic persistent
254.Nm dhcpcd
255normally de-configures the interface and configuration when it exits.
256Sometimes, this isn't desirable if, for example, you have root mounted over
a544b76a
RM
257NFS or SSH clients connect to this host and they need to be notified of
258the host shutting down.
15fc1181 259You can use this option to stop this from happening.
ff021b0b
RM
260.It Ic fallback Ar profile
261Fallback to using this profile if DHCP fails.
262This allows you to configure a static profile instead of using ZeroConf.
ba9dfb7a 263.It Ic hostname Ar name
35d02ae6 264Sends
ff021b0b 265.Ar hostname
35d02ae6
RM
266to the DHCP server so it can be registered in DNS.
267If
35ff0dbb 268.Ar hostname
35d02ae6
RM
269is an empty string then the current system hostname is sent.
270If
271.Ar hostname
272is a FQDN (ie, contains a .) then it will be encoded as such.
d6a18654
RM
273.It Ic hostname_short
274Sends the short hostname to the DHCP server instead of the FQDN.
275This is useful because DHCP servers will not register the FQDN in their
276DNS if the domain part does not match theirs.
77961e7b
RM
277.Pp
278Also, see the
279.Ic env
280option above to control how the hostname is set on the host.
8fe4bf14 281.It Ic ia_na Op Ar iaid Op / address
00ababe4
RM
282Request a DHCPv6 Normal Address for
283.Ar iaid .
00ababe4 284.Ar iaid
ebc9d360
RM
285defaults to the
286.Ic iaid
287option as described above.
288You can request more than one ia_na by specifying a unique
289.Ar iaid
290for each one.
22ea2b0d 291.It Ic ia_ta Op Ar iaid
00ababe4
RM
292Request a DHCPv6 Temporary Address for
293.Ar iaid .
ebc9d360
RM
294You can request more than one ia_ta by specifying a unique
295.Ar iaid
296for each one.
fda2c663 297.It Ic ia_pd Op Ar iaid Oo / Ar prefix / Ar prefix_len Oc Op Ar interface Op / Ar sla_id Op / Ar prefix_len Op / Ar suffix
00ababe4
RM
298Request a DHCPv6 Delegated Prefix for
299.Ar iaid .
9ff636a5
RM
300This option must be used in an
301.Ic interface
302block.
94a79cea
RM
303Unless a
304.Ar sla_id
e3883bfc
RM
305of 0 is assigned with the same resultant prefix length as the delegation,
306a reject route is installed for the Delegated Prefix to
94a79cea 307stop unallocated addresses being resolved upstream.
22ea2b0d
RM
308If no
309.Ar interface
94a79cea 310is given then we will assign a prefix to every other interface with a
22ea2b0d 311.Ar sla_id
94a79cea 312equivalent to the interface index assigned by the OS.
22ea2b0d 313Otherwise addresses are only assigned for each
00ababe4
RM
314.Ar interface
315and
9ff636a5 316.Ar sla_id .
fda2c663
RM
317Each assigned address will have a
318.Ar suffix ,
319defaulting to 1.
f9f15d95
RM
320If the
321.Ar suffix
322is 0 then a slaac address is assigned.
12c77e75
RM
323You cannot assign a prefix to the requesting interface unless the
324DHCPv6 server supports
325.Li RFC6603
326Prefix Exclude Option.
2fae05d0
RM
327.Nm dhcpcd
328has to be running for all the interfaces it is delegating to.
00ababe4 329A default
367f7b11 330.Ar prefix_len
94a79cea
RM
331of 64 is assumed, unless the maximum
332.Ar sla_id
333does not fit.
334In this case
335.Ar prefix_len
b2feeb9e 336is increased to the highest multiple of 8 that can accommodate the
94a79cea 337.Ar sla_id .
367f7b11 338.Ar sla_id
663d44bf
RM
339is an integer which must be unique inside the
340.Ar iaid
341and is added to the prefix which must fit inside
367f7b11
RM
342.Ar prefix_len
343less the length of the delegated prefix.
22ea2b0d
RM
344You can specify multiple
345.Ar interface /
346.Ar sla_id /
347.Ar prefix_len
348per
349.Ic ia_pd ,
350space separated.
9be26bc3 351IPv6RS should be disabled globally when requesting a Prefix Delegation.
00ababe4 352.Pp
9be26bc3
RM
353In the following example eth0 is the externally facing interface to be
354configured for both IPv4 and IPv6.
355The DHCPv4 server will provide us with an IPv4 address and a default route.
356The DHCPv6 server is going to provide us with an IPv6 address, a default
357route and a /64 subnet to be delegated to the internal interface.
358The eth1 interface will be automatically configured
359for IPv6 using the first address (::1) from the delegated prefix.
b9beb41b 360A second prefix is requested and assigned to two other interfaces.
9be26bc3 361.Xr rtadvd 8
b9beb41b
RM
362can be used with an empty configuration file on eth1, eth2 and eth3,
363to provide automatic
9be26bc3 364IPv6 address configuration for the internal network.
7e609902 365.Bd -literal
b9beb41b
RM
366noipv6rs # disable routing solicitation
367denyinterfaces eth2 # Don't touch eth2 at all
9be26bc3 368interface eth0
b9beb41b
RM
369 ipv6rs # enable routing solicitation get the
370 # default IPv6 route
371 ia_na 1 # request an IPv6 address
372 ia_pd 2 eth1/0 # request a PD and assign it to eth1
373 ia_pd 3 eth2/1 eth3/2 # req a PD and assign it to eth2 and eth3
9be26bc3 374.Ed
d7555c12
RM
375.It Ic ipv4only
376Only configure IPv4.
377.It Ic ipv6only
378Only confgiure IPv6.
cc3c3560
RM
379.It Ic fqdn Op disable | ptr | both
380ptr just asks the DHCP server to update the PTR
35ff0dbb 381record of the host in DNS whereas both also updates the A record.
cc3c3560
RM
382disable will disable the FQDN option.
383The default is both.
1b3bc477
RM
384.Nm dhcpcd
385itself never does any DNS updates.
e837a670
RM
386.Nm dhcpcd
387encodes the FQDN hostname as specified in
388.Li RFC1035 .
3adc5520 389.It Ic interface Ar interface
012fd5d3
RM
390Subsequent options are only parsed for this
391.Ar interface .
62f12387
RM
392.It Ic ipv6ra_autoconf
393Generate SLAAC addresses for each Prefix advertised by a
394Router Advertisement message with the Auto flag set.
395On by default.
396.It Ic ipv6ra_noautoconf
397Disables the above option.
61dd6cf9
RM
398.It Ic ipv6ra_fork
399By default, when
400.Nm dhcpcd
401receives an IPv6 RA,
402.Nm dhcpcd
403will only fork to the background if the RA contains at least one unexpired
e2c4a256 404RDNSS option and a valid prefix or no DHCPv6 instruction.
61dd6cf9
RM
405Set this option so to make
406.Nm dhcpcd
407always fork on an RA.
d7555c12 408.It Ic ipv6ra_own
eebe9a18
RM
409Disables kernel IPv6 Router Advertisment processing so dhcpcd can manage
410addresses and routes.
d7555c12 411.It Ic ipv6ra_own_default
eebe9a18
RM
412Each time dhcpcd receives an IPv6 Router Adveristment, dhcpcd will manage
413the default route only.
414This allows dhcpcd to prefer an interface for outbound traffic based on metric
415and/or user selection rather than the kernel.
d7555c12 416.It Ic ipv6rs
eebe9a18
RM
417Enables IPv6 Router Advertisment solicitation.
418This is on by default, but is documented here in the case where it is disabled
419globally but needs to be enabled for one interface.
ba9dfb7a
RM
420.It Ic leasetime Ar seconds
421Request a leasetime of
422.Ar seconds .
069e2f28
RM
423.It Ic logfile Ar logfile
424Writes to the specified
425.Ar logfile
426rather than
427.Xr syslog 3 .
428The
429.Ar logfile
cf2dcc16 430is truncated when opened and is reopened when
069e2f28
RM
431.Nm dhcpcd
432receives the
433.Dv SIGUSR2
434signal.
065125d4
RM
435.It Ic metric Ar metric
436Metrics are used to prefer an interface over another one, lowest wins.
437.Nm dhcpcd
87b266d2 438will supply a default metric of 200 +
065125d4
RM
439.Xr if_nametoindex 3 .
440An extra 100 will be added for wireless interfaces.
7dab081f 441.It Ic noalias
dffe72f6
RM
442Any pre-existing IPv4 addresses existing address will be removed from the
443interface when adding a new IPv4 address.
ba9dfb7a 444.It Ic noarp
cf42802e
RM
445Don't send any ARP requests.
446This also disables IPv4LL.
c73ed171
RM
447.It Ic noauthrequired
448Don't require authentication even though we requested it.
d672ebda 449Also allows FORCERENEW and RECONFIGURE messages without authentication.
f572315d
RM
450.It Ic nodelay
451Don't delay for an initial randomised time when starting protocols.
413652c1
RM
452.It Ic nodev
453Don't load
454.Pa /dev
455management modules.
d4154ba7
RM
456.It Ic nodhcp
457Don't start DHCP or listen to DHCP messages.
458This is only useful when allowing IPv4LL.
459.It Ic nodhcp6
460Don't start DHCPv6 or listen to DHCPv6 messages.
461Normally DHCPv6 is started by a RA instruction or configuration.
ba9dfb7a
RM
462.It Ic nogateway
463Don't install any default routes.
ee56a47d
RM
464.It Ic gateway
465Install a default route if available (default).
37156a6b
RM
466.It Ic nohook Ar script
467Don't run this hook script.
8276da82
RM
468Matches full name, or prefixed with 2 numbers optionally ending with
469.Pa .sh .
fc7ee231
RM
470.Pp
471So to stop
472.Nm dhcpcd
ca6cdf58
RM
473from touching your DNS settings or starting wpa_supplicant you would do:-
474.D1 nohook resolv.conf, wpa_supplicant
bb8051bf
RM
475.It Ic noipv4
476Don't attempt to configure an IPv4 address.
ba9dfb7a
RM
477.It Ic noipv4ll
478Don't attempt to obtain an IPv4LL address if we failed to get one via DHCP.
479See
480.Rs
481.%T "RFC 3927"
482.Re
bb8051bf
RM
483.It Ic noipv6
484Don't attmept to configure an IPv6 address.
91cd7324 485.It Ic noipv6rs
4c6a8bec 486Disable solicitation and receipt of IPv6 Router Advertisements.
a26af491
RM
487.It Ic nolink
488Don't receive link messages about carrier status.
489You should only set this for buggy interface drivers.
2862d340
RM
490.It Ic noup
491Don't bring the interface up when in master mode.
492If
493.Nm
494cannot determine the carrier state,
495.Nm
496will enter a tight polling loop until the interface is marked up and running
497or a valid carrier state is reported.
cc45fbd7 498.It Ic option Ar option
d2616b08 499Requests the
cc45fbd7 500.Ar option
cf42802e
RM
501from the server.
502It can be a variable to be used in
ee4e620a 503.Xr dhcpcd-run-hooks 8
cf42802e 504or the numerical value.
b8ffa3cd
RM
505You can specify more
506.Ar option Ns s
507separated by commas, spaces or more
508.Ic option
509lines.
2be15e88 510.Ar option
b8ffa3cd
RM
511Prepend dhcp6_ to
512.Ar option
513to request a DHCPv6 option.
daa70372
RM
514If no DHCPv6 options are configured,
515then DHCPv4 options are mapped to equivalent DHCPv6 options.
2be15e88
RM
516.Pp
517Prepend nd_ to
518.Ar option
519to handle ND options, but this only works for the
520.Ic nooption ,
521.Ic reject
522and
523.Ic require
524options.
2063c6f9 525.It Ic nooption Ar option
2be15e88
RM
526Remove the option from the message before it's processed.
527.It Ic require Ar option
528Requires the
529.Ar option
530to be present in all messages, otherwise the message is ignored.
531To enforce that
532.Nm dhcpcd
533only responds to DHCP servers and not BOOTP servers, you can
534.Ic require
535.Ar dhcp_message_type .
536This isn't an exact science though because a BOOTP server can send DHCP like
537options.
538.It Ic reject Ar option
539Reject a message that contains the
540.Ar option .
541This is useful when you cannot use
542.Ic require
543to select / de-select BOOTP messages.
1abffd5b
RM
544.It Ic destination Ar option
545If
546.Nm
547detects an address added to a point to point interface (PPP, TUN, etc) then
548it will set the listed DHCP options to the destination address of the
549interface.
6f767217
RM
550.It Ic profile Ar name
551Subsequent options are only parsed for this profile
552.Ar name .
1abffd5b 553.It Ic quiet
87b266d2 554Suppress any dhcpcd output to the console, except for errors.
1abffd5b 555.It Ic reboot Ar seconds
a2a9a498
RM
556Allow
557.Ar reboot
1d5d236a
RM
558seconds before moving to the DISCOVER phase if we have an old lease to use
559and moving from DISCOVER to IPv4LL if no reply.
a628f34d 560The default is 5 seconds.
901b42de 561A setting of 0 seconds causes
a2a9a498 562.Nm dhcpcd
901b42de
RM
563to skip the REBOOT phase and go straight into DISCOVER.
564This is desirable for mobile users because if you change from network A to
565network B and they use the same subnet and the address from network A isn't
566in use on network B, then the DHCP server will remain silent even if authorative
567which means
568.Nm dhcpcd
569will timeout before moving back to the DISCOVER phase.
2662d519
RM
570.It Ic release
571.Nm dhcpcd
572will release the lease prior to stopping the interface.
0aeb350c
RM
573.It Ic script Ar script
574Use
575.Ar script
576instead of the default
577.Pa @SCRIPT@ .
c53cf4ef
RM
578.It Ic ssid Ar ssid
579Subsequent options are only parsed for this wireless
580.Ar ssid .
1aeaf0e7
RM
581.It Ic slaac Op Ar hwaddr | Ar private
582Selects the interface identifier used for SLAAC generated IPv6 addresses.
eec0cf35
RM
583If
584.Ar private
585is used, a RFC7217 address is generated.
91a44b91
RM
586.It Ic static Ar value
587Configures a static
588.Ar value .
589If you set
590.Ic ip_address
591then
592.Nm dhcpcd
593will not attempt to obtain a lease and just use the value for the address with
594an infinite lease time.
408fe755
RM
595If you set
596.Ic ip6_address ,
597.Nm dhcpcd
598will continue auto-configuation as normal.
91a44b91 599.Pp
408fe755
RM
600Here is an example which configures two static addresss, an IPv4 router, DNS
601and disables IPv6 auto-configuration.
602You could also use the
603.Ic inform6
604command here if you wished to obtain more information via DHCPv6.
605For IPv4, you should use the
606.Ic inform Ar ipaddress
607option instead of setting a static address.
91a44b91 608.D1 interface eth0
408fe755 609.D1 noipv6rs
91a44b91 610.D1 static ip_address=192.168.0.10/24
408fe755 611.D1 static ip6_address=fd51:42f8:caae:d92e::ff/64
91a44b91 612.D1 static routers=192.168.0.1
408fe755 613.D1 static domain_name_servers=192.168.0.1 fd51:42f8:caae:d92e::1
1abffd5b
RM
614.Pp
615Here is an example for PPP which gives the destination a default route.
616It uses the special destination keyword to insert the destination address
617into the value.
618.D1 interface ppp0
619.D1 static ip_address=
620.D1 destination routers
d2616b08 621.It Ic timeout Ar seconds
b58bf81f
RM
622Timeout after
623.Ar seconds ,
624instead of the default 30.
d93d7adc
RM
625A setting of 0
626.Ar seconds
627causes
628.Nm dhcpcd
629to wait forever to get a lease.
b58bf81f
RM
630If
631.Nm dhcpcd
632is working on a single interface then
633.Nm dhcpcd
634will exit when a timeout occurs, otherwise
635.Nm dhcpcd
636will fork into the background.
637If using IPv4LL then
638.Nm dhcpcd
639start the IPv4LL process after the timeout and then wait a little longer
640before really timing out.
d2616b08 641.It Ic userclass Ar string
1300150e 642Tag the DHCPv4 messages with the userclass.
cf42802e 643You can specify more than one.
bac03ede 644.It Ic vendor Ar code , Ns Ar value
87b266d2 645Add an encapsulated vendor option.
757520c5
RM
646.Ar code
647should be between 1 and 254 inclusive.
95d6dcfa
RM
648To add a raw vendor string, omit
649.Ar code
650but keep the comma.
757520c5
RM
651Examples.
652.Pp
653Set the vendor option 01 with an IP address.
654.D1 vendor 01,192.168.0.2
655Set the vendor option 02 with a hex code.
656.D1 vendor 02,01:02:03:04:05
657Set the vendor option 03 with an IP address as a string.
658.D1 vendor 03,\e"192.168.0.2\e"
87b266d2 659Set un-encapsulated vendor option to hello world.
9cb58952 660.D1 vendor ,"hello world"
bac03ede 661.It Ic vendorclassid Ar string
1300150e
RM
662Set the DHCP Vendor Class.
663DHCPv6 has it's own option as shown below.
eebe9a18
RM
664The default is
665dhcpcd-<version>:<os>:<machine>:<platform>.
666For example
667.D1 dhcpcd-5.5.6:NetBSD-6.99.5:i386:i386
bac03ede 668If not set then none is sent.
eebe9a18
RM
669Some badly configured DHCP servers reject unknown vendorclassids.
670To work around it, try and impersonate Windows by using the MSFT vendorclassid.
7a911e57 671.It Ic vendclass Ar en Ar data
1300150e 672Add the DHCPv6 Vendor Indetifying Vendor Class with the IANA assigned Enterprise
7a911e57
RM
673Number
674.Ar en
675with the
676.Ar data .
677This option can be set more than once to add more data, but the behaviour,
678as per
679.Xr RFC 3925
680is undefined if the Enterprise Number differs.
7013b073 681.It Ic waitip Op 4 | 6
2a07a2af 682Wait for an address to be assigned before forking to the background.
7013b073
RM
6834 means wait for an IPv4 address to be assigned.
6846 means wait for an IPv6 address to be assigned.
8b7499fd
RM
685If no argument is given,
686.Nm
687will wait for any address protocol to be assigned.
688It is possible to wait for more than one address protocol and
689.Nm
690will only fork to the background when all waiting conditions are satisfied.
4242c9b3
RM
691.It Ic xidhwaddr
692Use the last four bytes of the hardware address as the DHCP xid instead
693of a randomly generated number.
eaa90296 694.El
8e7d8c37 695.Ss Defining new options
2be15e88 696DHCP, ND and DHCPv6 allow for the use of custom options.
8e7d8c37 697Each option needs to be started with the
2be15e88
RM
698.Ic define ,
699.If definend
8e7d8c37
RM
700or
701.Ic define6
702directive.
703This can optionally be followed by both
704.Ic embed
705or
706.Ic encap
707options.
708Both can be specified more than once and
709.Ic embed
710must come before
711.Ic encap .
712.Bl -tag -width indent
713.It Ic define Ar code Ar type Ar variable
714Defines the DHCP option
715.Ar code
716of
717.Ar type
718with a name of
719.Ar variable
720exported to
721.Xr dhcpcd-run-hooks 8 .
2be15e88
RM
722.It Ic definend Ar code Ar type Ar variable
723Defines the ND option
724.Ar code
725of
726.Ar type
727with a name of
728.Ar variable
729exported to
730.Xr dhcpcd-run-hooks 8 ,
731with a prefix of
732.Va _nd .
8e7d8c37
RM
733.It Ic define6 Ar code Ar type Ar variable
734Defines the DHCPv6 option
735.Ar code
736of
737.Ar type
738with a name of
739.Ar variable
740exported to
741.Xr dhcpcd-run-hooks 8 ,
742with a prefix of
743.Va _dhcp6 .
7a911e57
RM
744.It Ic vendopt Ar code Ar type Ar variable
745Defines the Vendor-Identifying Vendor Options.
746The
747.Ar code
748is the IANA Enterprise Number which will unqiuely describe the encapsulated
749options.
750.Ar type
751is normally
752.Ar encap .
753.Ar variable
754names the Vendor option to be exported.
8e7d8c37
RM
755.It Ic embed Ar type Ar variable
756Defines an embedded variable within the defined option.
757The length is determined by the
758.Ar type .
63bdd2c2
RM
759If the
760.Ar variable
761is not the same as defined in the parent option,
762it is prefixed with the parent
763.Ar variable
764first with an underscore.
cc71162d
RM
765If the
766.Ar variable
767has the name of
768.Ar reserved
769then it is not processed.
8e7d8c37
RM
770.It Ic encap Ar code Ar type Ar variable
771Defines an encapsulated variable within the defined option.
772The length is determined by the
773.Ar type .
63bdd2c2
RM
774If the
775.Ar variable
776is not the same as defined in the parent option,
777it is prefixed with the parent
778.Ar variable
779first with an underscore.
780.El
781.Ss Type prefix
782These keywords come before the type itself, to describe it more fully.
783You can use more than one, but they must appear in the order listed below.
784.Bl -tag -width -indent
785.It Ic request
786Requests the option by default without having to be specified in user
787configuration
788.It Ic norequest
789This option cannot be requested, regardless of user configuration
ecdbb919
RM
790.It Ic optional
791This option is optional.
792Only makes sense for embedded options where like the client FQDN option where
793the FQDN string itself is optional.
03476881
RM
794.It Ic index
795The option can appear more than once and will be indexed.
63bdd2c2 796.It Ic array
b2feeb9e 797The option data is split into a space separated array, each element being
63bdd2c2 798the same type.
8e7d8c37
RM
799.El
800.Ss Types to define
b21cd906
RM
801The type directly affects the length of data consumed inside the option.
802Any remaining data is normally discarded.
803Lengths can be specified for string and binhex types, but this is generally
804with other data embedded afterwards in the same option.
8e7d8c37
RM
805.Bl -tag -width indent
806.It Ic ipaddress
cc71162d 807An IPv4 address, 4 bytes.
8e7d8c37 808.It Ic ip6address
cc71162d 809An IPv6 address, 16 bytes.
b21cd906 810.It Ic string Op : Ic length
8f008ca7 811A NVT ASCII string of printable characters.
8e7d8c37 812.It Ic byte
cc71162d
RM
813A byte.
814.It Ic bitflags : Ic flags
815A byte represented as a string of flags, most significant bit first.
816For example, using ABCDEFGH then A would equal 10000000, B 01000000,
817C 00100000, etc.
818If the bit is not set, the flag is not printed.
819A flag of 0 is not printed even if the bit postition is set.
820This is to allow reservation of the first bits while assinging the last bits.
8e7d8c37 821.It Ic int16
cc71162d 822A signed 16bit integer, 2 bytes.
8e7d8c37 823.It Ic uint16
cc71162d 824An unsigned 16bit integer, 2 bytes.
8e7d8c37 825.It Ic int32
cc71162d 826A signed 32bit integer, 4 bytes.
8e7d8c37 827.It Ic uint32
cc71162d
RM
828An unsigned 32bit integer, 4 bytes.
829.It Ic flag
830A fixed value (1) to indicate that the option is present, 0 bytes.
8e7d8c37 831.It Ic domain
cc71162d 832A RFC 3397 encoded string.
8f008ca7 833.It Ic dname
cc71162d 834A RFC 1035 validated string.
b21cd906 835.It Ic binhex Op : Ic length
cc71162d 836Binary data expressed as hexadecimal.
8e7d8c37 837.It Ic embed
cc71162d 838Contains embedded options (implies encap as well).
8e7d8c37 839.It Ic encap
cc71162d 840Contains encapsulated options (implies embed as well).
03476881 841.It Ic option
cc71162d 842References an option from the global definition.
8e7d8c37
RM
843.El
844.Ss Example definition
845.D1 # DHCP option 81, Fully Qualified Domain Name, RFC4702
63bdd2c2
RM
846.D1 define 81 embed fqdn
847.D1 embed byte flags
848.D1 embed byte rcode1
849.D1 embed byte rcode2
8e7d8c37
RM
850.D1 embed domain fqdn
851.Pp
852.D1 # DHCP option 125, Vendor Specific Information Option, RFC3925
63bdd2c2
RM
853.D1 define 125 encap vsio
854.D1 embed uint32 enterprise_number
8e7d8c37 855.D1 # Options defined for the enterprise number
63bdd2c2 856.D1 encap 1 ipaddress ipaddress
0dc49454 857.Ss Supported Authentication Protocols
c73ed171
RM
858.Bl -tag -width -indent
859.It Ic token
0dc49454 860Sends and expects the token with the secretid 0 and realm of "" in each message.
c73ed171
RM
861.It Ic delayedrealm
862Delayed Authentication.
863.Nm dhcpcd
864will send an authentication option with no key or MAC.
865The server will see this option, and select a key for
866.Nm , writing the
867.Ar realm
868and
869.Ar secretid
870in it.
871.Nm dhcpcd
872will then look for a non-expired token with a matching realm and secretid.
873This token is used to authenicate all other messages.
874.It Ic delayed
875Same as above, but without a realm.
876.El
0dc49454 877.Ss Supported Authentication Algorithms
c73ed171
RM
878If none specified,
879.Ic hmac-md5
880is the default.
881.Bl -tag -width -indent
882.It Ic hmac-md5
883.El
884.Ss Supported Replay Detection Mechanisms
885If none specified,
886.Ic monotonic
887is the default.
cf0840ef
RM
888If this is changed from what was previously used,
889or the means of calculating or storing it is broken then the DHCP server
890will probably have to have its notion of the clients Replay Detection Value
891reset.
c73ed171 892.Bl -tag -width -indent
cf0840ef
RM
893.It Ic monocounter
894Read the number in the file
895.Pa @DBDIR@/dhcpcd-rdm.monotonic
896and add one to it.
897.It Ic monotime
898Create a NTP timestamp from the system time.
c73ed171 899.It Ic monotonic
cf0840ef
RM
900Same as
901.Ic monotime .
c73ed171 902.El
ba9dfb7a 903.Sh SEE ALSO
0b4a1931 904.Xr fnmatch 3 ,
065125d4 905.Xr if_nametoindex 3 ,
0b4a1931
RM
906.Xr dhcpcd 8 ,
907.Xr dhcpcd-run-hooks 8
ba9dfb7a 908.Sh AUTHORS
2cfe8d07 909.An Roy Marples Aq Mt roy@marples.name
ba9dfb7a 910.Sh BUGS
fd73ceb1
RM
911Please report them to
912.Lk http://roy.marples.name/projects/dhcpcd