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