xref: /freebsd/sbin/ifconfig/ifconfig.8 (revision 40c911e8da50e5a67356506c4e748b6b98969ee8)
1.\" Copyright (c) 1983, 1991, 1993
2.\"	The Regents of the University of California.  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.\" 3. Neither the name of the University nor the names of its contributors
13.\"    may be used to endorse or promote products derived from this software
14.\"    without specific prior written permission.
15.\"
16.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26.\" SUCH DAMAGE.
27.\"
28.\"     From: @(#)ifconfig.8	8.3 (Berkeley) 1/5/94
29.\" $FreeBSD$
30.\"
31.Dd March 29, 2022
32.Dt IFCONFIG 8
33.Os
34.Sh NAME
35.Nm ifconfig
36.Nd configure network interface parameters
37.Sh SYNOPSIS
38.Nm
39.Op Fl f Ar type Ns Cm \&: Ns Ar format Ns Op Cm \&, Ns Ar type Ns Cm \& : Ns Ar format ...
40.Op Fl L
41.Op Fl k
42.Op Fl m
43.Op Fl n
44.Ar interface
45.Op Cm create
46.Ar address_family
47.Oo
48.Ar address
49.Op Ar dest_address
50.Oc
51.Op Ar parameters
52.Nm
53.Ar interface
54.Cm destroy
55.Nm
56.Fl a
57.Op Fl L
58.Op Fl d
59.Op Fl [gG] Ar groupname
60.Op Fl m
61.Op Fl u
62.Op Fl v
63.Op Ar address_family
64.Nm
65.Fl l
66.Op Fl d
67.Op Fl u
68.Op Ar address_family
69.Nm
70.Op Fl L
71.Op Fl d
72.Op Fl k
73.Op Fl m
74.Op Fl u
75.Op Fl v
76.Op Fl C
77.Nm
78.Op Fl g Ar groupname
79.Sh DESCRIPTION
80The
81.Nm
82utility is used to assign an address
83to a network interface and/or configure
84network interface parameters.
85The
86.Nm
87utility must be used at boot time to define the network address
88of each interface present on a machine; it may also be used at
89a later time to redefine an interface's address
90or other operating parameters.
91.Pp
92The following options are available:
93.Bl -tag -width indent
94.It Ar address
95For the DARPA-Internet family,
96the address is either a host name present in the host name data
97base,
98.Xr hosts 5 ,
99or a DARPA Internet address expressed in the Internet standard
100.Dq dot notation .
101.Pp
102It is also possible to use the CIDR notation (also known as the
103slash notation) to include the netmask.
104That is, one can specify an address like
105.Li 192.168.0.1/16 .
106.Pp
107For the
108.Dq inet6
109family, it is also possible to specify the prefix length using the slash
110notation, like
111.Li ::1/128 .
112See the
113.Cm prefixlen
114parameter below for more information.
115.\" For the Xerox Network Systems(tm) family,
116.\" addresses are
117.\" .Ar net:a.b.c.d.e.f ,
118.\" where
119.\" .Ar net
120.\" is the assigned network number (in decimal),
121.\" and each of the six bytes of the host number,
122.\" .Ar a
123.\" through
124.\" .Ar f ,
125.\" are specified in hexadecimal.
126.\" The host number may be omitted on IEEE 802 protocol
127.\" (Ethernet, FDDI, and Token Ring) interfaces,
128.\" which use the hardware physical address,
129.\" and on interfaces other than the first.
130.\" For the ISO family, addresses are specified as a long hexadecimal string,
131.\" as in the Xerox family.
132.\" However, two consecutive dots imply a zero
133.\" byte, and the dots are optional, if the user wishes to (carefully)
134.\" count out long strings of digits in network byte order.
135.Pp
136The link-level
137.Pq Dq link
138address
139is specified as a series of colon-separated hex digits.
140This can be used to, for example,
141set a new MAC address on an Ethernet interface, though the
142mechanism used is not Ethernet specific.
143Use the
144.Pq Dq random
145keyword to set a randomly generated MAC address.
146A randomly-generated MAC address might be the same as one already in use
147in the network.
148Such duplications are extremely unlikely.
149If the interface is already
150up when this option is used, it will be briefly brought down and
151then brought back up again in order to ensure that the receive
152filter in the underlying Ethernet hardware is properly reprogrammed.
153.It Ar address_family
154Specify the
155address family
156which affects interpretation of the remaining parameters.
157Since an interface can receive transmissions in differing protocols
158with different naming schemes, specifying the address family is recommended.
159The address or protocol families currently
160supported are
161.Dq inet ,
162.Dq inet6 ,
163and
164.Dq link .
165The default if available is
166.Dq inet
167or otherwise
168.Dq link .
169.Dq ether
170and
171.Dq lladdr
172are synonyms for
173.Dq link .
174When using the
175.Fl l
176flag, the
177.Dq ether
178address family has special meaning and is no longer synonymous with
179.Dq link
180or
181.Dq lladdr .
182Specifying
183.Fl l Dq ether
184will list only Ethernet interfaces, excluding all other interface types,
185including the loopback interface.
186.It Ar dest_address
187Specify the address of the correspondent on the other end
188of a point to point link.
189.It Ar interface
190This
191parameter is a string of the form
192.Dq name unit ,
193for example,
194.Dq Li em0 .
195.It Ar groupname
196List the interfaces in the given group.
197.El
198.Pp
199The output format of
200.Nm
201can be controlled using the
202.Fl f
203flag or the
204.Ev IFCONFIG_FORMAT
205environment variable.
206The format is specified as a comma separated list of
207.Sy type:format
208pairs.
209See the
210.Sx EXAMPLES
211section for more information.
212The
213.Sy types
214and their associated
215.Sy format
216strings are:
217.Bl -tag -width ether
218.It Sy addr
219Adjust the display of inet and inet6 addresses
220.Bl -tag -width default
221.It Sy default
222Display inet and inet6 addresses in the default format,
223.Sy numeric
224.It Sy fqdn
225Display inet and inet6 addresses as fully qualified domain names
226.Pq FQDN
227.It Sy host
228Display inet and inet6 addresses as unqualified hostnames
229.It Sy numeric
230Display inet and inet6 addresses in numeric format
231.El
232.It Sy ether
233Adjust the display of link-level ethernet (MAC) addresses
234.Bl -tag -width default
235.It Sy colon
236Separate address segments with a colon
237.It Sy dash
238Separate address segments with a dash
239.It Sy default
240Display ethernet addresses in the default format,
241.Sy colon
242.El
243.It Sy inet
244Adjust the display of inet address subnet masks:
245.Bl -tag -width default
246.It Sy cidr
247Display subnet masks in CIDR notation, for example:
248.br
24910.0.0.0/8 or 203.0.113.224/26
250.It Sy default
251Display subnet masks in the default format,
252.Sy hex
253.It Sy dotted
254Display subnet masks in dotted quad notation, for example:
255.br
256255.255.0.0 or 255.255.255.192
257.It Sy hex
258Display subnet masks in hexadecimal, for example:
259.br
2600xffff0000 or 0xffffffc0
261.El
262.It Sy inet6
263Adjust the display of inet6 address prefixes (subnet masks):
264.Bl -tag -width default
265.It Sy cidr
266Display subnet prefix in CIDR notation, for example:
267.br
268::1/128 or fe80::1%lo0/64
269.It Sy default
270Display subnet prefix in the default format
271.Sy numeric
272.It Sy numeric
273Display subnet prefix in integer format, for example:
274.br
275prefixlen 64
276.El
277.El
278.Pp
279The following parameters may be set with
280.Nm :
281.Bl -tag -width indent
282.It Cm add
283Another name for the
284.Cm alias
285parameter.
286Introduced for compatibility
287with
288.Bsx .
289.It Cm alias
290Establish an additional network address for this interface.
291This is sometimes useful when changing network numbers, and
292one wishes to accept packets addressed to the old interface.
293If the address is on the same subnet as the first network address
294for this interface, a non-conflicting netmask must be given.
295Usually
296.Li 0xffffffff
297is most appropriate.
298.It Fl alias
299Remove the network address specified.
300This would be used if you incorrectly specified an alias, or it
301was no longer needed.
302If you have incorrectly set an NS address having the side effect
303of specifying the host portion, removing all NS addresses will
304allow you to respecify the host portion.
305.It Cm anycast
306(Inet6 only.)
307Specify that the address configured is an anycast address.
308Based on the current specification,
309only routers may configure anycast addresses.
310Anycast address will not be used as source address of any of outgoing
311IPv6 packets.
312.It Cm arp
313Enable the use of the Address Resolution Protocol
314.Pq Xr arp 4
315in mapping
316between network level addresses and link level addresses (default).
317This is currently implemented for mapping between DARPA Internet addresses
318and IEEE 802 48-bit MAC addresses (Ethernet, FDDI, and Token Ring addresses).
319.It Fl arp
320Disable the use of the Address Resolution Protocol
321.Pq Xr arp 4 .
322.It Cm staticarp
323If the Address Resolution Protocol is enabled,
324the host will only reply to requests for its addresses,
325and will never send any requests.
326.It Fl staticarp
327If the Address Resolution Protocol is enabled,
328the host will perform normally,
329sending out requests and listening for replies.
330.It Cm broadcast
331(Inet only.)
332Specify the address to use to represent broadcasts to the
333network.
334The default broadcast address is the address with a host part of all 1's.
335.It Cm debug
336Enable driver dependent debugging code; usually, this turns on
337extra console error logging.
338.It Fl debug
339Disable driver dependent debugging code.
340.It Cm promisc
341Put interface into permanently promiscuous mode.
342.It Fl promisc
343Disable permanently promiscuous mode.
344.It Cm delete
345Another name for the
346.Fl alias
347parameter.
348.It Cm description Ar value , Cm descr Ar value
349Specify a description of the interface.
350This can be used to label interfaces in situations where they may
351otherwise be difficult to distinguish.
352.It Cm -description , Cm -descr
353Clear the interface description.
354.It Cm down
355Mark an interface
356.Dq down .
357When an interface is marked
358.Dq down ,
359the system will not attempt to
360transmit messages through that interface.
361If possible, the interface will be reset to disable reception as well.
362This action does not automatically disable routes using the interface.
363.It Cm group Ar groupname
364Assign the interface to a
365.Dq group .
366Any interface can be in multiple groups.
367.Pp
368Cloned interfaces are members of their interface family group by default.
369For example, a PPP interface such as
370.Em ppp0
371is a member of the PPP interface family group,
372.Em ppp .
373.\" The interface(s) the default route(s) point to are members of the
374.\" .Em egress
375.\" interface group.
376.It Cm -group Ar groupname
377Remove the interface from the given
378.Dq group .
379.It Cm eui64
380(Inet6 only.)
381Fill interface index
382(lowermost 64bit of an IPv6 address)
383automatically.
384.It Cm fib Ar fib_number
385Specify interface FIB.
386A FIB
387.Ar fib_number
388is assigned to all frames or packets received on that interface.
389The FIB is not inherited, e.g., vlans or other sub-interfaces will use
390the default FIB (0) irrespective of the parent interface's FIB.
391The kernel needs to be tuned to support more than the default FIB
392using the
393.Va ROUTETABLES
394kernel configuration option, or the
395.Va net.fibs
396tunable.
397.It Cm tunnelfib Ar fib_number
398Specify tunnel FIB.
399A FIB
400.Ar fib_number
401is assigned to all packets encapsulated by tunnel interface, e.g.,
402.Xr gif 4
403and
404.Xr gre 4 .
405.It Cm maclabel Ar label
406If Mandatory Access Control support is enabled in the kernel,
407set the MAC label to
408.Ar label .
409.\" (see
410.\" .Xr maclabel 7 ) .
411.It Cm media Ar type
412If the driver supports the media selection system, set the media type
413of the interface to
414.Ar type .
415Some interfaces support the mutually exclusive use of one of several
416different physical media connectors.
417For example, a 10Mbit/s Ethernet
418interface might support the use of either AUI
419or twisted pair connectors.
420Setting the media type to
421.Cm 10base5/AUI
422would change the currently active connector to the AUI port.
423Setting it to
424.Cm 10baseT/UTP
425would activate twisted pair.
426Refer to the interfaces' driver
427specific documentation or man page for a complete list of the
428available types.
429.It Cm mediaopt Ar opts
430If the driver supports the media selection system, set the specified
431media options on the interface.
432The
433.Ar opts
434argument
435is a comma delimited list of options to apply to the interface.
436Refer to the interfaces' driver specific man page for a complete
437list of available options.
438.It Fl mediaopt Ar opts
439If the driver supports the media selection system, disable the
440specified media options on the interface.
441.It Cm mode Ar mode
442If the driver supports the media selection system, set the specified
443operating mode on the interface to
444.Ar mode .
445For IEEE 802.11 wireless interfaces that support multiple operating modes
446this directive is used to select between 802.11a
447.Pq Cm 11a ,
448802.11b
449.Pq Cm 11b ,
450and 802.11g
451.Pq Cm 11g
452operating modes.
453.It Cm txrtlmt
454Set if the driver supports TX rate limiting.
455.It Cm inst Ar minst , Cm instance Ar minst
456Set the media instance to
457.Ar minst .
458This is useful for devices which have multiple physical layer interfaces
459.Pq PHYs .
460.It Cm name Ar name
461Set the interface name to
462.Ar name .
463.It Cm rxcsum , txcsum , rxcsum6 , txcsum6
464If the driver supports user-configurable checksum offloading,
465enable receive (or transmit) checksum offloading on the interface.
466The feature can be turned on selectively per protocol family.
467Use
468.Cm rxcsum6 , txcsum6
469for
470.Xr ip6 4
471or
472.Cm rxcsum , txcsum
473otherwise.
474Some drivers may not be able to enable these flags independently
475of each other, so setting one may also set the other.
476The driver will offload as much checksum work as it can reliably
477support, the exact level of offloading varies between drivers.
478.It Fl rxcsum , txcsum , rxcsum6 , txcsum6
479If the driver supports user-configurable checksum offloading,
480disable receive (or transmit) checksum offloading on the interface.
481The feature can be turned off selectively per protocol family.
482Use
483.Fl rxcsum6 , txcsum6
484for
485.Xr ip6 4
486or
487.Fl rxcsum , txcsum
488otherwise.
489These settings may not always be independent of each other.
490.It Cm tso
491If the driver supports
492.Xr tcp 4
493segmentation offloading, enable TSO on the interface.
494Some drivers may not be able to support TSO for
495.Xr ip 4
496and
497.Xr ip6 4
498packets, so they may enable only one of them.
499.It Fl tso
500If the driver supports
501.Xr tcp 4
502segmentation offloading, disable TSO on the interface.
503It will always disable TSO for
504.Xr ip 4
505and
506.Xr ip6 4 .
507.It Cm tso6 , tso4
508If the driver supports
509.Xr tcp 4
510segmentation offloading for
511.Xr ip6 4
512or
513.Xr ip 4
514use one of these to selectively enabled it only for one protocol family.
515.It Fl tso6 , tso4
516If the driver supports
517.Xr tcp 4
518segmentation offloading for
519.Xr ip6 4
520or
521.Xr ip 4
522use one of these to selectively disable it only for one protocol family.
523.It Cm lro
524If the driver supports
525.Xr tcp 4
526large receive offloading, enable LRO on the interface.
527.It Fl lro
528If the driver supports
529.Xr tcp 4
530large receive offloading, disable LRO on the interface.
531.It Cm txtls
532Transmit TLS offload encrypts Transport Layer Security (TLS) records and
533segments the encrypted record into one or more
534.Xr tcp 4
535segments over either
536.Xr ip 4
537or
538.Xr ip6 4 .
539If the driver supports transmit TLS offload,
540enable transmit TLS offload on the interface.
541Some drivers may not be able to support transmit TLS offload for
542.Xr ip 4
543and
544.Xr ip6 4
545packets, so they may enable only one of them.
546.It Fl txtls
547If the driver supports transmit TLS offload,
548disable transmit TLS offload on the interface.
549It will always disable TLS for
550.Xr ip 4
551and
552.Xr ip6 4 .
553.It Cm txtlsrtlmt
554Enable use of rate limiting (packet pacing) for TLS offload.
555.It Fl txtlsrtlmt
556Disable use of rate limiting for TLS offload.
557.It Cm mextpg
558If the driver supports extended multi-page
559.Xr mbuf 9
560buffers, enable them on the interface.
561.It Fl mextpg
562If the driver supports extended multi-page
563.Xr mbuf 9
564biffers, disable them on the interface.
565.It Cm wol , wol_ucast , wol_mcast , wol_magic
566Enable Wake On Lan (WOL) support, if available.
567WOL is a facility whereby a machine in a low power state may be woken
568in response to a received packet.
569There are three types of packets that may wake a system:
570ucast (directed solely to the machine's mac address),
571mcast (directed to a broadcast or multicast address),
572or
573magic (unicast or multicast frames with a ``magic contents'').
574Not all devices support WOL, those that do indicate the mechanisms
575they support in their capabilities.
576.Cm wol
577is a synonym for enabling all available WOL mechanisms.
578To disable WOL use
579.Fl wol .
580.It Cm vlanmtu , vlanhwtag , vlanhwfilter , vlanhwcsum , vlanhwtso
581If the driver offers user-configurable VLAN support, enable
582reception of extended frames, tag processing in hardware,
583frame filtering in hardware, checksum offloading, or TSO on VLAN,
584respectively.
585Note that this must be configured on a physical interface associated with
586.Xr vlan 4 ,
587not on a
588.Xr vlan 4
589interface itself.
590.It Fl vlanmtu , vlanhwtag , vlanhwfilter , vlanhwcsum , vlanhwtso
591If the driver offers user-configurable VLAN support, disable
592reception of extended frames, tag processing in hardware,
593frame filtering in hardware, checksum offloading, or TSO on VLAN,
594respectively.
595.It Cm vxlanhwcsum , vxlanhwtso
596If the driver offers user-configurable VXLAN support, enable inner checksum
597offloading (receive and transmit) or TSO on VXLAN, respectively.
598Note that this must be configured on a physical interface associated with
599.Xr vxlan 4 ,
600not on a
601.Xr vxlan 4
602interface itself.
603The physical interface is either the interface specified as the vxlandev
604or the interface hosting the vxlanlocal address.
605The driver will offload as much checksum work and TSO as it can reliably
606support, the exact level of offloading may vary between drivers.
607.It Fl vxlanhwcsum , vxlanhwtso
608If the driver offers user-configurable VXLAN support, disable checksum
609offloading (receive and transmit) or TSO on VXLAN, respectively.
610.It Cm vnet Ar jail
611Move the interface to the
612.Xr jail 8 ,
613specified by name or JID.
614If the jail has a virtual network stack, the interface will disappear
615from the current environment and become visible to the jail.
616.It Fl vnet Ar jail
617Reclaim the interface from the
618.Xr jail 8 ,
619specified by name or JID.
620If the jail has a virtual network stack, the interface will disappear
621from the jail, and become visible to the current network environment.
622.It Cm polling
623Turn on
624.Xr polling 4
625feature and disable interrupts on the interface, if driver supports
626this mode.
627.It Fl polling
628Turn off
629.Xr polling 4
630feature and enable interrupt mode on the interface.
631.It Cm create
632Create the specified network pseudo-device.
633If the interface is given without a unit number, try to create a new
634device with an arbitrary unit number.
635If creation of an arbitrary device is successful, the new device name is
636printed to standard output unless the interface is renamed or destroyed
637in the same
638.Nm
639invocation.
640.It Cm destroy
641Destroy the specified network pseudo-device.
642.It Cm plumb
643Another name for the
644.Cm create
645parameter.
646Included for Solaris compatibility.
647.It Cm unplumb
648Another name for the
649.Cm destroy
650parameter.
651Included for Solaris compatibility.
652.It Cm metric Ar n
653Set the routing metric of the interface to
654.Ar n ,
655default 0.
656The routing metric is used by the routing protocol
657.Pq Xr routed 8 .
658Higher metrics have the effect of making a route
659less favorable; metrics are counted as additional hops
660to the destination network or host.
661.It Cm mtu Ar n
662Set the maximum transmission unit of the interface to
663.Ar n ,
664default is interface specific.
665The MTU is used to limit the size of packets that are transmitted on an
666interface.
667Not all interfaces support setting the MTU, and some interfaces have
668range restrictions.
669.It Cm netmask Ar mask
670.\" (Inet and ISO.)
671(Inet only.)
672Specify how much of the address to reserve for subdividing
673networks into sub-networks.
674The mask includes the network part of the local address
675and the subnet part, which is taken from the host field of the address.
676The mask can be specified as a single hexadecimal number
677with a leading
678.Ql 0x ,
679with a dot-notation Internet address,
680or with a pseudo-network name listed in the network table
681.Xr networks 5 .
682The mask contains 1's for the bit positions in the 32-bit address
683which are to be used for the network and subnet parts,
684and 0's for the host part.
685The mask should contain at least the standard network portion,
686and the subnet field should be contiguous with the network
687portion.
688.Pp
689The netmask can also be specified in CIDR notation after the address.
690See the
691.Ar address
692option above for more information.
693.It Cm prefixlen Ar len
694(Inet6 only.)
695Specify that
696.Ar len
697bits are reserved for subdividing networks into sub-networks.
698The
699.Ar len
700must be integer, and for syntactical reason it must be between 0 to 128.
701It is almost always 64 under the current IPv6 assignment rule.
702If the parameter is omitted, 64 is used.
703.Pp
704The prefix can also be specified using the slash notation after the address.
705See the
706.Ar address
707option above for more information.
708.It Cm remove
709Another name for the
710.Fl alias
711parameter.
712Introduced for compatibility
713with
714.Bsx .
715.Sm off
716.It Cm link Op Cm 0 No - Cm 2
717.Sm on
718Enable special processing of the link level of the interface.
719These three options are interface specific in actual effect, however,
720they are in general used to select special modes of operation.
721An example
722of this is to enable SLIP compression, or to select the connector type
723for some Ethernet cards.
724Refer to the man page for the specific driver
725for more information.
726.Sm off
727.It Fl link Op Cm 0 No - Cm 2
728.Sm on
729Disable special processing at the link level with the specified interface.
730.It Cm monitor
731Put the interface in monitor mode.
732No packets are transmitted, and received packets are discarded after
733.Xr bpf 4
734processing.
735.It Fl monitor
736Take the interface out of monitor mode.
737.It Cm pcp Ar priority_code_point
738Priority code point
739.Pq Dv PCP
740is an 3-bit field which refers to the IEEE 802.1p
741class of service and maps to the frame priority level.
742.It Fl pcp
743Stop tagging packets on the interface w/ the priority code point.
744.It Cm up
745Mark an interface
746.Dq up .
747This may be used to enable an interface after an
748.Dq Nm Cm down .
749It happens automatically when setting the first address on an interface.
750If the interface was reset when previously marked down,
751the hardware will be re-initialized.
752.El
753.Pp
754The following parameters are for ICMPv6 Neighbor Discovery Protocol.
755Note that the address family keyword
756.Dq Li inet6
757is needed for them:
758.Bl -tag -width indent
759.It Cm accept_rtadv
760Set a flag to enable accepting ICMPv6 Router Advertisement messages.
761The
762.Xr sysctl 8
763variable
764.Va net.inet6.ip6.accept_rtadv
765controls whether this flag is set by default or not.
766.It Cm -accept_rtadv
767Clear a flag
768.Cm accept_rtadv .
769.It Cm no_radr
770Set a flag to control whether routers from which the system accepts
771Router Advertisement messages will be added to the Default Router List
772or not.
773When the
774.Cm accept_rtadv
775flag is disabled, this flag has no effect.
776The
777.Xr sysctl 8
778variable
779.Va net.inet6.ip6.no_radr
780controls whether this flag is set by default or not.
781.It Cm -no_radr
782Clear a flag
783.Cm no_radr .
784.It Cm auto_linklocal
785Set a flag to perform automatic link-local address configuration when
786the interface becomes available.
787The
788.Xr sysctl 8
789variable
790.Va net.inet6.ip6.auto_linklocal
791controls whether this flag is set by default or not.
792.It Cm -auto_linklocal
793Clear a flag
794.Cm auto_linklocal .
795.It Cm defaultif
796Set the specified interface as the default route when there is no
797default router.
798.It Cm -defaultif
799Clear a flag
800.Cm defaultif .
801.It Cm ifdisabled
802Set a flag to disable all of IPv6 network communications on the
803specified interface.
804Note that if there are already configured IPv6
805addresses on that interface, all of them are marked as
806.Dq tentative
807and DAD will be performed when this flag is cleared.
808.It Cm -ifdisabled
809Clear a flag
810.Cm ifdisabled .
811When this flag is cleared and
812.Cm auto_linklocal
813flag is enabled, automatic configuration of a link-local address is
814performed.
815.It Cm nud
816Set a flag to enable Neighbor Unreachability Detection.
817.It Cm -nud
818Clear a flag
819.Cm nud .
820.It Cm no_prefer_iface
821Set a flag to not honor rule 5 of source address selection in RFC 3484.
822In practice this means the address on the outgoing interface will not be
823preferred, effectively yielding the decision to the address selection
824policy table, configurable with
825.Xr ip6addrctl 8 .
826.It Cm -no_prefer_iface
827Clear a flag
828.Cm no_prefer_iface .
829.It Cm no_dad
830Set a flag to disable Duplicate Address Detection.
831.It Cm -no_dad
832Clear a flag
833.Cm no_dad .
834.El
835.Pp
836The following parameters are specific for IPv6 addresses.
837Note that the address family keyword
838.Dq Li inet6
839is needed for them:
840.Bl -tag -width indent
841.It Cm autoconf
842Set the IPv6 autoconfigured address bit.
843.It Fl autoconf
844Clear the IPv6 autoconfigured address bit.
845.It Cm deprecated
846Set the IPv6 deprecated address bit.
847.It Fl deprecated
848Clear the IPv6 deprecated address bit.
849.It Cm pltime Ar n
850Set preferred lifetime for the address.
851.It Cm prefer_source
852Set a flag to prefer address as a candidate of the source address for
853outgoing packets.
854.It Cm -prefer_source
855Clear a flag
856.Cm prefer_source .
857.It Cm vltime Ar n
858Set valid lifetime for the address.
859.El
860.Pp
861The following parameters are specific to cloning
862IEEE 802.11 wireless interfaces with the
863.Cm create
864request:
865.Bl -tag -width indent
866.It Cm wlandev Ar device
867Use
868.Ar device
869as the parent for the cloned device.
870.It Cm wlanmode Ar mode
871Specify the operating mode for this cloned device.
872.Ar mode
873is one of
874.Cm sta ,
875.Cm ahdemo
876(or
877.Cm adhoc-demo ) ,
878.Cm ibss
879(or
880.Cm adhoc ) ,
881.Cm ap
882(or
883.Cm hostap ) ,
884.Cm wds ,
885.Cm tdma ,
886.Cm mesh ,
887and
888.Cm monitor .
889The operating mode of a cloned interface cannot be changed.
890The
891.Cm tdma
892mode is actually implemented as an
893.Cm adhoc-demo
894interface with special properties.
895.It Cm wlanbssid Ar bssid
896The 802.11 mac address to use for the bssid.
897This must be specified at create time for a legacy
898.Cm wds
899device.
900.It Cm wlanaddr Ar address
901The local mac address.
902If this is not specified then a mac address will automatically be assigned
903to the cloned device.
904Typically this address is the same as the address of the parent device
905but if the
906.Cm bssid
907parameter is specified then the driver will craft a unique address for
908the device (if supported).
909.It Cm wdslegacy
910Mark a
911.Cm wds
912device as operating in ``legacy mode''.
913Legacy
914.Cm wds
915devices have a fixed peer relationship and do not, for example, roam
916if their peer stops communicating.
917For completeness a Dynamic WDS (DWDS) interface may marked as
918.Fl wdslegacy .
919.It Cm bssid
920Request a unique local mac address for the cloned device.
921This is only possible if the device supports multiple mac addresses.
922To force use of the parent's mac address use
923.Fl bssid .
924.It Cm beacons
925Mark the cloned interface as depending on hardware support to
926track received beacons.
927To have beacons tracked in software use
928.Fl beacons .
929For
930.Cm hostap
931mode
932.Fl beacons
933can also be used to indicate no beacons should
934be transmitted; this can be useful when creating a WDS configuration but
935.Cm wds
936interfaces can only be created as companions to an access point.
937.El
938.Pp
939The following parameters are specific to IEEE 802.11 wireless interfaces
940cloned with a
941.Cm create
942operation:
943.Bl -tag -width indent
944.It Cm ampdu
945Enable sending and receiving AMPDU frames when using 802.11n (default).
946The 802.11n specification states a compliant station must be capable
947of receiving AMPDU frames but transmission is optional.
948Use
949.Fl ampdu
950to disable all use of AMPDU with 802.11n.
951For testing and/or to work around interoperability problems one can use
952.Cm ampdutx
953and
954.Cm ampdurx
955to control use of AMPDU in one direction.
956.It Cm ampdudensity Ar density
957Set the AMPDU density parameter used when operating with 802.11n.
958This parameter controls the inter-packet gap for AMPDU frames.
959The sending device normally controls this setting but a receiving station
960may request wider gaps.
961Legal values for
962.Ar density
963are 0, .25, .5, 1, 2, 4, 8, and 16 (microseconds).
964A value of
965.Cm -
966is treated the same as 0.
967.It Cm ampdulimit Ar limit
968Set the limit on packet size for receiving AMPDU frames when operating
969with 802.11n.
970Legal values for
971.Ar limit
972are 8192, 16384, 32768, and 65536 but one can also specify
973just the unique prefix: 8, 16, 32, 64.
974Note the sender may limit the size of AMPDU frames to be less
975than the maximum specified by the receiving station.
976.It Cm amsdu
977Enable sending and receiving AMSDU frames when using 802.11n.
978By default AMSDU is received but not transmitted.
979Use
980.Fl amsdu
981to disable all use of AMSDU with 802.11n.
982For testing and/or to work around interoperability problems one can use
983.Cm amsdutx
984and
985.Cm amsdurx
986to control use of AMSDU in one direction.
987.It Cm amsdulimit Ar limit
988Set the limit on packet size for sending and receiving AMSDU frames
989when operating with 802.11n.
990Legal values for
991.Ar limit
992are 7935 and 3839 (bytes).
993Note the sender may limit the size of AMSDU frames to be less
994than the maximum specified by the receiving station.
995Note also that devices are not required to support the 7935 limit,
996only 3839 is required by the specification and the larger value
997may require more memory to be dedicated to support functionality
998that is rarely used.
999.It Cm apbridge
1000When operating as an access point, pass packets between
1001wireless clients directly (default).
1002To instead let them pass up through the
1003system and be forwarded using some other mechanism, use
1004.Fl apbridge .
1005Disabling the internal bridging
1006is useful when traffic is to be processed with
1007packet filtering.
1008.It Cm authmode Ar mode
1009Set the desired authentication mode in infrastructure mode.
1010Not all adapters support all modes.
1011The set of
1012valid modes is
1013.Cm none , open , shared
1014(shared key),
1015.Cm 8021x
1016(IEEE 802.1x),
1017and
1018.Cm wpa
1019(IEEE WPA/WPA2/802.11i).
1020The
1021.Cm 8021x
1022and
1023.Cm wpa
1024modes are only useful when using an authentication service
1025(a supplicant for client operation or an authenticator when
1026operating as an access point).
1027Modes are case insensitive.
1028.It Cm bgscan
1029Enable background scanning when operating as a station.
1030Background scanning is a technique whereby a station associated to
1031an access point will temporarily leave the channel to scan for
1032neighboring stations.
1033This allows a station to maintain a cache of nearby access points
1034so that roaming between access points can be done without
1035a lengthy scan operation.
1036Background scanning is done only when a station is not busy and
1037any outbound traffic will cancel a scan operation.
1038Background scanning should never cause packets to be lost though
1039there may be some small latency if outbound traffic interrupts a
1040scan operation.
1041By default background scanning is enabled if the device is capable.
1042To disable background scanning, use
1043.Fl bgscan .
1044Background scanning is controlled by the
1045.Cm bgscanidle
1046and
1047.Cm bgscanintvl
1048parameters.
1049Background scanning must be enabled for roaming; this is an artifact
1050of the current implementation and may not be required in the future.
1051.It Cm bgscanidle Ar idletime
1052Set the minimum time a station must be idle (not transmitting or
1053receiving frames) before a background scan is initiated.
1054The
1055.Ar idletime
1056parameter is specified in milliseconds.
1057By default a station must be idle at least 250 milliseconds before
1058a background scan is initiated.
1059The idle time may not be set to less than 100 milliseconds.
1060.It Cm bgscanintvl Ar interval
1061Set the interval at which background scanning is attempted.
1062The
1063.Ar interval
1064parameter is specified in seconds.
1065By default a background scan is considered every 300 seconds (5 minutes).
1066The
1067.Ar interval
1068may not be set to less than 15 seconds.
1069.It Cm bintval Ar interval
1070Set the interval at which beacon frames are sent when operating in
1071ad-hoc or ap mode.
1072The
1073.Ar interval
1074parameter is specified in TU's (1024 usecs).
1075By default beacon frames are transmitted every 100 TU's.
1076.It Cm bmissthreshold Ar count
1077Set the number of consecutive missed beacons at which the station
1078will attempt to roam (i.e., search for a new access point).
1079The
1080.Ar count
1081parameter must be in the range 1 to 255; though the
1082upper bound may be reduced according to device capabilities.
1083The default threshold is 7 consecutive missed beacons; but
1084this may be overridden by the device driver.
1085Another name for the
1086.Cm bmissthreshold
1087parameter is
1088.Cm bmiss .
1089.It Cm bssid Ar address
1090Specify the MAC address of the access point to use when operating
1091as a station in a BSS network.
1092This overrides any automatic selection done by the system.
1093To disable a previously selected access point, supply
1094.Cm any , none ,
1095or
1096.Cm -
1097for the address.
1098This option is useful when more than one access point uses the same SSID.
1099Another name for the
1100.Cm bssid
1101parameter is
1102.Cm ap .
1103.It Cm burst
1104Enable packet bursting.
1105Packet bursting is a transmission technique whereby the wireless
1106medium is acquired once to send multiple frames and the interframe
1107spacing is reduced.
1108This technique can significantly increase throughput by reducing
1109transmission overhead.
1110Packet bursting is supported by the 802.11e QoS specification
1111and some devices that do not support QoS may still be capable.
1112By default packet bursting is enabled if a device is capable
1113of doing it.
1114To disable packet bursting, use
1115.Fl burst .
1116.It Cm chanlist Ar channels
1117Set the desired channels to use when scanning for access
1118points, neighbors in an IBSS network, or looking for unoccupied
1119channels when operating as an access point.
1120The set of channels is specified as a comma-separated list with
1121each element in the list representing either a single channel number or a range
1122of the form
1123.Dq Li a-b .
1124Channel numbers must be in the range 1 to 255 and be permissible
1125according to the operating characteristics of the device.
1126.It Cm channel Ar number
1127Set a single desired channel.
1128Channels range from 1 to 255, but the exact selection available
1129depends on the region your adaptor was manufactured for.
1130Setting
1131the channel to
1132.Li any ,
1133or
1134.Cm -
1135will clear any desired channel and, if the device is marked up,
1136force a scan for a channel to operate on.
1137Alternatively the frequency, in megahertz, may be specified
1138instead of the channel number.
1139.Pp
1140When there are several ways to use a channel the channel
1141number/frequency may be appended with attributes to clarify.
1142For example, if a device is capable of operating on channel 6
1143with 802.11n and 802.11g then one can specify that g-only use
1144should be used by specifying ``6:g''.
1145Similarly the channel width can be specified by appending it
1146with ``/''; e.g., ``6/40'' specifies a 40MHz wide channel,
1147These attributes can be combined as in: ``6:ht/40''.
1148The full set of flags specified following a ``:'' are:
1149.Cm a
1150(802.11a),
1151.Cm b
1152(802.11b),
1153.Cm d
1154(Atheros Dynamic Turbo mode),
1155.Cm g
1156(802.11g),
1157.Cm h
1158or
1159.Cm n
1160(802.11n aka HT),
1161.Cm s
1162(Atheros Static Turbo mode),
1163and
1164.Cm t
1165(Atheros Dynamic Turbo mode, or appended to ``st'' and ``dt'').
1166The full set of channel widths following a '/' are:
1167.Cm 5
1168(5MHz aka quarter-rate channel),
1169.Cm 10
1170(10MHz aka half-rate channel),
1171.Cm 20
1172(20MHz mostly for use in specifying ht20),
1173and
1174.Cm 40
1175(40MHz mostly for use in specifying ht40).
1176In addition,
1177a 40MHz HT channel specification may include the location
1178of the extension channel by appending ``+'' or ``-'' for above and below,
1179respectively; e.g., ``2437:ht/40+'' specifies 40MHz wide HT operation
1180with the center channel at frequency 2437 and the extension channel above.
1181.It Cm country Ar name
1182Set the country code to use in calculating the regulatory constraints
1183for operation.
1184In particular the set of available channels, how the wireless device
1185will operation on the channels, and the maximum transmit power that
1186can be used on a channel are defined by this setting.
1187Country/Region codes are specified as a 2-character abbreviation
1188defined by ISO 3166 or using a longer, but possibly ambiguous, spelling;
1189e.g., "ES" and "Spain".
1190The set of country codes are taken from
1191.Pa /etc/regdomain.xml
1192and can also
1193be viewed with the ``list countries'' request.
1194Note that not all devices support changing the country code from a default
1195setting; typically stored in EEPROM.
1196See also
1197.Cm regdomain ,
1198.Cm indoor ,
1199.Cm outdoor ,
1200and
1201.Cm anywhere .
1202.It Cm dfs
1203Enable Dynamic Frequency Selection (DFS) as specified in 802.11h.
1204DFS embodies several facilities including detection of overlapping
1205radar signals, dynamic transmit power control, and channel selection
1206according to a least-congested criteria.
1207DFS support is mandatory for some 5GHz frequencies in certain
1208locales (e.g., ETSI).
1209By default DFS is enabled according to the regulatory definitions
1210specified in
1211.Pa /etc/regdomain.xml
1212and the current country code, regdomain,
1213and channel.
1214Note the underlying device (and driver) must support radar detection
1215for full DFS support to work.
1216To be fully compliant with the local regulatory agency frequencies that
1217require DFS should not be used unless it is fully supported.
1218Use
1219.Fl dfs
1220to disable this functionality for testing.
1221.It Cm dotd
1222Enable support for the 802.11d specification (default).
1223When this support is enabled in station mode, beacon frames that advertise
1224a country code different than the currently configured country code will
1225cause an event to be dispatched to user applications.
1226This event can be used by the station to adopt that country code and
1227operate according to the associated regulatory constraints.
1228When operating as an access point with 802.11d enabled the beacon and
1229probe response frames transmitted will advertise the current regulatory
1230domain settings.
1231To disable 802.11d use
1232.Fl dotd .
1233.It Cm doth
1234Enable 802.11h support including spectrum management.
1235When 802.11h is enabled beacon and probe response frames will have
1236the SpectrumMgt bit set in the capabilities field and
1237country and power constraint information elements will be present.
1238802.11h support also includes handling Channel Switch Announcements (CSA)
1239which are a mechanism to coordinate channel changes by an access point.
1240By default 802.11h is enabled if the device is capable.
1241To disable 802.11h use
1242.Fl doth .
1243.It Cm deftxkey Ar index
1244Set the default key to use for transmission.
1245Typically this is only set when using WEP encryption.
1246Note that you must set a default transmit key
1247for the system to know which key to use in encrypting outbound traffic.
1248The
1249.Cm weptxkey
1250is an alias for this request; it is provided for backwards compatibility.
1251.It Cm dtimperiod Ar period
1252Set the
1253DTIM
1254period for transmitting buffered multicast data frames when
1255operating in ap mode.
1256The
1257.Ar period
1258specifies the number of beacon intervals between DTIM
1259and must be in the range 1 to 15.
1260By default DTIM is 1 (i.e., DTIM occurs at each beacon).
1261.It Cm quiet
1262Enable the use of quiet IE.
1263Hostap will use this to silence other
1264stations to reduce interference for radar detection when
1265operating on 5GHz frequency and doth support is enabled.
1266Use
1267.Fl quiet
1268to disable this functionality.
1269.It Cm quiet_period Ar period
1270Set the QUIET
1271.Ar period
1272to the number of beacon intervals between the start of regularly
1273scheduled quiet intervals defined by Quiet element.
1274.It Cm quiet_count Ar count
1275Set the QUIET
1276.Ar count
1277to the number of TBTTs until the beacon interval during which the
1278next quiet interval shall start.
1279A value of 1 indicates the quiet
1280interval will start during the beacon interval starting at the next
1281TBTT.
1282A value 0 is reserved.
1283.It Cm quiet_offset Ar offset
1284Set the QUIET
1285.Ar offset
1286to the offset of the start of the quiet interval from the TBTT
1287specified by the Quiet count, expressed in TUs.
1288The value of the
1289.Ar offset
1290shall be less than one beacon interval.
1291.It Cm quiet_duration Ar dur
1292Set the QUIET
1293.Ar dur
1294to the duration of the Quiet interval, expressed in TUs.
1295The value should be less than beacon interval.
1296.It Cm dturbo
1297Enable the use of Atheros Dynamic Turbo mode when communicating with
1298another Dynamic Turbo-capable station.
1299Dynamic Turbo mode is an Atheros-specific mechanism by which
1300stations switch between normal 802.11 operation and a ``boosted''
1301mode in which a 40MHz wide channel is used for communication.
1302Stations using Dynamic Turbo mode operate boosted only when the
1303channel is free of non-dturbo stations; when a non-dturbo station
1304is identified on the channel all stations will automatically drop
1305back to normal operation.
1306By default, Dynamic Turbo mode is not enabled, even if the device is capable.
1307Note that turbo mode (dynamic or static) is only allowed on some
1308channels depending on the regulatory constraints; use the
1309.Cm list chan
1310command to identify the channels where turbo mode may be used.
1311To disable Dynamic Turbo mode use
1312.Fl dturbo .
1313.It Cm dwds
1314Enable Dynamic WDS (DWDS) support.
1315DWDS is a facility by which 4-address traffic can be carried between
1316stations operating in infrastructure mode.
1317A station first associates to an access point and authenticates using
1318normal procedures (e.g., WPA).
1319Then 4-address frames are passed to carry traffic for stations
1320operating on either side of the wireless link.
1321DWDS extends the normal WDS mechanism by leveraging existing security
1322protocols and eliminating static binding.
1323.Pp
1324When DWDS is enabled on an access point 4-address frames received from
1325an authorized station will generate a ``DWDS discovery'' event to user
1326applications.
1327This event should be used to create a WDS interface that is bound
1328to the remote station (and usually plumbed into a bridge).
1329Once the WDS interface is up and running 4-address traffic then logically
1330flows through that interface.
1331.Pp
1332When DWDS is enabled on a station, traffic with a destination address
1333different from the peer station are encapsulated in a 4-address frame
1334and transmitted to the peer.
1335All 4-address traffic uses the security information of the stations
1336(e.g., cryptographic keys).
1337A station is associated using 802.11n facilities may transport
13384-address traffic using these same mechanisms; this depends on available
1339resources and capabilities of the device.
1340The DWDS implementation guards against layer 2 routing loops of
1341multicast traffic.
1342.It Cm ff
1343Enable the use of Atheros Fast Frames when communicating with
1344another Fast Frames-capable station.
1345Fast Frames are an encapsulation technique by which two 802.3
1346frames are transmitted in a single 802.11 frame.
1347This can noticeably improve throughput but requires that the
1348receiving station understand how to decapsulate the frame.
1349Fast frame use is negotiated using the Atheros 802.11 vendor-specific
1350protocol extension so enabling use is safe when communicating with
1351non-Atheros devices.
1352By default, use of fast frames is enabled if the device is capable.
1353To explicitly disable fast frames, use
1354.Fl ff .
1355.It Cm fragthreshold Ar length
1356Set the threshold for which transmitted frames are broken into fragments.
1357The
1358.Ar length
1359argument is the frame size in bytes and must be in the range 256 to 2346.
1360Setting
1361.Ar length
1362to
1363.Li 2346 ,
1364.Cm any ,
1365or
1366.Cm -
1367disables transmit fragmentation.
1368Not all adapters honor the fragmentation threshold.
1369.It Cm hidessid
1370When operating as an access point, do not broadcast the SSID
1371in beacon frames or respond to probe request frames unless
1372they are directed to the ap (i.e., they include the ap's SSID).
1373By default, the SSID is included in beacon frames and
1374undirected probe request frames are answered.
1375To re-enable the broadcast of the SSID etc., use
1376.Fl hidessid .
1377.It Cm ht
1378Enable use of High Throughput (HT) when using 802.11n (default).
1379The 802.11n specification includes mechanisms for operation
1380on 20MHz and 40MHz wide channels using different signalling mechanisms
1381than specified in 802.11b, 802.11g, and 802.11a.
1382Stations negotiate use of these facilities, termed HT20 and HT40,
1383when they associate.
1384To disable all use of 802.11n use
1385.Fl ht .
1386To disable use of HT20 (e.g., to force only HT40 use) use
1387.Fl ht20 .
1388To disable use of HT40 use
1389.Fl ht40 .
1390.Pp
1391HT configuration is used to ``auto promote'' operation
1392when several choices are available.
1393For example, if a station associates to an 11n-capable access point
1394it controls whether the station uses legacy operation, HT20, or HT40.
1395When an 11n-capable device is setup as an access point and
1396Auto Channel Selection is used to locate a channel to operate on,
1397HT configuration controls whether legacy, HT20, or HT40 operation is setup
1398on the selected channel.
1399If a fixed channel is specified for a station then HT configuration can
1400be given as part of the channel specification; e.g., 6:ht/20 to setup
1401HT20 operation on channel 6.
1402.It Cm htcompat
1403Enable use of compatibility support for pre-802.11n devices (default).
1404The 802.11n protocol specification went through several incompatible iterations.
1405Some vendors implemented 11n support to older specifications that
1406will not interoperate with a purely 11n-compliant station.
1407In particular the information elements included in management frames
1408for old devices are different.
1409When compatibility support is enabled both standard and compatible data
1410will be provided.
1411Stations that associate using the compatibility mechanisms are flagged
1412in ``list sta''.
1413To disable compatibility support use
1414.Fl htcompat .
1415.It Cm htprotmode Ar technique
1416For interfaces operating in 802.11n, use the specified
1417.Ar technique
1418for protecting HT frames in a mixed legacy/HT network.
1419The set of valid techniques is
1420.Cm off ,
1421and
1422.Cm rts
1423(RTS/CTS, default).
1424Technique names are case insensitive.
1425.It Cm inact
1426Enable inactivity processing for stations associated to an
1427access point (default).
1428When operating as an access point the 802.11 layer monitors
1429the activity of each associated station.
1430When a station is inactive for 5 minutes it will send several
1431``probe frames'' to see if the station is still present.
1432If no response is received then the station is deauthenticated.
1433Applications that prefer to handle this work can disable this
1434facility by using
1435.Fl inact .
1436.It Cm indoor
1437Set the location to use in calculating regulatory constraints.
1438The location is also advertised in beacon and probe response frames
1439when 802.11d is enabled with
1440.Cm dotd .
1441See also
1442.Cm outdoor ,
1443.Cm anywhere ,
1444.Cm country ,
1445and
1446.Cm regdomain .
1447.It Cm list active
1448Display the list of channels available for use taking into account
1449any restrictions set with the
1450.Cm chanlist
1451directive.
1452See the description of
1453.Cm list chan
1454for more information.
1455.It Cm list caps
1456Display the adaptor's capabilities, including the operating
1457modes supported.
1458.It Cm list chan
1459Display the list of channels available for use.
1460Channels are shown with their IEEE channel number, equivalent
1461frequency, and usage modes.
1462Channels identified as
1463.Ql 11g
1464are also usable in
1465.Ql 11b
1466mode.
1467Channels identified as
1468.Ql 11a Turbo
1469may be used only for Atheros' Static Turbo mode
1470(specified with
1471. Cm mediaopt turbo ) .
1472Channels marked with a
1473.Ql *
1474have a regulatory constraint that they be passively scanned.
1475This means a station is not permitted to transmit on the channel until
1476it identifies the channel is being used for 802.11 communication;
1477typically by hearing a beacon frame from an access point operating
1478on the channel.
1479.Cm list freq
1480is another way of requesting this information.
1481By default a compacted list of channels is displayed; if the
1482.Fl v
1483option is specified then all channels are shown.
1484.It Cm list countries
1485Display the set of country codes and regulatory domains that can be
1486used in regulatory configuration.
1487.It Cm list mac
1488Display the current MAC Access Control List state.
1489Each address is prefixed with a character that indicates the
1490current policy applied to it:
1491.Ql +
1492indicates the address is allowed access,
1493.Ql -
1494indicates the address is denied access,
1495.Ql *
1496indicates the address is present but the current policy open
1497(so the ACL is not consulted).
1498.It Cm list mesh
1499Displays the mesh routing table, used for forwarding packets on a mesh
1500network.
1501.It Cm list regdomain
1502Display the current regulatory settings including the available channels
1503and transmit power caps.
1504.It Cm list roam
1505Display the parameters that govern roaming operation.
1506.It Cm list txparam
1507Display the parameters that govern transmit operation.
1508.It Cm list txpower
1509Display the transmit power caps for each channel.
1510.It Cm list scan
1511Display the access points and/or ad-hoc neighbors
1512located in the vicinity.
1513This information may be updated automatically by the adapter
1514with a
1515.Cm scan
1516request or through background scanning.
1517Depending on the capabilities of the stations the following
1518flags (capability codes) can be included in the output:
1519.Bl -tag -width 3n
1520.It Li A
1521Channel agility.
1522.It Li B
1523PBCC modulation.
1524.It Li C
1525Poll request capability.
1526.It Li D
1527DSSS/OFDM capability.
1528.It Li E
1529Extended Service Set (ESS).
1530Indicates that the station is part of an infrastructure network
1531rather than an IBSS/ad-hoc network.
1532.It Li I
1533Independent Basic Service Set (IBSS).
1534Indicates that the station is part of an ad-hoc network
1535rather than an ESS network.
1536.It Li P
1537Privacy capability.
1538The station requires authentication and encryption
1539for all data frames exchanged within the BSS using cryptographic means
1540such as WEP, TKIP, or AES-CCMP.
1541.It Li R
1542Robust Secure Network (RSN).
1543.It Li S
1544Short Preamble.
1545Indicates that the network is using short preambles,
1546defined in 802.11b High Rate/DSSS PHY,
1547and utilizes a 56 bit sync field
1548rather than the 128 bit field used in long preamble mode.
1549Short preambles are used to optionally
1550improve throughput performance with 802.11g and 802.11b.
1551.It Li c
1552Pollable capability.
1553.It Li s
1554Short slot time capability.
1555Indicates that the 802.11g network is using a short slot time
1556because there are no legacy (802.11b) stations present.
1557.El
1558.Pp
1559By default interesting information elements captured from the neighboring
1560stations are displayed at the end of each row.
1561Possible elements include:
1562.Cm WME
1563(station supports WME),
1564.Cm WPA
1565(station supports WPA),
1566.Cm WPS
1567(station supports WPS),
1568.Cm RSN
1569(station supports 802.11i/RSN),
1570.Cm HTCAP
1571(station supports 802.11n/HT communication),
1572.Cm ATH
1573(station supports Atheros protocol extensions),
1574.Cm VEN
1575(station supports unknown vendor-specific extensions).
1576If the
1577.Fl v
1578flag is used all the information elements and their
1579contents will be shown.
1580Specifying the
1581.Fl v
1582flag also enables display of long SSIDs.
1583The
1584.Cm list ap
1585command is another way of requesting this information.
1586.It Cm list sta
1587When operating as an access point display the stations that are
1588currently associated.
1589When operating in ad-hoc mode display stations identified as
1590neighbors in the IBSS.
1591When operating in mesh mode display stations identified as
1592neighbors in the MBSS.
1593When operating in station mode display the access point.
1594Capabilities advertised by the stations are described under
1595the
1596.Cm scan
1597request.
1598The following flags can be included in the output:
1599.Bl -tag -width 3n
1600.It Li A
1601Authorized.
1602Indicates that the station is permitted to send/receive data frames.
1603.It Li E
1604Extended Rate Phy (ERP).
1605Indicates that the station is operating in an 802.11g network
1606using extended transmit rates.
1607.It Li H
1608High Throughput (HT).
1609Indicates that the station is using HT transmit rates.
1610If a
1611.Sq Li +
1612follows immediately after then the station associated
1613using deprecated mechanisms supported only when
1614.Cm htcompat
1615is enabled.
1616.It Li P
1617Power Save.
1618Indicates that the station is operating in power save mode.
1619.It Li Q
1620Quality of Service (QoS).
1621Indicates that the station is using QoS encapsulation for
1622data frame.
1623QoS encapsulation is enabled only when WME mode is enabled.
1624.It Li S
1625Short GI in HT 40MHz mode enabled.
1626If a
1627.Sq Li +
1628follows immediately after then short GI in HT 20MHz mode is enabled as well.
1629.It Li T
1630Transitional Security Network (TSN).
1631Indicates that the station associated using TSN; see also
1632.Cm tsn
1633below.
1634.It Li W
1635Wi-Fi Protected Setup (WPS).
1636Indicates that the station associated using WPS.
1637.It Li s
1638Short GI in HT 20MHz mode enabled.
1639.El
1640.Pp
1641By default information elements received from associated stations
1642are displayed in a short form; the
1643.Fl v
1644flag causes this information to be displayed symbolically.
1645.It Cm list wme
1646Display the current channel parameters to use when operating in WME mode.
1647If the
1648.Fl v
1649option is specified then both channel and BSS parameters are displayed
1650for each AC (first channel, then BSS).
1651When WME mode is enabled for an adaptor this information will be
1652displayed with the regular status; this command is mostly useful
1653for examining parameters when WME mode is disabled.
1654See the description of the
1655.Cm wme
1656directive for information on the various parameters.
1657.It Cm maxretry Ar count
1658Set the maximum number of tries to use in sending unicast frames.
1659The default setting is 6 but drivers may override this with a value
1660they choose.
1661.It Cm mcastrate Ar rate
1662Set the rate for transmitting multicast/broadcast frames.
1663Rates are specified as megabits/second in decimal; e.g.,\& 5.5 for 5.5 Mb/s.
1664This rate should be valid for the current operating conditions;
1665if an invalid rate is specified drivers are free to chose an
1666appropriate rate.
1667.It Cm mgtrate Ar rate
1668Set the rate for transmitting management and/or control frames.
1669Rates are specified as megabits/second in decimal; e.g.,\& 5.5 for 5.5 Mb/s.
1670.It Cm outdoor
1671Set the location to use in calculating regulatory constraints.
1672The location is also advertised in beacon and probe response frames
1673when 802.11d is enabled with
1674.Cm dotd .
1675See also
1676.Cm anywhere ,
1677.Cm country ,
1678.Cm indoor ,
1679and
1680.Cm regdomain .
1681.It Cm powersave
1682Enable powersave operation.
1683When operating as a client, the station will conserve power by
1684periodically turning off the radio and listening for
1685messages from the access point telling it there are packets waiting.
1686The station must then retrieve the packets.
1687Not all devices support power save operation as a client.
1688The 802.11 specification requires that all access points support
1689power save but some drivers do not.
1690Use
1691.Fl powersave
1692to disable powersave operation when operating as a client.
1693.It Cm powersavesleep Ar sleep
1694Set the desired max powersave sleep time in TU's (1024 usecs).
1695By default the max powersave sleep time is 100 TU's.
1696.It Cm protmode Ar technique
1697For interfaces operating in 802.11g, use the specified
1698.Ar technique
1699for protecting OFDM frames in a mixed 11b/11g network.
1700The set of valid techniques is
1701.Cm off , cts
1702(CTS to self),
1703and
1704.Cm rtscts
1705(RTS/CTS).
1706Technique names are case insensitive.
1707Not all devices support
1708.Cm cts
1709as a protection technique.
1710.It Cm pureg
1711When operating as an access point in 802.11g mode allow only
171211g-capable stations to associate (11b-only stations are not
1713permitted to associate).
1714To allow both 11g and 11b-only stations to associate, use
1715.Fl pureg .
1716.It Cm puren
1717When operating as an access point in 802.11n mode allow only
1718HT-capable stations to associate (legacy stations are not
1719permitted to associate).
1720To allow both HT and legacy stations to associate, use
1721.Fl puren .
1722.It Cm regdomain Ar sku
1723Set the regulatory domain to use in calculating the regulatory constraints
1724for operation.
1725In particular the set of available channels, how the wireless device
1726will operation on the channels, and the maximum transmit power that
1727can be used on a channel are defined by this setting.
1728Regdomain codes (SKU's) are taken from
1729.Pa /etc/regdomain.xml
1730and can also
1731be viewed with the ``list countries'' request.
1732Note that not all devices support changing the regdomain from a default
1733setting; typically stored in EEPROM.
1734See also
1735.Cm country ,
1736.Cm indoor ,
1737.Cm outdoor ,
1738and
1739.Cm anywhere .
1740.It Cm rifs
1741Enable use of Reduced InterFrame Spacing (RIFS) when operating in 802.11n
1742on an HT channel.
1743Note that RIFS must be supported by both the station and access point
1744for it to be used.
1745To disable RIFS use
1746.Fl rifs .
1747.It Cm roam:rate Ar rate
1748Set the threshold for controlling roaming when operating in a BSS.
1749The
1750.Ar rate
1751parameter specifies the transmit rate in megabits
1752at which roaming should be considered.
1753If the current transmit rate drops below this setting and background scanning
1754is enabled, then the system will check if a more desirable access point is
1755available and switch over to it.
1756The current scan cache contents are used if they are considered
1757valid according to the
1758.Cm scanvalid
1759parameter; otherwise a background scan operation is triggered before
1760any selection occurs.
1761Each channel type has a separate rate threshold; the default values are:
176212 Mb/s (11a), 2 Mb/s (11b), 2 Mb/s (11g), MCS 1 (11na, 11ng).
1763.It Cm roam:rssi Ar rssi
1764Set the threshold for controlling roaming when operating in a BSS.
1765The
1766.Ar rssi
1767parameter specifies the receive signal strength in dBm units
1768at which roaming should be considered.
1769If the current rssi drops below this setting and background scanning
1770is enabled, then the system will check if a more desirable access point is
1771available and switch over to it.
1772The current scan cache contents are used if they are considered
1773valid according to the
1774.Cm scanvalid
1775parameter; otherwise a background scan operation is triggered before
1776any selection occurs.
1777Each channel type has a separate rssi threshold; the default values are
1778all 7 dBm.
1779.It Cm roaming Ar mode
1780When operating as a station, control how the system will
1781behave when communication with the current access point
1782is broken.
1783The
1784.Ar mode
1785argument may be one of
1786.Cm device
1787(leave it to the hardware device to decide),
1788.Cm auto
1789(handle either in the device or the operating system\[em]as appropriate),
1790.Cm manual
1791(do nothing until explicitly instructed).
1792By default, the device is left to handle this if it is
1793capable; otherwise, the operating system will automatically
1794attempt to reestablish communication.
1795Manual mode is used by applications such as
1796.Xr wpa_supplicant 8
1797that want to control the selection of an access point.
1798.It Cm rtsthreshold Ar length
1799Set the threshold for which
1800transmitted frames are preceded by transmission of an
1801RTS
1802control frame.
1803The
1804.Ar length
1805argument
1806is the frame size in bytes and must be in the range 1 to 2346.
1807Setting
1808.Ar length
1809to
1810.Li 2346 ,
1811.Cm any ,
1812or
1813.Cm -
1814disables transmission of RTS frames.
1815Not all adapters support setting the RTS threshold.
1816.It Cm scan
1817Initiate a scan of neighboring stations, wait for it to complete, and
1818display all stations found.
1819Only the super-user can initiate a scan.
1820See
1821.Cm list scan
1822for information on the display.
1823By default a background scan is done; otherwise a foreground
1824scan is done and the station may roam to a different access point.
1825The
1826.Cm list scan
1827request can be used to show recent scan results without
1828initiating a new scan.
1829.It Cm scanvalid Ar threshold
1830Set the maximum time the scan cache contents are considered valid;
1831i.e., will be used without first triggering a scan operation to
1832refresh the data.
1833The
1834.Ar threshold
1835parameter is specified in seconds and defaults to 60 seconds.
1836The minimum setting for
1837.Ar threshold
1838is 10 seconds.
1839One should take care setting this threshold; if it is set too low
1840then attempts to roam to another access point may trigger unnecessary
1841background scan operations.
1842.It Cm shortgi
1843Enable use of Short Guard Interval when operating in 802.11n
1844on an HT channel.
1845NB: this currently enables Short GI on both HT40 and HT20 channels.
1846To disable Short GI use
1847.Fl shortgi .
1848.It Cm smps
1849Enable use of Static Spatial Multiplexing Power Save (SMPS)
1850when operating in 802.11n.
1851A station operating with Static SMPS maintains only a single
1852receive chain active (this can significantly reduce power consumption).
1853To disable SMPS use
1854.Fl smps .
1855.It Cm smpsdyn
1856Enable use of Dynamic Spatial Multiplexing Power Save (SMPS)
1857when operating in 802.11n.
1858A station operating with Dynamic SMPS maintains only a single
1859receive chain active but switches to multiple receive chains when it
1860receives an RTS frame (this can significantly reduce power consumption).
1861Note that stations cannot distinguish between RTS/CTS intended to
1862enable multiple receive chains and those used for other purposes.
1863To disable SMPS use
1864.Fl smps .
1865.It Cm ssid Ar ssid
1866Set the desired Service Set Identifier (aka network name).
1867The SSID is a string up to 32 characters
1868in length and may be specified as either a normal string or in
1869hexadecimal when preceded by
1870.Ql 0x .
1871Additionally, the SSID may be cleared by setting it to
1872.Ql - .
1873.It Cm tdmaslot Ar slot
1874When operating with TDMA, use the specified
1875.Ar slot
1876configuration.
1877The
1878.Ar slot
1879is a number between 0 and the maximum number of slots in the BSS.
1880Note that a station configured as slot 0 is a master and
1881will broadcast beacon frames advertising the BSS;
1882stations configured to use other slots will always
1883scan to locate a master before they ever transmit.
1884By default
1885.Cm tdmaslot
1886is set to 1.
1887.It Cm tdmaslotcnt Ar cnt
1888When operating with TDMA, setup a BSS with
1889.Ar cnt
1890slots.
1891The slot count may be at most 8.
1892The current implementation is only tested with two stations
1893(i.e., point to point applications).
1894This setting is only meaningful when a station is configured as slot 0;
1895other stations adopt this setting from the BSS they join.
1896By default
1897.Cm tdmaslotcnt
1898is set to 2.
1899.It Cm tdmaslotlen Ar len
1900When operating with TDMA, setup a BSS such that each station has a slot
1901.Ar len
1902microseconds long.
1903The slot length must be at least 150 microseconds (1/8 TU)
1904and no more than 65 milliseconds.
1905Note that setting too small a slot length may result in poor channel
1906bandwidth utilization due to factors such as timer granularity and
1907guard time.
1908This setting is only meaningful when a station is configured as slot 0;
1909other stations adopt this setting from the BSS they join.
1910By default
1911.Cm tdmaslotlen
1912is set to 10 milliseconds.
1913.It Cm tdmabintval Ar intval
1914When operating with TDMA, setup a BSS such that beacons are transmitted every
1915.Ar intval
1916superframes to synchronize the TDMA slot timing.
1917A superframe is defined as the number of slots times the slot length; e.g.,
1918a BSS with two slots of 10 milliseconds has a 20 millisecond superframe.
1919The beacon interval may not be zero.
1920A lower setting of
1921.Cm tdmabintval
1922causes the timers to be resynchronized more often; this can be help if
1923significant timer drift is observed.
1924By default
1925.Cm tdmabintval
1926is set to 5.
1927.It Cm tsn
1928When operating as an access point with WPA/802.11i allow legacy
1929stations to associate using static key WEP and open authentication.
1930To disallow legacy station use of WEP, use
1931.Fl tsn .
1932.It Cm txpower Ar power
1933Set the power used to transmit frames.
1934The
1935.Ar power
1936argument is specified in .5 dBm units.
1937Out of range values are truncated.
1938Typically only a few discreet power settings are available and
1939the driver will use the setting closest to the specified value.
1940Not all adapters support changing the transmit power.
1941.It Cm ucastrate Ar rate
1942Set a fixed rate for transmitting unicast frames.
1943Rates are specified as megabits/second in decimal; e.g.,\& 5.5 for 5.5 Mb/s.
1944This rate should be valid for the current operating conditions;
1945if an invalid rate is specified drivers are free to chose an
1946appropriate rate.
1947.It Cm wepmode Ar mode
1948Set the desired WEP mode.
1949Not all adapters support all modes.
1950The set of valid modes is
1951.Cm off , on ,
1952and
1953.Cm mixed .
1954The
1955.Cm mixed
1956mode explicitly tells the adaptor to allow association with access
1957points which allow both encrypted and unencrypted traffic.
1958On these adapters,
1959.Cm on
1960means that the access point must only allow encrypted connections.
1961On other adapters,
1962.Cm on
1963is generally another name for
1964.Cm mixed .
1965Modes are case insensitive.
1966.It Cm weptxkey Ar index
1967Set the WEP key to be used for transmission.
1968This is the same as setting the default transmission key with
1969.Cm deftxkey .
1970.It Cm wepkey Ar key Ns | Ns Ar index : Ns Ar key
1971Set the selected WEP key.
1972If an
1973.Ar index
1974is not given, key 1 is set.
1975A WEP key will be either 5 or 13
1976characters (40 or 104 bits) depending on the local network and the
1977capabilities of the adaptor.
1978It may be specified either as a plain
1979string or as a string of hexadecimal digits preceded by
1980.Ql 0x .
1981For maximum portability, hex keys are recommended;
1982the mapping of text keys to WEP encryption is usually driver-specific.
1983In particular, the Windows drivers do this mapping differently to
1984.Fx .
1985A key may be cleared by setting it to
1986.Ql - .
1987If WEP is supported then there are at least four keys.
1988Some adapters support more than four keys.
1989If that is the case, then the first four keys
1990(1-4) will be the standard temporary keys and any others will be adaptor
1991specific keys such as permanent keys stored in NVRAM.
1992.Pp
1993Note that you must set a default transmit key with
1994.Cm deftxkey
1995for the system to know which key to use in encrypting outbound traffic.
1996.It Cm wme
1997Enable Wireless Multimedia Extensions (WME) support, if available,
1998for the specified interface.
1999WME is a subset of the IEEE 802.11e standard to support the
2000efficient communication of realtime and multimedia data.
2001To disable WME support, use
2002.Fl wme .
2003Another name for this parameter is
2004.Cm wmm .
2005.Pp
2006The following parameters are meaningful only when WME support is in use.
2007Parameters are specified per-AC (Access Category) and
2008split into those that are used by a station when acting
2009as an access point and those for client stations in the BSS.
2010The latter are received from the access point and may not be changed
2011(at the station).
2012The following Access Categories are recognized:
2013.Pp
2014.Bl -tag -width ".Cm AC_BK" -compact
2015.It Cm AC_BE
2016(or
2017.Cm BE )
2018best effort delivery,
2019.It Cm AC_BK
2020(or
2021.Cm BK )
2022background traffic,
2023.It Cm AC_VI
2024(or
2025.Cm VI )
2026video traffic,
2027.It Cm AC_VO
2028(or
2029.Cm VO )
2030voice traffic.
2031.El
2032.Pp
2033AC parameters are case-insensitive.
2034Traffic classification is done in the operating system using the
2035vlan priority associated with data frames or the
2036ToS (Type of Service) indication in IP-encapsulated frames.
2037If neither information is present, traffic is assigned to the
2038Best Effort (BE) category.
2039.Bl -tag -width indent
2040.It Cm ack Ar ac
2041Set the ACK policy for QoS transmissions by the local station;
2042this controls whether or not data frames transmitted by a station
2043require an ACK response from the receiving station.
2044To disable waiting for an ACK use
2045.Fl ack .
2046This parameter is applied only to the local station.
2047.It Cm acm Ar ac
2048Enable the Admission Control Mandatory (ACM) mechanism
2049for transmissions by the local station.
2050To disable the ACM use
2051.Fl acm .
2052On stations in a BSS this parameter is read-only and indicates
2053the setting received from the access point.
2054NB: ACM is not supported right now.
2055.It Cm aifs Ar ac Ar count
2056Set the Arbitration Inter Frame Spacing (AIFS)
2057channel access parameter to use for transmissions
2058by the local station.
2059On stations in a BSS this parameter is read-only and indicates
2060the setting received from the access point.
2061.It Cm cwmin Ar ac Ar count
2062Set the CWmin channel access parameter to use for transmissions
2063by the local station.
2064On stations in a BSS this parameter is read-only and indicates
2065the setting received from the access point.
2066.It Cm cwmax Ar ac Ar count
2067Set the CWmax channel access parameter to use for transmissions
2068by the local station.
2069On stations in a BSS this parameter is read-only and indicates
2070the setting received from the access point.
2071.It Cm txoplimit Ar ac Ar limit
2072Set the Transmission Opportunity Limit channel access parameter
2073to use for transmissions by the local station.
2074This parameter defines an interval of time when a WME station
2075has the right to initiate transmissions onto the wireless medium.
2076On stations in a BSS this parameter is read-only and indicates
2077the setting received from the access point.
2078.It Cm bss:aifs Ar ac Ar count
2079Set the AIFS channel access parameter to send to stations in a BSS.
2080This parameter is meaningful only when operating in ap mode.
2081.It Cm bss:cwmin Ar ac Ar count
2082Set the CWmin channel access parameter to send to stations in a BSS.
2083This parameter is meaningful only when operating in ap mode.
2084.It Cm bss:cwmax Ar ac Ar count
2085Set the CWmax channel access parameter to send to stations in a BSS.
2086This parameter is meaningful only when operating in ap mode.
2087.It Cm bss:txoplimit Ar ac Ar limit
2088Set the TxOpLimit channel access parameter to send to stations in a BSS.
2089This parameter is meaningful only when operating in ap mode.
2090.El
2091.It Cm wps
2092Enable Wireless Privacy Subscriber support.
2093Note that WPS support requires a WPS-capable supplicant.
2094To disable this function use
2095.Fl wps .
2096.El
2097.Pp
2098The following parameters support an optional access control list
2099feature available with some adapters when operating in ap mode; see
2100.Xr wlan_acl 4 .
2101This facility allows an access point to accept/deny association
2102requests based on the MAC address of the station.
2103Note that this feature does not significantly enhance security
2104as MAC address spoofing is easy to do.
2105.Bl -tag -width indent
2106.It Cm mac:add Ar address
2107Add the specified MAC address to the database.
2108Depending on the policy setting association requests from the
2109specified station will be allowed or denied.
2110.It Cm mac:allow
2111Set the ACL policy to permit association only by
2112stations registered in the database.
2113.It Cm mac:del Ar address
2114Delete the specified MAC address from the database.
2115.It Cm mac:deny
2116Set the ACL policy to deny association only by
2117stations registered in the database.
2118.It Cm mac:kick Ar address
2119Force the specified station to be deauthenticated.
2120This typically is done to block a station after updating the
2121address database.
2122.It Cm mac:open
2123Set the ACL policy to allow all stations to associate.
2124.It Cm mac:flush
2125Delete all entries in the database.
2126.It Cm mac:radius
2127Set the ACL policy to permit association only by
2128stations approved by a RADIUS server.
2129Note that this feature requires the
2130.Xr hostapd 8
2131program be configured to do the right thing
2132as it handles the RADIUS processing
2133(and marks stations as authorized).
2134.El
2135.Pp
2136The following parameters are related to a wireless interface operating in mesh
2137mode:
2138.Bl -tag -width indent
2139.It Cm meshid Ar meshid
2140Set the desired Mesh Identifier.
2141The Mesh ID is a string up to 32 characters in length.
2142A mesh interface must have a Mesh Identifier specified
2143to reach an operational state.
2144.It Cm meshttl Ar ttl
2145Set the desired ``time to live'' for mesh forwarded packets;
2146this is the number of hops a packet may be forwarded before
2147it is discarded.
2148The default setting for
2149.Cm meshttl
2150is 31.
2151.It Cm meshpeering
2152Enable or disable peering with neighbor mesh stations.
2153Stations must peer before any data packets can be exchanged.
2154By default
2155.Cm meshpeering
2156is enabled.
2157.It Cm meshforward
2158Enable or disable forwarding packets by a mesh interface.
2159By default
2160.Cm meshforward
2161is enabled.
2162.It Cm meshgate
2163This attribute specifies whether or not the mesh STA activates mesh gate
2164announcements.
2165By default
2166.Cm meshgate
2167is disabled.
2168.It Cm meshmetric Ar protocol
2169Set the specified
2170.Ar protocol
2171as the link metric protocol used on a mesh network.
2172The default protocol is called
2173.Ar AIRTIME .
2174The mesh interface will restart after changing this setting.
2175.It Cm meshpath Ar protocol
2176Set the specified
2177.Ar protocol
2178as the path selection protocol used on a mesh network.
2179The only available protocol at the moment is called
2180.Ar HWMP
2181(Hybrid Wireless Mesh Protocol).
2182The mesh interface will restart after changing this setting.
2183.It Cm hwmprootmode Ar mode
2184Stations on a mesh network can operate as ``root nodes.''
2185Root nodes try to find paths to all mesh nodes and advertise themselves
2186regularly.
2187When there is a root mesh node on a network, other mesh nodes can setup
2188paths between themselves faster because they can use the root node
2189to find the destination.
2190This path may not be the best, but on-demand
2191routing will eventually find the best path.
2192The following modes are recognized:
2193.Pp
2194.Bl -tag -width ".Cm PROACTIVE" -compact
2195.It Cm DISABLED
2196Disable root mode.
2197.It Cm NORMAL
2198Send broadcast path requests every two seconds.
2199Nodes on the mesh without a path to this root mesh station with try to
2200discover a path to us.
2201.It Cm PROACTIVE
2202Send broadcast path requests every two seconds and every node must reply
2203with a path reply even if it already has a path to this root mesh station.
2204.It Cm RANN
2205Send broadcast root announcement (RANN) frames.
2206Nodes on the mesh without a path to this root mesh station with try to
2207discover a path to us.
2208.El
2209By default
2210.Cm hwmprootmode
2211is set to
2212.Ar DISABLED .
2213.It Cm hwmpmaxhops Ar cnt
2214Set the maximum number of hops allowed in an HMWP path to
2215.Ar cnt .
2216The default setting for
2217.Cm hwmpmaxhops
2218is 31.
2219.El
2220.Pp
2221The following parameters are for compatibility with other systems:
2222.Bl -tag -width indent
2223.It Cm nwid Ar ssid
2224Another name for the
2225.Cm ssid
2226parameter.
2227Included for
2228.Nx
2229compatibility.
2230.It Cm stationname Ar name
2231Set the name of this station.
2232The station name is not part of the IEEE 802.11
2233protocol though some interfaces support it.
2234As such it only
2235seems to be meaningful to identical or virtually identical equipment.
2236Setting the station name is identical in syntax to setting the SSID.
2237One can also use
2238.Cm station
2239for
2240.Bsx
2241compatibility.
2242.It Cm wep
2243Another way of saying
2244.Cm wepmode on .
2245Included for
2246.Bsx
2247compatibility.
2248.It Fl wep
2249Another way of saying
2250.Cm wepmode off .
2251Included for
2252.Bsx
2253compatibility.
2254.It Cm nwkey key
2255Another way of saying:
2256.Dq Li "wepmode on weptxkey 1 wepkey 1:key wepkey 2:- wepkey 3:- wepkey 4:-" .
2257Included for
2258.Nx
2259compatibility.
2260.It Cm nwkey Xo
2261.Sm off
2262.Ar n : k1 , k2 , k3 , k4
2263.Sm on
2264.Xc
2265Another way of saying
2266.Dq Li "wepmode on weptxkey n wepkey 1:k1 wepkey 2:k2 wepkey 3:k3 wepkey 4:k4" .
2267Included for
2268.Nx
2269compatibility.
2270.It Fl nwkey
2271Another way of saying
2272.Cm wepmode off .
2273Included for
2274.Nx
2275compatibility.
2276.El
2277.Pp
2278The following parameters are specific to bridge interfaces:
2279.Bl -tag -width indent
2280.It Cm addm Ar interface
2281Add the interface named by
2282.Ar interface
2283as a member of the bridge.
2284The interface is put into promiscuous mode
2285so that it can receive every packet sent on the network.
2286.It Cm deletem Ar interface
2287Remove the interface named by
2288.Ar interface
2289from the bridge.
2290Promiscuous mode is disabled on the interface when
2291it is removed from the bridge.
2292.It Cm maxaddr Ar size
2293Set the size of the bridge address cache to
2294.Ar size .
2295The default is 2000 entries.
2296.It Cm timeout Ar seconds
2297Set the timeout of address cache entries to
2298.Ar seconds
2299seconds.
2300If
2301.Ar seconds
2302is zero, then address cache entries will not be expired.
2303The default is 1200 seconds.
2304.It Cm addr
2305Display the addresses that have been learned by the bridge.
2306.It Cm static Ar interface-name Ar address
2307Add a static entry into the address cache pointing to
2308.Ar interface-name .
2309Static entries are never aged out of the cache or re-placed, even if the
2310address is seen on a different interface.
2311.It Cm deladdr Ar address
2312Delete
2313.Ar address
2314from the address cache.
2315.It Cm flush
2316Delete all dynamically-learned addresses from the address cache.
2317.It Cm flushall
2318Delete all addresses, including static addresses, from the address cache.
2319.It Cm discover Ar interface
2320Mark an interface as a
2321.Dq discovering
2322interface.
2323When the bridge has no address cache entry
2324(either dynamic or static)
2325for the destination address of a packet,
2326the bridge will forward the packet to all
2327member interfaces marked as
2328.Dq discovering .
2329This is the default for all interfaces added to a bridge.
2330.It Cm -discover Ar interface
2331Clear the
2332.Dq discovering
2333attribute on a member interface.
2334For packets without the
2335.Dq discovering
2336attribute, the only packets forwarded on the interface are broadcast
2337or multicast packets and packets for which the destination address
2338is known to be on the interface's segment.
2339.It Cm learn Ar interface
2340Mark an interface as a
2341.Dq learning
2342interface.
2343When a packet arrives on such an interface, the source
2344address of the packet is entered into the address cache as being a
2345destination address on the interface's segment.
2346This is the default for all interfaces added to a bridge.
2347.It Cm -learn Ar interface
2348Clear the
2349.Dq learning
2350attribute on a member interface.
2351.It Cm sticky Ar interface
2352Mark an interface as a
2353.Dq sticky
2354interface.
2355Dynamically learned address entries are treated at static once entered into
2356the cache.
2357Sticky entries are never aged out of the cache or replaced, even if the
2358address is seen on a different interface.
2359.It Cm -sticky Ar interface
2360Clear the
2361.Dq sticky
2362attribute on a member interface.
2363.It Cm private Ar interface
2364Mark an interface as a
2365.Dq private
2366interface.
2367A private interface does not forward any traffic to any other port that is also
2368a private interface.
2369.It Cm -private Ar interface
2370Clear the
2371.Dq private
2372attribute on a member interface.
2373.It Cm span Ar interface
2374Add the interface named by
2375.Ar interface
2376as a span port on the bridge.
2377Span ports transmit a copy of every frame received by the bridge.
2378This is most useful for snooping a bridged network passively on
2379another host connected to one of the span ports of the bridge.
2380.It Cm -span Ar interface
2381Delete the interface named by
2382.Ar interface
2383from the list of span ports of the bridge.
2384.It Cm stp Ar interface
2385Enable Spanning Tree protocol on
2386.Ar interface .
2387The
2388.Xr if_bridge 4
2389driver has support for the IEEE 802.1D Spanning Tree protocol (STP).
2390Spanning Tree is used to detect and remove loops in a network topology.
2391.It Cm -stp Ar interface
2392Disable Spanning Tree protocol on
2393.Ar interface .
2394This is the default for all interfaces added to a bridge.
2395.It Cm edge Ar interface
2396Set
2397.Ar interface
2398as an edge port.
2399An edge port connects directly to end stations cannot create bridging
2400loops in the network, this allows it to transition straight to forwarding.
2401.It Cm -edge Ar interface
2402Disable edge status on
2403.Ar interface .
2404.It Cm autoedge Ar interface
2405Allow
2406.Ar interface
2407to automatically detect edge status.
2408This is the default for all interfaces added to a bridge.
2409.It Cm -autoedge Ar interface
2410Disable automatic edge status on
2411.Ar interface .
2412.It Cm ptp Ar interface
2413Set the
2414.Ar interface
2415as a point to point link.
2416This is required for straight transitions to forwarding and
2417should be enabled on a direct link to another RSTP capable switch.
2418.It Cm -ptp Ar interface
2419Disable point to point link status on
2420.Ar interface .
2421This should be disabled for a half duplex link and for an interface
2422connected to a shared network segment,
2423like a hub or a wireless network.
2424.It Cm autoptp Ar interface
2425Automatically detect the point to point status on
2426.Ar interface
2427by checking the full duplex link status.
2428This is the default for interfaces added to the bridge.
2429.It Cm -autoptp Ar interface
2430Disable automatic point to point link detection on
2431.Ar interface .
2432.It Cm maxage Ar seconds
2433Set the time that a Spanning Tree protocol configuration is valid.
2434The default is 20 seconds.
2435The minimum is 6 seconds and the maximum is 40 seconds.
2436.It Cm fwddelay Ar seconds
2437Set the time that must pass before an interface begins forwarding
2438packets when Spanning Tree is enabled.
2439The default is 15 seconds.
2440The minimum is 4 seconds and the maximum is 30 seconds.
2441.It Cm hellotime Ar seconds
2442Set the time between broadcasting of Spanning Tree protocol
2443configuration messages.
2444The hello time may only be changed when operating in legacy stp mode.
2445The default is 2 seconds.
2446The minimum is 1 second and the maximum is 2 seconds.
2447.It Cm priority Ar value
2448Set the bridge priority for Spanning Tree.
2449The default is 32768.
2450The minimum is 0 and the maximum is 61440.
2451.It Cm proto Ar value
2452Set the Spanning Tree protocol.
2453The default is rstp.
2454The available options are stp and rstp.
2455.It Cm holdcnt Ar value
2456Set the transmit hold count for Spanning Tree.
2457This is the number of packets transmitted before being rate limited.
2458The default is 6.
2459The minimum is 1 and the maximum is 10.
2460.It Cm ifpriority Ar interface Ar value
2461Set the Spanning Tree priority of
2462.Ar interface
2463to
2464.Ar value .
2465The default is 128.
2466The minimum is 0 and the maximum is 240.
2467.It Cm ifpathcost Ar interface Ar value
2468Set the Spanning Tree path cost of
2469.Ar interface
2470to
2471.Ar value .
2472The default is calculated from the link speed.
2473To change a previously selected path cost back to automatic, set the
2474cost to 0.
2475The minimum is 1 and the maximum is 200000000.
2476.It Cm ifmaxaddr Ar interface Ar size
2477Set the maximum number of hosts allowed from an interface, packets with unknown
2478source addresses are dropped until an existing host cache entry expires or is
2479removed.
2480Set to 0 to disable.
2481.El
2482.Pp
2483The following parameters are specific to lagg interfaces:
2484.Bl -tag -width indent
2485.It Cm laggtype Ar type
2486When creating a lagg interface the type can be specified as either
2487.Cm ethernet
2488or
2489.Cm infiniband .
2490If not specified ethernet is the default lagg type.
2491.It Cm laggport Ar interface
2492Add the interface named by
2493.Ar interface
2494as a port of the aggregation interface.
2495.It Cm -laggport Ar interface
2496Remove the interface named by
2497.Ar interface
2498from the aggregation interface.
2499.It Cm laggproto Ar proto
2500Set the aggregation protocol.
2501The default is
2502.Li failover .
2503The available options are
2504.Li failover ,
2505.Li lacp ,
2506.Li loadbalance ,
2507.Li roundrobin ,
2508.Li broadcast
2509and
2510.Li none .
2511.It Cm lagghash Ar option Ns Oo , Ns Ar option Oc
2512Set the packet layers to hash for aggregation protocols which load balance.
2513The default is
2514.Dq l2,l3,l4 .
2515The options can be combined using commas.
2516.Pp
2517.Bl -tag -width ".Cm l2" -compact
2518.It Cm l2
2519src/dst mac address and optional vlan number.
2520.It Cm l3
2521src/dst address for IPv4 or IPv6.
2522.It Cm l4
2523src/dst port for TCP/UDP/SCTP.
2524.El
2525.It Cm -use_flowid
2526Enable local hash computation for RSS hash on the interface.
2527The
2528.Li loadbalance
2529and
2530.Li lacp
2531modes will use the RSS hash from the network card if available
2532to avoid computing one, this may give poor traffic distribution
2533if the hash is invalid or uses less of the protocol header information.
2534.Cm -use_flowid
2535disables use of RSS hash from the network card.
2536The default value can be set via the
2537.Va net.link.lagg.default_use_flowid
2538.Xr sysctl 8
2539variable.
2540.Li 0
2541means
2542.Dq disabled
2543and
2544.Li 1
2545means
2546.Dq enabled .
2547.It Cm use_flowid
2548Use the RSS hash from the network card if available.
2549.It Cm flowid_shift Ar number
2550Set a shift parameter for RSS local hash computation.
2551Hash is calculated by using flowid bits in a packet header mbuf
2552which are shifted by the number of this parameter.
2553.It Cm use_numa
2554Enable selection of egress ports based on the native
2555.Xr NUMA 4
2556domain for the packets being transmitted.
2557This is currently only implemented for lacp mode.
2558This works only on
2559.Xr NUMA 4
2560hardware, running a kernel compiled with the
2561.Xr NUMA 4
2562option, and when interfaces from multiple
2563.Xr NUMA 4
2564domains are ports of the aggregation interface.
2565.It Cm -use_numa
2566Disable selection of egress ports based on the native
2567.Xr NUMA 4
2568domain for the packets being transmitted.
2569.It Cm lacp_fast_timeout
2570Enable lacp fast-timeout on the interface.
2571.It Cm -lacp_fast_timeout
2572Disable lacp fast-timeout on the interface.
2573.It Cm lacp_strict
2574Enable lacp strict compliance on the interface.
2575The default value can be set via the
2576.Va net.link.lagg.lacp.default_strict_mode
2577.Xr sysctl 8
2578variable.
2579.Li 0
2580means
2581.Dq disabled
2582and
2583.Li 1
2584means
2585.Dq enabled .
2586.It Cm -lacp_strict
2587Disable lacp strict compliance on the interface.
2588.It Cm rr_limit Ar number
2589Configure a stride for an interface in round-robin mode.
2590The default stride is 1.
2591.El
2592.Pp
2593The following parameters apply to IP tunnel interfaces,
2594.Xr gif 4 :
2595.Bl -tag -width indent
2596.It Cm tunnel Ar src_addr dest_addr
2597Configure the physical source and destination address for IP tunnel
2598interfaces.
2599The arguments
2600.Ar src_addr
2601and
2602.Ar dest_addr
2603are interpreted as the outer source/destination for the encapsulating
2604IPv4/IPv6 header.
2605.It Fl tunnel
2606Unconfigure the physical source and destination address for IP tunnel
2607interfaces previously configured with
2608.Cm tunnel .
2609.It Cm deletetunnel
2610Another name for the
2611.Fl tunnel
2612parameter.
2613.It Cm accept_rev_ethip_ver
2614Set a flag to accept both correct EtherIP packets and ones
2615with reversed version field.
2616Enabled by default.
2617This is for backward compatibility with
2618.Fx 6.1 ,
26196.2, 6.3, 7.0, and 7.1.
2620.It Cm -accept_rev_ethip_ver
2621Clear a flag
2622.Cm accept_rev_ethip_ver .
2623.It Cm ignore_source
2624Set a flag to accept encapsulated packets destined to this host
2625independently from source address.
2626This may be useful for hosts, that receive encapsulated packets
2627from the load balancers.
2628.It Cm -ignore_source
2629Clear a flag
2630.Cm ignore_source .
2631.It Cm send_rev_ethip_ver
2632Set a flag to send EtherIP packets with reversed version
2633field intentionally.
2634Disabled by default.
2635This is for backward compatibility with
2636.Fx 6.1 ,
26376.2, 6.3, 7.0, and 7.1.
2638.It Cm -send_rev_ethip_ver
2639Clear a flag
2640.Cm send_rev_ethip_ver .
2641.El
2642.Pp
2643The following parameters apply to GRE tunnel interfaces,
2644.Xr gre 4 :
2645.Bl -tag -width indent
2646.It Cm tunnel Ar src_addr dest_addr
2647Configure the physical source and destination address for GRE tunnel
2648interfaces.
2649The arguments
2650.Ar src_addr
2651and
2652.Ar dest_addr
2653are interpreted as the outer source/destination for the encapsulating
2654IPv4/IPv6 header.
2655.It Fl tunnel
2656Unconfigure the physical source and destination address for GRE tunnel
2657interfaces previously configured with
2658.Cm tunnel .
2659.It Cm deletetunnel
2660Another name for the
2661.Fl tunnel
2662parameter.
2663.It Cm grekey Ar key
2664Configure the GRE key to be used for outgoing packets.
2665Note that
2666.Xr gre 4 will always accept GRE packets with invalid or absent keys.
2667This command will result in a four byte MTU reduction on the interface.
2668.El
2669.Pp
2670The following parameters are specific to
2671.Xr pfsync 4
2672interfaces:
2673.Bl -tag -width indent
2674.It Cm syncdev Ar iface
2675Use the specified interface
2676to send and receive pfsync state synchronisation messages.
2677.It Fl syncdev
2678Stop sending pfsync state synchronisation messages over the network.
2679.It Cm syncpeer Ar peer_address
2680Make the pfsync link point-to-point rather than using
2681multicast to broadcast the state synchronisation messages.
2682The peer_address is the IP address of the other host taking part in
2683the pfsync cluster.
2684.It Fl syncpeer
2685Broadcast the packets using multicast.
2686.It Cm maxupd Ar n
2687Set the maximum number of updates for a single state which
2688can be collapsed into one.
2689This is an 8-bit number; the default value is 128.
2690.It Cm defer
2691Defer transmission of the first packet in a state until a peer has
2692acknowledged that the associated state has been inserted.
2693.It Fl defer
2694Do not defer the first packet in a state.
2695This is the default.
2696.El
2697.Pp
2698The following parameters are specific to
2699.Xr vlan 4
2700interfaces:
2701.Bl -tag -width indent
2702.It Cm vlan Ar vlan_tag
2703Set the VLAN tag value to
2704.Ar vlan_tag .
2705This value is a 12-bit VLAN Identifier (VID) which is used to create an 802.1Q
2706or 802.1ad VLAN header for packets sent from the
2707.Xr vlan 4
2708interface.
2709Note that
2710.Cm vlan
2711and
2712.Cm vlandev
2713must both be set at the same time.
2714.It Cm vlanproto Ar vlan_proto
2715Set the VLAN encapsulation protocol to
2716.Ar vlan_proto .
2717Supported encapsulation protocols are currently
2718.Dq 802.1Q
2719and
2720.Dq 802.1ad .
2721The default encapsulation protocol is
2722.Dq 802.1Q .
2723The
2724.Dq 802.1ad
2725protocol is also commonly known as
2726.Dq QinQ ;
2727either name can be used.
2728.It Cm vlanpcp Ar priority_code_point
2729Priority code point
2730.Pq Dv PCP
2731is an 3-bit field which refers to the IEEE 802.1p
2732class of service and maps to the frame priority level.
2733.Pp
2734Values in order of priority are:
2735.Cm 1
2736.Pq Dv Background (lowest) ,
2737.Cm 0
2738.Pq Dv Best effort (default) ,
2739.Cm 2
2740.Pq Dv Excellent effort ,
2741.Cm 3
2742.Pq Dv Critical applications ,
2743.Cm 4
2744.Pq Dv Video, < 100ms latency and jitter ,
2745.Cm 5
2746.Pq Dv Voice, < 10ms latency and jitter ,
2747.Cm 6
2748.Pq Dv Internetwork control ,
2749.Cm 7
2750.Pq Dv Network control (highest) .
2751.It Cm vlandev Ar iface
2752Associate the physical interface
2753.Ar iface
2754with a
2755.Xr vlan 4
2756interface.
2757Packets transmitted through the
2758.Xr vlan 4
2759interface will be
2760diverted to the specified physical interface
2761.Ar iface
2762with 802.1Q VLAN encapsulation.
2763Packets with 802.1Q encapsulation received
2764by the parent interface with the correct VLAN Identifier will be diverted to
2765the associated
2766.Xr vlan 4
2767pseudo-interface.
2768The
2769.Xr vlan 4
2770interface is assigned a
2771copy of the parent interface's flags and the parent's Ethernet address.
2772The
2773.Cm vlandev
2774and
2775.Cm vlan
2776must both be set at the same time.
2777If the
2778.Xr vlan 4
2779interface already has
2780a physical interface associated with it, this command will fail.
2781To
2782change the association to another physical interface, the existing
2783association must be cleared first.
2784.Pp
2785Note: if the hardware tagging capability
2786is set on the parent interface, the
2787.Xr vlan 4
2788pseudo
2789interface's behavior changes:
2790the
2791.Xr vlan 4
2792interface recognizes that the
2793parent interface supports insertion and extraction of VLAN tags on its
2794own (usually in firmware) and that it should pass packets to and from
2795the parent unaltered.
2796.It Fl vlandev Op Ar iface
2797If the driver is a
2798.Xr vlan 4
2799pseudo device, disassociate the parent interface from it.
2800This breaks the link between the
2801.Xr vlan 4
2802interface and its parent,
2803clears its VLAN Identifier, flags and its link address and shuts the interface
2804down.
2805The
2806.Ar iface
2807argument is useless and hence deprecated.
2808.El
2809.Pp
2810The following parameters are used to configure
2811.Xr vxlan 4
2812interfaces.
2813.Bl -tag -width indent
2814.It Cm vxlanid Ar identifier
2815This value is a 24-bit VXLAN Network Identifier (VNI) that identifies the
2816virtual network segment membership of the interface.
2817.It Cm vxlanlocal Ar address
2818The source address used in the encapsulating IPv4/IPv6 header.
2819The address should already be assigned to an existing interface.
2820When the interface is configured in unicast mode, the listening socket
2821is bound to this address.
2822.It Cm vxlanremote Ar address
2823The interface can be configured in a unicast, or point-to-point, mode
2824to create a tunnel between two hosts.
2825This is the IP address of the remote end of the tunnel.
2826.It Cm vxlangroup Ar address
2827The interface can be configured in a multicast mode
2828to create a virtual network of hosts.
2829This is the IP multicast group address the interface will join.
2830.It Cm vxlanlocalport Ar port
2831The port number the interface will listen on.
2832The default port number is 4789.
2833.It Cm vxlanremoteport Ar port
2834The destination port number used in the encapsulating IPv4/IPv6 header.
2835The remote host should be listening on this port.
2836The default port number is 4789.
2837Note some other implementations, such as Linux,
2838do not default to the IANA assigned port,
2839but instead listen on port 8472.
2840.It Cm vxlanportrange Ar low high
2841The range of source ports used in the encapsulating IPv4/IPv6 header.
2842The port selected within the range is based on a hash of the inner frame.
2843A range is useful to provide entropy within the outer IP header
2844for more effective load balancing.
2845The default range is between the
2846.Xr sysctl 8
2847variables
2848.Va net.inet.ip.portrange.first
2849and
2850.Va net.inet.ip.portrange.last
2851.It Cm vxlantimeout Ar timeout
2852The maximum time, in seconds, before an entry in the forwarding table
2853is pruned.
2854The default is 1200 seconds (20 minutes).
2855.It Cm vxlanmaxaddr Ar max
2856The maximum number of entries in the forwarding table.
2857The default is 2000.
2858.It Cm vxlandev Ar dev
2859When the interface is configured in multicast mode, the
2860.Cm dev
2861interface is used to transmit IP multicast packets.
2862.It Cm vxlanttl Ar ttl
2863The TTL used in the encapsulating IPv4/IPv6 header.
2864The default is 64.
2865.It Cm vxlanlearn
2866The source IP address and inner source Ethernet MAC address of
2867received packets are used to dynamically populate the forwarding table.
2868When in multicast mode, an entry in the forwarding table allows the
2869interface to send the frame directly to the remote host instead of
2870broadcasting the frame to the multicast group.
2871This is the default.
2872.It Fl vxlanlearn
2873The forwarding table is not populated by received packets.
2874.It Cm vxlanflush
2875Delete all dynamically-learned addresses from the forwarding table.
2876.It Cm vxlanflushall
2877Delete all addresses, including static addresses, from the forwarding table.
2878.El
2879.Pp
2880The following parameters are used to configure
2881.Xr carp 4
2882protocol on an interface:
2883.Bl -tag -width indent
2884.It Cm vhid Ar n
2885Set the virtual host ID.
2886This is a required setting to initiate
2887.Xr carp 4 .
2888If the virtual host ID does not exist yet, it is created and attached to the
2889interface, otherwise configuration of an existing vhid is adjusted.
2890If the
2891.Cm vhid
2892keyword is supplied along with an
2893.Dq inet6
2894or
2895.Dq inet
2896address, then this address is configured to be run under control of the
2897specified vhid.
2898Whenever a last address that refers to a particular vhid is removed from an
2899interface, the vhid is automatically removed from interface and destroyed.
2900Any other configuration parameters for the
2901.Xr carp 4
2902protocol should be supplied along with the
2903.Cm vhid
2904keyword.
2905Acceptable values for vhid are 1 to 255.
2906.It Cm advbase Ar seconds
2907Specifies the base of the advertisement interval in seconds.
2908The acceptable values are 1 to 255.
2909The default value is 1.
2910.It Cm advskew Ar interval
2911Specifies the skew to add to the base advertisement interval to
2912make one host advertise slower than another host.
2913It is specified in 1/256 of seconds.
2914The acceptable values are 1 to 254.
2915The default value is 0.
2916.It Cm pass Ar phrase
2917Set the authentication key to
2918.Ar phrase .
2919.It Cm state Ar MASTER|BACKUP
2920Forcibly change state of a given vhid.
2921.El
2922.Pp
2923The
2924.Nm
2925utility displays the current configuration for a network interface
2926when no optional parameters are supplied.
2927If a protocol family is specified,
2928.Nm
2929will report only the details specific to that protocol family.
2930.Pp
2931If the
2932.Fl m
2933flag is passed before an interface name,
2934.Nm
2935will display the capability list and all
2936of the supported media for the specified interface.
2937If
2938.Fl L
2939flag is supplied, address lifetime is displayed for IPv6 addresses,
2940as time offset string.
2941.Pp
2942Optionally, the
2943.Fl a
2944flag may be used instead of an interface name.
2945This flag instructs
2946.Nm
2947to display information about all interfaces in the system.
2948The
2949.Fl d
2950flag limits this to interfaces that are down,
2951.Fl u
2952limits this to interfaces that are up,
2953.Fl g
2954limits this to members of the specified group of interfaces, and
2955.Fl G
2956excludes members of the specified group from the list.
2957Both
2958.Fl g
2959and
2960.Fl G
2961flags may be specified to apply both conditions.
2962Only one option
2963.Fl g
2964should be specified as later override previous ones
2965(same for
2966.Fl G ) .
2967.Sy groupname
2968may contain shell patterns in which case it should be quoted.
2969When no arguments are given,
2970.Fl a
2971is implied.
2972.Pp
2973The
2974.Fl l
2975flag may be used to list all available interfaces on the system, with
2976no other additional information.
2977If an
2978.Ar address_family
2979is specified, only interfaces of that type will be listed.
2980.Fl l Dq ether
2981will list only Ethernet adapters, excluding the loopback interface.
2982Use of this flag is mutually exclusive
2983with all other flags and commands, except for
2984.Fl d
2985(only list interfaces that are down)
2986and
2987.Fl u
2988(only list interfaces that are up).
2989.Pp
2990The
2991.Fl v
2992flag may be used to get more verbose status for an interface.
2993.Pp
2994The
2995.Fl C
2996flag may be used to list all of the interface cloners available on
2997the system, with no additional information.
2998Use of this flag is mutually exclusive with all other flags and commands.
2999.Pp
3000The
3001.Fl k
3002flag causes keying information for the interface, if available, to be
3003printed.
3004For example, the values of 802.11 WEP keys and
3005.Xr carp 4
3006passphrases will be printed, if accessible to the current user.
3007This information is not printed by default, as it may be considered
3008sensitive.
3009.Pp
3010If the network interface driver is not present in the kernel then
3011.Nm
3012will attempt to load it.
3013The
3014.Fl n
3015flag disables this behavior.
3016.Pp
3017Only the super-user may modify the configuration of a network interface.
3018.Sh EXAMPLES
3019Assign the IPv4 address
3020.Li 192.0.2.10 ,
3021with a network mask of
3022.Li 255.255.255.0 ,
3023to the interface
3024.Li em0 :
3025.Dl # ifconfig em0 inet 192.0.2.10 netmask 255.255.255.0
3026.Pp
3027Add the IPv4 address
3028.Li 192.0.2.45 ,
3029with the CIDR network prefix
3030.Li /28 ,
3031to the interface
3032.Li em0 ,
3033using
3034.Cm add
3035as a synonym for the canonical form of the option
3036.Cm alias :
3037.Dl # ifconfig em0 inet 192.0.2.45/28 add
3038.Pp
3039Remove the IPv4 address
3040.Li 192.0.2.45
3041from the interface
3042.Li em0 :
3043.Dl # ifconfig em0 inet 192.0.2.45 -alias
3044.Pp
3045Enable IPv6 functionality of the interface:
3046.Dl # ifconfig em0 inet6 -ifdisabled
3047.Pp
3048Add the IPv6 address
3049.Li 2001:DB8:DBDB::123/48
3050to the interface
3051.Li em0 :
3052.Dl # ifconfig em0 inet6 2001:db8:bdbd::123 prefixlen 48 alias
3053Note that lower case hexadecimal IPv6 addresses are acceptable.
3054.Pp
3055Remove the IPv6 address added in the above example,
3056using the
3057.Li /
3058character as shorthand for the network prefix,
3059and using
3060.Cm delete
3061as a synonym for the canonical form of the option
3062.Fl alias :
3063.Dl # ifconfig em0 inet6 2001:db8:bdbd::123/48 delete
3064.Pp
3065Configure a single CARP redundant address on igb0, and then switch it
3066to be master:
3067.Dl # ifconfig igb0 vhid 1 10.0.0.1/24 pass foobar up
3068.Dl # ifconfig igb0 vhid 1 state master
3069.Pp
3070Configure the interface
3071.Li xl0 ,
3072to use 100baseTX, full duplex Ethernet media options:
3073.Dl # ifconfig xl0 media 100baseTX mediaopt full-duplex
3074.Pp
3075Label the em0 interface as an uplink:
3076.Dl # ifconfig em0 description \&"Uplink to Gigabit Switch 2\&"
3077.Pp
3078Create the software network interface
3079.Li gif1 :
3080.Dl # ifconfig gif1 create
3081.Pp
3082Destroy the software network interface
3083.Li gif1 :
3084.Dl # ifconfig gif1 destroy
3085.Pp
3086Display available wireless networks using
3087.Li wlan0 :
3088.Dl # ifconfig wlan0 list scan
3089.Pp
3090Display inet and inet6 address subnet masks in CIDR notation
3091.Dl # ifconfig -f inet:cidr,inet6:cidr
3092.Pp
3093Display interfaces that are up with the exception of loopback
3094.Dl # ifconfig -a -u -G lo
3095.Sh DIAGNOSTICS
3096Messages indicating the specified interface does not exist, the
3097requested address is unknown, or the user is not privileged and
3098tried to alter an interface's configuration.
3099.Sh SEE ALSO
3100.Xr netstat 1 ,
3101.Xr carp 4 ,
3102.Xr gif 4 ,
3103.Xr netintro 4 ,
3104.Xr pfsync 4 ,
3105.Xr polling 4 ,
3106.Xr vlan 4 ,
3107.Xr vxlan 4 ,
3108.Xr devd.conf 5 ,
3109.\" .Xr eon 5 ,
3110.Xr devd 8 ,
3111.Xr jail 8 ,
3112.Xr rc 8 ,
3113.Xr routed 8 ,
3114.Xr sysctl 8
3115.Sh HISTORY
3116The
3117.Nm
3118utility appeared in
3119.Bx 4.2 .
3120.Sh BUGS
3121Basic IPv6 node operation requires a link-local address on each
3122interface configured for IPv6.
3123Normally, such an address is automatically configured by the
3124kernel on each interface added to the system or enabled; this behavior may
3125be disabled by setting per-interface flag
3126.Cm -auto_linklocal .
3127The default value of this flag is 1 and can be disabled by using the sysctl
3128MIB variable
3129.Va net.inet6.ip6.auto_linklocal .
3130.Pp
3131Do not configure IPv6 addresses with no link-local address by using
3132.Nm .
3133It can result in unexpected behaviors of the kernel.
3134