]> git.ipfire.org Git - thirdparty/dhcpcd.git/blame - src/dhcpcd.conf.5.in
Write syslog entries in logfile:
[thirdparty/dhcpcd.git] / src / dhcpcd.conf.5.in
CommitLineData
22bbd506 1.\" Copyright (c) 2006-2017 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.\"
94d1ded9 25.Dd April 8, 2017
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.
c07e0ab0
RM
82.Ar realm
83can be "" to for use with the
c73ed171 84.Ar delayed
c07e0ab0 85protocol.
c73ed171
RM
86.Ar expire
87is the date the token expires and should be formatted "yyy-mm-dd HH:MM".
88You can use the keyword
89.Ar forever
90or
91.Ar 0
92which means the token never expires.
0dc49454
RM
93For the token protocol,
94.Ar secretid
95needs to be 0 and
96.Ar realm
97needs to be "".
98If
99.Nm dhcpcd
100has the error
101.D1 dhcp_auth_encode: Invalid argument
102then it means that
103.Nm dhcpcd
104could not find the correct authentication token in your configuration.
bac03ede
RM
105.It Ic background
106Background immediately.
107This is useful for startup scripts which don't disable link messages for
108carrier status.
6f767217 109.It Ic blacklist Ar address Ns Op /cidr
ce6b39df 110Ignores all packets from
6f767217 111.Ar address Ns Op /cidr .
bf80d526
RM
112.It Ic whitelist Ar address Ns Op /cidr
113Only accept packets from
114.Ar address Ns Op /cidr .
115.Ic blacklist
116is ignored if
117.Ic whitelist
118is set.
8f924434
RM
119.It Ic bootp
120Be a BOOTP client.
121Basically, this just doesn't send a DHCP Message Type option and will only
122interact with a BOOTP server.
123All other DHCP options still work.
900b3da4
RM
124.It Ic broadcast
125Instructs the DHCP server to broadcast replies back to the client.
126Normally this is only set for non Ethernet interfaces,
127such as FireWire and InfiniBand.
128In most cases,
129.Nm dhcpcd
130will set this automatically.
a93e79c6
RM
131.It Ic controlgroup Ar group
132Sets the group ownership of
133.Pa @RUNDIR@/dhcpcd.sock
134so that users other than root can connect to
135.Nm dhcpcd .
a3099289
RM
136.It Ic debug
137Echo debug messages to the stderr and syslog.
413652c1
RM
138.It Ic dev Ar value
139Load the
140.Ar value
141.Pa /dev
142management module.
143.Nm dhcpcd
144will load the first one found to work, if any.
6bfd88f1
RM
145.It Ic env Ar value
146Push
147.Ar value
148to the environment for use in
149.Xr dhcpcd-run-hooks 8 .
150For example, you can force the hostname hook to always set the hostname with
151.Ic env
152.Va force_hostname=YES .
bbd250b4
RM
153Or set which driver
154.Xr wpa_supplicant 8
155should use with
156.Ic env
157.Va wpa_supplicant_driver=nl80211
77961e7b 158.Pp
c883b7b9 159If the hostname is set, it will be will set to the FQDN if possible as per
77961e7b
RM
160RFC 4702 section 3.1.
161If the FQDN option is missing,
162.Nm dhcpcd
163will still try and set a FQDN from the hostname and domain options for
164consistency.
165To override this, set
166.Ic env
167.Va hostname_fqdn=[YES|NO|SERVER] .
168A value of server means just what the server says, don't manipulate it.
169This could lead to an inconsistent hostname on a DHCPv4 and DHCPv6 network
170where the DHCPv4 hostname is short and the DHCPv6 has an FQDN.
171DHCPv6 has no hostname option.
d2616b08 172.It Ic clientid Ar string
c989b023
RM
173Send the
174.Ar clientid .
d2616b08 175If the string is of the format 01:02:03 then it is encoded as hex.
3faba9e6
RM
176For interfaces whose hardware address is longer than 8 bytes, or if the
177.Ar clientid
178is an empty string then
179.Nm dhcpcd
180sends a default
181.Ar clientid
182of the hardware family and the hardware address.
d2616b08
RM
183.It Ic duid
184Generate an
185.Rs
186.%T "RFC 4361"
187.Re
ebc9d360 188compliant DHCP Unique Identifier.
7e068c85
RM
189If persistent storage is available then a DUID-LLT (link local address + time)
190is generated, otherwise DUID-LL is generated (link local address).
ebc9d360
RM
191This, plus the IAID will be used as the
192.Ic clientid .
7e068c85 193The DUID-LLT generated will be held in
9f51e22b 194.Pa @DBDIR@/duid
d2616b08 195and should not be copied to other hosts.
ebc9d360
RM
196.It Ic iaid Ar iaid
197Set the Interface Association Identifier to
198.Ar iaid .
9ff636a5
RM
199This option must be used in an
200.Ic interface
201block.
6f66c6c9
RM
202This defaults to the last 4 bytes of the hardware address assigned to the
203interface.
204Each instance of this should be unique within the scope of the client and
205.Nm dhcpcd
206warns if a conflict is detected.
207If there is a conflict, it is only a problem if the conflicted IAIDs are
208used on the same network.
94bec972
RM
209.It Ic dhcp
210Enable DHCP on the interface, on by default.
211.It Ic dhcp6
212Enable DHCPv6 on the interface, on by default.
213.It Ic ipv4
214Enable IPv4 on the interface, on by default.
215.It Ic ipv6
216Enable IPv6 on the interface, on by default.
438cfdcd
RM
217.It Ic request Op Ar address
218Request the
219.Ar address
220in the DHCP DISCOVER message.
221There is no guarantee this is the address the DHCP server will actually give.
222If no
223.Ar address
224is given then the first address currently assigned to the
225.Ar interface
226is used.
227.It Ic inform Op Ar address Ns Op Ar /cidr
228Behaves like
229.Ic request
230as above, but sends a DHCP INFORM instead of DISCOVER/REQUEST.
231This does not get a lease as such, just notifies the DHCP server of the
232.Ar address
233in use.
234You should also include the optional
235.Ar cidr
236network number in case the address is not already configured on the interface.
237.Nm dhcpcd
238remains running and pretends it has an infinite lease.
239.Nm dhcpcd
240will not de-configure the interface when it exits.
241If
242.Nm dhcpcd
243fails to contact a DHCP server then it returns a failure instead of falling
244back on IPv4LL.
245.It Ic inform6
246Performs a DHCPv6 Information Request.
247No address is requested or specified, but all other DHCPv6 options are allowed.
248This is normally performed automatically when the IPv6 Router Advertises
249that the client should perform this operation.
250This option is only needed when
251.Nm dhcpcd
252is not processing IPv6RA messages and the need for DHCPv6 Information Request
253exists.
15fc1181
RM
254.It Ic persistent
255.Nm dhcpcd
256normally de-configures the interface and configuration when it exits.
257Sometimes, this isn't desirable if, for example, you have root mounted over
a544b76a
RM
258NFS or SSH clients connect to this host and they need to be notified of
259the host shutting down.
15fc1181 260You can use this option to stop this from happening.
ff021b0b
RM
261.It Ic fallback Ar profile
262Fallback to using this profile if DHCP fails.
263This allows you to configure a static profile instead of using ZeroConf.
ba9dfb7a 264.It Ic hostname Ar name
c883b7b9
RM
265Sends the hostname
266.Ar name
35d02ae6
RM
267to the DHCP server so it can be registered in DNS.
268If
c883b7b9 269.Ar name
35d02ae6
RM
270is an empty string then the current system hostname is sent.
271If
c883b7b9 272.Ar name
35d02ae6 273is a FQDN (ie, contains a .) then it will be encoded as such.
d6a18654
RM
274.It Ic hostname_short
275Sends the short hostname to the DHCP server instead of the FQDN.
276This is useful because DHCP servers will not register the FQDN in their
277DNS if the domain part does not match theirs.
77961e7b
RM
278.Pp
279Also, see the
280.Ic env
281option above to control how the hostname is set on the host.
8fe4bf14 282.It Ic ia_na Op Ar iaid Op / address
00ababe4
RM
283Request a DHCPv6 Normal Address for
284.Ar iaid .
00ababe4 285.Ar iaid
ebc9d360
RM
286defaults to the
287.Ic iaid
288option as described above.
289You can request more than one ia_na by specifying a unique
290.Ar iaid
291for each one.
22ea2b0d 292.It Ic ia_ta Op Ar iaid
00ababe4
RM
293Request a DHCPv6 Temporary Address for
294.Ar iaid .
ebc9d360
RM
295You can request more than one ia_ta by specifying a unique
296.Ar iaid
297for each one.
fda2c663 298.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
299Request a DHCPv6 Delegated Prefix for
300.Ar iaid .
9ff636a5
RM
301This option must be used in an
302.Ic interface
303block.
94a79cea
RM
304Unless a
305.Ar sla_id
e3883bfc
RM
306of 0 is assigned with the same resultant prefix length as the delegation,
307a reject route is installed for the Delegated Prefix to
94a79cea 308stop unallocated addresses being resolved upstream.
22ea2b0d
RM
309If no
310.Ar interface
94a79cea 311is given then we will assign a prefix to every other interface with a
22ea2b0d 312.Ar sla_id
94a79cea 313equivalent to the interface index assigned by the OS.
22ea2b0d 314Otherwise addresses are only assigned for each
00ababe4
RM
315.Ar interface
316and
9ff636a5 317.Ar sla_id .
fda2c663
RM
318Each assigned address will have a
319.Ar suffix ,
320defaulting to 1.
f9f15d95
RM
321If the
322.Ar suffix
323is 0 then a slaac address is assigned.
12c77e75
RM
324You cannot assign a prefix to the requesting interface unless the
325DHCPv6 server supports
326.Li RFC6603
327Prefix Exclude Option.
2fae05d0
RM
328.Nm dhcpcd
329has to be running for all the interfaces it is delegating to.
00ababe4 330A default
367f7b11 331.Ar prefix_len
94a79cea
RM
332of 64 is assumed, unless the maximum
333.Ar sla_id
334does not fit.
335In this case
336.Ar prefix_len
b2feeb9e 337is increased to the highest multiple of 8 that can accommodate the
94a79cea 338.Ar sla_id .
367f7b11 339.Ar sla_id
663d44bf
RM
340is an integer which must be unique inside the
341.Ar iaid
342and is added to the prefix which must fit inside
367f7b11
RM
343.Ar prefix_len
344less the length of the delegated prefix.
22ea2b0d
RM
345You can specify multiple
346.Ar interface /
347.Ar sla_id /
348.Ar prefix_len
349per
350.Ic ia_pd ,
351space separated.
9be26bc3 352IPv6RS should be disabled globally when requesting a Prefix Delegation.
00ababe4 353.Pp
9be26bc3
RM
354In the following example eth0 is the externally facing interface to be
355configured for both IPv4 and IPv6.
356The DHCPv4 server will provide us with an IPv4 address and a default route.
357The DHCPv6 server is going to provide us with an IPv6 address, a default
358route and a /64 subnet to be delegated to the internal interface.
359The eth1 interface will be automatically configured
360for IPv6 using the first address (::1) from the delegated prefix.
b9beb41b 361A second prefix is requested and assigned to two other interfaces.
9be26bc3 362.Xr rtadvd 8
b9beb41b
RM
363can be used with an empty configuration file on eth1, eth2 and eth3,
364to provide automatic
9be26bc3 365IPv6 address configuration for the internal network.
7e609902 366.Bd -literal
b9beb41b
RM
367noipv6rs # disable routing solicitation
368denyinterfaces eth2 # Don't touch eth2 at all
9be26bc3 369interface eth0
b9beb41b
RM
370 ipv6rs # enable routing solicitation get the
371 # default IPv6 route
372 ia_na 1 # request an IPv6 address
373 ia_pd 2 eth1/0 # request a PD and assign it to eth1
374 ia_pd 3 eth2/1 eth3/2 # req a PD and assign it to eth2 and eth3
9be26bc3 375.Ed
d7555c12
RM
376.It Ic ipv4only
377Only configure IPv4.
378.It Ic ipv6only
925fc70e 379Only configure IPv6.
cc3c3560
RM
380.It Ic fqdn Op disable | ptr | both
381ptr just asks the DHCP server to update the PTR
35ff0dbb 382record of the host in DNS whereas both also updates the A record.
cc3c3560
RM
383disable will disable the FQDN option.
384The default is both.
1b3bc477
RM
385.Nm dhcpcd
386itself never does any DNS updates.
e837a670
RM
387.Nm dhcpcd
388encodes the FQDN hostname as specified in
389.Li RFC1035 .
3adc5520 390.It Ic interface Ar interface
012fd5d3
RM
391Subsequent options are only parsed for this
392.Ar interface .
62f12387
RM
393.It Ic ipv6ra_autoconf
394Generate SLAAC addresses for each Prefix advertised by a
395Router Advertisement message with the Auto flag set.
396On by default.
397.It Ic ipv6ra_noautoconf
398Disables the above option.
61dd6cf9
RM
399.It Ic ipv6ra_fork
400By default, when
401.Nm dhcpcd
402receives an IPv6 RA,
403.Nm dhcpcd
404will only fork to the background if the RA contains at least one unexpired
e2c4a256 405RDNSS option and a valid prefix or no DHCPv6 instruction.
61dd6cf9
RM
406Set this option so to make
407.Nm dhcpcd
408always fork on an RA.
d7555c12 409.It Ic ipv6rs
b831a425 410Enables IPv6 Router Advertisement solicitation.
eebe9a18
RM
411This is on by default, but is documented here in the case where it is disabled
412globally but needs to be enabled for one interface.
ba9dfb7a
RM
413.It Ic leasetime Ar seconds
414Request a leasetime of
415.Ar seconds .
94d1ded9
RM
416.It Ic logfile Ar logfile
417Writes to the specified
418.Ar logfile
419rather than
420.Xr syslog 3 .
421The
422.Ar logfile
423is truncated when opened and is reopened when
424.Nm dhcpcd
425receives the
426.Dv SIGUSR2
427signal.
065125d4
RM
428.It Ic metric Ar metric
429Metrics are used to prefer an interface over another one, lowest wins.
430.Nm dhcpcd
87b266d2 431will supply a default metric of 200 +
065125d4
RM
432.Xr if_nametoindex 3 .
433An extra 100 will be added for wireless interfaces.
d85ad7d0
RM
434.It Ic mudurl Ar url
435Specifies the URL for a manufacturer usage description (MUD).
436The description is used by upstream network devices to instantiate any
437desired access lists.
438See draft-ietf-opsawg-mud for more information.
7dab081f 439.It Ic noalias
dffe72f6
RM
440Any pre-existing IPv4 addresses existing address will be removed from the
441interface when adding a new IPv4 address.
ba9dfb7a 442.It Ic noarp
cf42802e
RM
443Don't send any ARP requests.
444This also disables IPv4LL.
c73ed171
RM
445.It Ic noauthrequired
446Don't require authentication even though we requested it.
d672ebda 447Also allows FORCERENEW and RECONFIGURE messages without authentication.
f572315d
RM
448.It Ic nodelay
449Don't delay for an initial randomised time when starting protocols.
413652c1
RM
450.It Ic nodev
451Don't load
452.Pa /dev
453management modules.
d4154ba7
RM
454.It Ic nodhcp
455Don't start DHCP or listen to DHCP messages.
456This is only useful when allowing IPv4LL.
457.It Ic nodhcp6
458Don't start DHCPv6 or listen to DHCPv6 messages.
459Normally DHCPv6 is started by a RA instruction or configuration.
37156a6b
RM
460.It Ic nohook Ar script
461Don't run this hook script.
8276da82
RM
462Matches full name, or prefixed with 2 numbers optionally ending with
463.Pa .sh .
fc7ee231
RM
464.Pp
465So to stop
466.Nm dhcpcd
ca6cdf58
RM
467from touching your DNS settings or starting wpa_supplicant you would do:-
468.D1 nohook resolv.conf, wpa_supplicant
bb8051bf
RM
469.It Ic noipv4
470Don't attempt to configure an IPv4 address.
ba9dfb7a
RM
471.It Ic noipv4ll
472Don't attempt to obtain an IPv4LL address if we failed to get one via DHCP.
473See
474.Rs
475.%T "RFC 3927"
476.Re
bb8051bf 477.It Ic noipv6
925fc70e 478Don't attempt to configure an IPv6 address.
91cd7324 479.It Ic noipv6rs
4c6a8bec 480Disable solicitation and receipt of IPv6 Router Advertisements.
a26af491
RM
481.It Ic nolink
482Don't receive link messages about carrier status.
483You should only set this for buggy interface drivers.
2862d340
RM
484.It Ic noup
485Don't bring the interface up when in master mode.
486If
487.Nm
488cannot determine the carrier state,
489.Nm
490will enter a tight polling loop until the interface is marked up and running
491or a valid carrier state is reported.
cc45fbd7 492.It Ic option Ar option
d2616b08 493Requests the
cc45fbd7 494.Ar option
cf42802e
RM
495from the server.
496It can be a variable to be used in
ee4e620a 497.Xr dhcpcd-run-hooks 8
cf42802e 498or the numerical value.
b8ffa3cd
RM
499You can specify more
500.Ar option Ns s
501separated by commas, spaces or more
502.Ic option
503lines.
2be15e88 504.Ar option
b8ffa3cd
RM
505Prepend dhcp6_ to
506.Ar option
507to request a DHCPv6 option.
daa70372
RM
508If no DHCPv6 options are configured,
509then DHCPv4 options are mapped to equivalent DHCPv6 options.
2be15e88
RM
510.Pp
511Prepend nd_ to
512.Ar option
513to handle ND options, but this only works for the
514.Ic nooption ,
515.Ic reject
516and
517.Ic require
518options.
f38394c1
RM
519.Pp
520To see a list of options you can use, call
521.Nm dhcpcd
522with the
523.Fl V , Fl Fl variables
524argument.
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
b831a425
RM
566in use on network B, then the DHCP server will remain silent even if
567authoritative which means
901b42de
RM
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
b831a425 600Here is an example which configures two static address, an IPv4 router, DNS
408fe755
RM
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
925fc70e 748is the IANA Enterprise Number which will uniquely describe the encapsulated
7a911e57
RM
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.
925fc70e
RM
819A flag of 0 is not printed even if the bit position is set.
820This is to allow reservation of the first bits while assigning 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.
925fc70e 873This token is used to authenticate all other messages.
c73ed171
RM
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