]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - sbin/ifconfig/ifconfig.8
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.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 October 19, 2008
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 .Op 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 is
169 .Dq inet .
170 .Dq ether
171 and
172 .Dq lladdr
173 are synonyms for
174 .Dq link .
175 .It Ar dest_address
176 Specify the address of the correspondent on the other end
177 of a point to point link.
178 .It Ar interface
179 This
180 parameter is a string of the form
181 .Dq name unit ,
182 for example,
183 .Dq Li ed0 .
184 .It Ar groupname
185 List the interfaces in the given group.
186 .El
187 .Pp
188 The following parameters may be set with
189 .Nm :
190 .Bl -tag -width indent
191 .It Cm add
192 Another name for the
193 .Cm alias
194 parameter.
195 Introduced for compatibility
196 with
197 .Bsx .
198 .It Cm alias
199 Establish an additional network address for this interface.
200 This is sometimes useful when changing network numbers, and
201 one wishes to accept packets addressed to the old interface.
202 If the address is on the same subnet as the first network address
203 for this interface, a non-conflicting netmask must be given.
204 Usually
205 .Li 0xffffffff
206 is most appropriate.
207 .It Fl alias
208 Remove the network address specified.
209 This would be used if you incorrectly specified an alias, or it
210 was no longer needed.
211 If you have incorrectly set an NS address having the side effect
212 of specifying the host portion, removing all NS addresses will
213 allow you to respecify the host portion.
214 .It Cm anycast
215 (Inet6 only.)
216 Specify that the address configured is an anycast address.
217 Based on the current specification,
218 only routers may configure anycast addresses.
219 Anycast address will not be used as source address of any of outgoing
220 IPv6 packets.
221 .It Cm arp
222 Enable the use of the Address Resolution Protocol
223 .Pq Xr arp 4
224 in mapping
225 between network level addresses and link level addresses (default).
226 This is currently implemented for mapping between
227 .Tn DARPA
228 Internet
229 addresses and
230 .Tn IEEE
231 802 48-bit MAC addresses (Ethernet, FDDI, and Token Ring addresses).
232 .It Fl arp
233 Disable the use of the Address Resolution Protocol
234 .Pq Xr arp 4 .
235 .It Cm staticarp
236 If the Address Resolution Protocol is enabled,
237 the host will only reply to requests for its addresses,
238 and will never send any requests.
239 .It Fl staticarp
240 If the Address Resolution Protocol is enabled,
241 the host will perform normally,
242 sending out requests and listening for replies.
243 .It Cm broadcast
244 (Inet only.)
245 Specify the address to use to represent broadcasts to the
246 network.
247 The default broadcast address is the address with a host part of all 1's.
248 .It Cm debug
249 Enable driver dependent debugging code; usually, this turns on
250 extra console error logging.
251 .It Fl debug
252 Disable driver dependent debugging code.
253 .It Cm promisc
254 Put interface into permanently promiscuous mode.
255 .It Fl promisc
256 Disable permanently promiscuous mode.
257 .It Cm delete
258 Another name for the
259 .Fl alias
260 parameter.
261 .It Cm down
262 Mark an interface
263 .Dq down .
264 When an interface is marked
265 .Dq down ,
266 the system will not attempt to
267 transmit messages through that interface.
268 If possible, the interface will be reset to disable reception as well.
269 This action does not automatically disable routes using the interface.
270 .It Cm group Ar group-name
271 Assign the interface to a
272 .Dq group .
273 Any interface can be in multiple groups.
274 .Pp
275 Cloned interfaces are members of their interface family group by default.
276 For example, a PPP interface such as
277 .Em ppp0
278 is a member of the PPP interface family group,
279 .Em ppp .
280 .\" The interface(s) the default route(s) point to are members of the
281 .\" .Em egress
282 .\" interface group.
283 .It Cm -group Ar group-name
284 Remove the interface from the given
285 .Dq group .
286 .It Cm eui64
287 (Inet6 only.)
288 Fill interface index
289 (lowermost 64bit of an IPv6 address)
290 automatically.
291 .It Cm ipdst
292 This is used to specify an Internet host who is willing to receive
293 IP packets encapsulating IPX packets bound for a remote network.
294 An apparent point to point link is constructed, and
295 the address specified will be taken as the IPX address and network
296 of the destination.
297 .It Cm maclabel Ar label
298 If Mandatory Access Control support is enabled in the kernel,
299 set the MAC label to
300 .Ar label .
301 .\" (see
302 .\" .Xr maclabel 7 ) .
303 .It Cm media Ar type
304 If the driver supports the media selection system, set the media type
305 of the interface to
306 .Ar type .
307 Some interfaces support the mutually exclusive use of one of several
308 different physical media connectors.
309 For example, a 10Mbit/s Ethernet
310 interface might support the use of either
311 .Tn AUI
312 or twisted pair connectors.
313 Setting the media type to
314 .Cm 10base5/AUI
315 would change the currently active connector to the AUI port.
316 Setting it to
317 .Cm 10baseT/UTP
318 would activate twisted pair.
319 Refer to the interfaces' driver
320 specific documentation or man page for a complete list of the
321 available types.
322 .It Cm mediaopt Ar opts
323 If the driver supports the media selection system, set the specified
324 media options on the interface.
325 The
326 .Ar opts
327 argument
328 is a comma delimited list of options to apply to the interface.
329 Refer to the interfaces' driver specific man page for a complete
330 list of available options.
331 .It Fl mediaopt Ar opts
332 If the driver supports the media selection system, disable the
333 specified media options on the interface.
334 .It Cm mode Ar mode
335 If the driver supports the media selection system, set the specified
336 operating mode on the interface to
337 .Ar mode .
338 For IEEE 802.11 wireless interfaces that support multiple operating modes
339 this directive is used to select between 802.11a
340 .Pq Cm 11a ,
341 802.11b
342 .Pq Cm 11b ,
343 and 802.11g
344 .Pq Cm 11g
345 operating modes.
346 .It Cm inst Ar minst , Cm instance Ar minst
347 Set the media instance to
348 .Ar minst .
349 This is useful for devices which have multiple physical layer interfaces
350 .Pq PHYs .
351 .It Cm name Ar name
352 Set the interface name to
353 .Ar name .
354 .It Cm rxcsum , txcsum
355 If the driver supports user-configurable checksum offloading,
356 enable receive (or transmit) checksum offloading on the interface.
357 Some drivers may not be able to enable these flags independently
358 of each other, so setting one may also set the other.
359 The driver will offload as much checksum work as it can reliably
360 support, the exact level of offloading varies between drivers.
361 .It Fl rxcsum , txcsum
362 If the driver supports user-configurable checksum offloading,
363 disable receive (or transmit) checksum offloading on the interface.
364 These settings may not always be independent of each other.
365 .It Cm tso
366 If the driver supports
367 .Xr tcp 4
368 segmentation offloading, enable TSO on the interface.
369 Some drivers may not be able to support TSO for
370 .Xr ip 4
371 and
372 .Xr ip6 4
373 packets, so they may enable only one of them.
374 .It Fl tso
375 If the driver supports
376 .Xr tcp 4
377 segmentation offloading, disable TSO on the interface.
378 It will always disable TSO for
379 .Xr ip 4
380 and
381 .Xr ip6 4 .
382 .It Cm lro
383 If the driver supports
384 .Xr tcp 4
385 large receive offloading, enable LRO on the interface.
386 .It Fl lro
387 If the driver supports
388 .Xr tcp 4
389 large receive offloading, disable LRO on the interface.
390 .It Cm wol , wol_ucast , wol_mcast , wol_magic
391 Enable Wake On Lan (WOL) support, if available.
392 WOL is a facility whereby a machine in a low power state may be woken
393 in response to a received packet.
394 There are three types of packets that may wake a system:
395 ucast (directed solely to the machine's mac address),
396 mcast (directed to a broadcast or multicast address),
397 or
398 magic (unicast or multicast frames with a ``magic contents'').
399 Not all devices support WOL, those that do indicate the mechanisms
400 they support in their capabilities.
401 .Cm wol
402 is a synonym for enabling all available WOL mechanisms.
403 To disable WOL use
404 .Fl wol .
405 .It Cm vlanmtu , vlanhwtag
406 If the driver offers user-configurable VLAN support, enable
407 reception of extended frames or tag processing in hardware,
408 respectively.
409 Note that this must be issued on a physical interface associated with
410 .Xr vlan 4 ,
411 not on a
412 .Xr vlan 4
413 interface itself.
414 .It Fl vlanmtu , vlanhwtag
415 If the driver offers user-configurable VLAN support, disable
416 reception of extended frames or tag processing in hardware,
417 respectively.
418 .It Cm polling
419 Turn on
420 .Xr polling 4
421 feature and disable interrupts on the interface, if driver supports
422 this mode.
423 .It Fl polling
424 Turn off
425 .Xr polling 4
426 feature and enable interrupt mode on the interface.
427 .It Cm create
428 Create the specified network pseudo-device.
429 If the interface is given without a unit number, try to create a new
430 device with an arbitrary unit number.
431 If creation of an arbitrary device is successful, the new device name is
432 printed to standard output unless the interface is renamed or destroyed
433 in the same
434 .Nm
435 invocation.
436 .It Cm destroy
437 Destroy the specified network pseudo-device.
438 .It Cm plumb
439 Another name for the
440 .Cm create
441 parameter.
442 Included for
443 .Tn Solaris
444 compatibility.
445 .It Cm unplumb
446 Another name for the
447 .Cm destroy
448 parameter.
449 Included for
450 .Tn Solaris
451 compatibility.
452 .It Cm metric Ar n
453 Set the routing metric of the interface to
454 .Ar n ,
455 default 0.
456 The routing metric is used by the routing protocol
457 .Pq Xr routed 8 .
458 Higher metrics have the effect of making a route
459 less favorable; metrics are counted as additional hops
460 to the destination network or host.
461 .It Cm mtu Ar n
462 Set the maximum transmission unit of the interface to
463 .Ar n ,
464 default is interface specific.
465 The MTU is used to limit the size of packets that are transmitted on an
466 interface.
467 Not all interfaces support setting the MTU, and some interfaces have
468 range restrictions.
469 .It Cm netmask Ar mask
470 .\" (Inet and ISO.)
471 (Inet only.)
472 Specify how much of the address to reserve for subdividing
473 networks into sub-networks.
474 The mask includes the network part of the local address
475 and the subnet part, which is taken from the host field of the address.
476 The mask can be specified as a single hexadecimal number
477 with a leading
478 .Ql 0x ,
479 with a dot-notation Internet address,
480 or with a pseudo-network name listed in the network table
481 .Xr networks 5 .
482 The mask contains 1's for the bit positions in the 32-bit address
483 which are to be used for the network and subnet parts,
484 and 0's for the host part.
485 The mask should contain at least the standard network portion,
486 and the subnet field should be contiguous with the network
487 portion.
488 .Pp
489 The netmask can also be specified in CIDR notation after the address.
490 See the
491 .Ar address
492 option above for more information.
493 .It Cm prefixlen Ar len
494 (Inet6 only.)
495 Specify that
496 .Ar len
497 bits are reserved for subdividing networks into sub-networks.
498 The
499 .Ar len
500 must be integer, and for syntactical reason it must be between 0 to 128.
501 It is almost always 64 under the current IPv6 assignment rule.
502 If the parameter is omitted, 64 is used.
503 .Pp
504 The prefix can also be specified using the slash notation after the address.
505 See the
506 .Ar address
507 option above for more information.
508 .\" see
509 .\" Xr eon 5 .
510 .\" .It Cm nsellength Ar n
511 .\" .Pf ( Tn ISO
512 .\" only)
513 .\" This specifies a trailing number of bytes for a received
514 .\" .Tn NSAP
515 .\" used for local identification, the remaining leading part of which is
516 .\" taken to be the
517 .\" .Tn NET
518 .\" (Network Entity Title).
519 .\" The default value is 1, which is conformant to US
520 .\" .Tn GOSIP .
521 .\" When an ISO address is set in an ifconfig command,
522 .\" it is really the
523 .\" .Tn NSAP
524 .\" which is being specified.
525 .\" For example, in
526 .\" .Tn US GOSIP ,
527 .\" 20 hex digits should be
528 .\" specified in the
529 .\" .Tn ISO NSAP
530 .\" to be assigned to the interface.
531 .\" There is some evidence that a number different from 1 may be useful
532 .\" for
533 .\" .Tn AFI
534 .\" 37 type addresses.
535 .It Cm range Ar netrange
536 Under appletalk, set the interface to respond to a
537 .Ar netrange
538 of the form
539 .Ar startnet Ns - Ns Ar endnet .
540 Appletalk uses this scheme instead of
541 netmasks though
542 .Fx
543 implements it internally as a set of netmasks.
544 .It Cm remove
545 Another name for the
546 .Fl alias
547 parameter.
548 Introduced for compatibility
549 with
550 .Bsx .
551 .It Cm phase
552 The argument following this specifies the version (phase) of the
553 Appletalk network attached to the interface.
554 Values of 1 or 2 are permitted.
555 .Sm off
556 .It Cm link Op Cm 0 No - Cm 2
557 .Sm on
558 Enable special processing of the link level of the interface.
559 These three options are interface specific in actual effect, however,
560 they are in general used to select special modes of operation.
561 An example
562 of this is to enable SLIP compression, or to select the connector type
563 for some Ethernet cards.
564 Refer to the man page for the specific driver
565 for more information.
566 .Sm off
567 .It Fl link Op Cm 0 No - Cm 2
568 .Sm on
569 Disable special processing at the link level with the specified interface.
570 .It Cm monitor
571 Put the interface in monitor mode.
572 No packets are transmitted, and received packets are discarded after
573 .Xr bpf 4
574 processing.
575 .It Fl monitor
576 Take the interface out of monitor mode.
577 .It Cm up
578 Mark an interface
579 .Dq up .
580 This may be used to enable an interface after an
581 .Dq Nm Cm down .
582 It happens automatically when setting the first address on an interface.
583 If the interface was reset when previously marked down,
584 the hardware will be re-initialized.
585 .El
586 .Pp
587 The following parameters are specific to IEEE 802.11 wireless interfaces:
588 .Bl -tag -width indent
589 .It Cm apbridge
590 When operating as an access point, pass packets between
591 wireless clients directly (default).
592 To instead let them pass up through the
593 system and be forwarded using some other mechanism, use
594 .Fl apbridge .
595 Disabling the internal bridging
596 is useful when traffic is to be processed with
597 packet filtering.
598 .It Cm authmode Ar mode
599 Set the desired authentication mode in infrastructure mode.
600 Not all adaptors support all modes.
601 The set of
602 valid modes is
603 .Cm none , open , shared
604 (shared key),
605 .Cm 8021x
606 (IEEE 802.1x),
607 and
608 .Cm wpa
609 (IEEE WPA/WPA2/802.11i).
610 The
611 .Cm 8021x
612 and
613 .Cm wpa
614 modes are only useful when using an authentication service
615 (a supplicant for client operation or an authenticator when
616 operating as an access point).
617 Modes are case insensitive.
618 .It Cm bgscan
619 Enable background scanning when operating as a station.
620 Background scanning is a technique whereby a station associated to
621 an access point will temporarily leave the channel to scan for
622 neighboring stations.
623 This allows a station to maintain a cache of nearby access points
624 so that roaming between access points can be done without
625 a lengthy scan operation.
626 Background scanning is done only when a station is not busy and
627 any outbound traffic will cancel a scan operation.
628 Background scanning should never cause packets to be lost though
629 there may be some small latency if outbound traffic interrupts a
630 scan operation.
631 By default background scanning is enabled if the device is capable.
632 To disable background scanning, use
633 .Fl bgscan .
634 Background scanning is controlled by the
635 .Cm bgscanidle
636 and
637 .Cm bgscanintvl
638 parameters.
639 Background scanning must be enabled for roaming; this is an artifact
640 of the current implementation and may not be required in the future.
641 .It Cm bgscanidle Ar idletime
642 Set the minimum time a station must be idle (not transmitting or
643 receiving frames) before a background scan is initiated.
644 The
645 .Ar idletime
646 parameter is specified in milliseconds.
647 By default a station must be idle at least 250 milliseconds before
648 a background scan is initiated.
649 The idle time may not be set to less than 100 milliseconds.
650 .It Cm bgscanintvl Ar interval
651 Set the interval at which background scanning is attempted.
652 The
653 .Ar interval
654 parameter is specified in seconds.
655 By default a background scan is considered every 300 seconds (5 minutes).
656 The 
657 .Ar interval
658 may not be set to less than 15 seconds.
659 .It Cm bintval Ar interval
660 Set the interval at which beacon frames are sent when operating in
661 ad-hoc or ap mode.
662 The
663 .Ar interval
664 parameter is specified in TU's (1024 usecs).
665 By default beacon frames are transmitted every 100 TU's.
666 .It Cm bmissthreshold Ar count
667 Set the number of consecutive missed beacons at which the station
668 will attempt to roam (i.e., search for a new access point).
669 The
670 .Ar count
671 parameter must be in the range 1 to 255; though the
672 upper bound may be reduced according to device capabilities.
673 The default threshold is 7 consecutive missed beacons; but
674 this may be overridden by the device driver.
675 Another name for the
676 .Cm bmissthreshold
677 parameter is
678 .Cm bmiss .
679 .It Cm bssid Ar address
680 Specify the MAC address of the access point to use when operating
681 as a station in a BSS network.
682 This overrides any automatic selection done by the system.
683 To disable a previously selected access point, supply
684 .Cm any , none ,
685 or
686 .Cm -
687 for the address.
688 This option is useful when more than one access point uses the same SSID.
689 Another name for the
690 .Cm bssid
691 parameter is
692 .Cm ap .
693 .It Cm burst
694 Enable packet bursting.
695 Packet bursting is a transmission technique whereby the wireless
696 medium is acquired once to send multiple frames and the interframe
697 spacing is reduced.
698 This technique can significantly increase throughput by reducing
699 transmission overhead.
700 Packet bursting is supported by the 802.11e QoS specification
701 and some devices that do not support QoS may still be capable.
702 By default packet bursting is enabled if a device is capable
703 of doing it.
704 To disable packet bursting, use
705 .Fl burst .
706 .It Cm chanlist Ar channels
707 Set the desired channels to use when scanning for access
708 points, neighbors in an IBSS network, or looking for unoccupied
709 channels when operating as an access point.
710 The set of channels is specified as a comma-separated list with
711 each element in the list representing either a single channel number or a range
712 of the form
713 .Dq Li a-b .
714 Channel numbers must be in the range 1 to 255 and be permissible
715 according to the operating characteristics of the device.
716 .It Cm channel Ar number
717 Set a single desired channel.
718 Channels range from 1 to 255, but the exact selection available
719 depends on the region your adaptor was manufactured for.
720 Setting
721 the channel to
722 .Li 0 ,
723 .Cm any ,
724 or
725 .Cm -
726 will give you the default for your adaptor.
727 Some
728 adaptors ignore this setting unless you are in ad-hoc mode.
729 Alternatively the frequency, in megahertz, may be specified
730 instead of the channel number.
731 .Pp
732 When there are several ways to use a channel the channel
733 number/frequency may be appended with attributes to clarify.
734 For example, if a device is capable of operating on channel 6
735 with 802.11n and 802.11g then one can specify that g-only use
736 should be used by specifying ``6:g''.
737 Similarly the channel width can be specified by appending it
738 with ``/''; e.g. ``6/40'' specifies a 40MHz wide channel,
739 These attributes can be combined as in: ``6:ht/40''.
740 The full set of flags specified following a `:'' are:
741 .Cm a
742 (802.11a),
743 .Cm b
744 (802.11b),
745 .Cm d
746 (Atheros Dynamic Turbo mode),
747 .Cm g
748 (802.11g),
749 .Cm h
750 or
751 .Cm n
752 (802.11n aka HT),
753 .Cm s
754 (Atheros Static Turbo mode),
755 and
756 .Cm t
757 (Atheros Dynamic Turbo mode, or appended to ``st'' and ``dt'').
758 The full set of channel widths following a '/' are:
759 .Cm 5 
760 (5MHz aka quarter-rate channel),
761 .Cm 10 
762 (10MHz aka half-rate channel),
763 .Cm 20 
764 (20MHz mostly for use in specifying ht20),
765 and
766 .Cm 40 
767 (40MHz mostly for use in specifying ht40),
768 In addition,
769 a 40MHz HT channel specification may include the location
770 of the extension channel by appending ``+'' or ``-'' for above and below,
771 respectively; e.g. ``2437:ht/40+'' specifies 40MHz wide HT operation 
772 with the center channel at frequency 2437 and the extension channel above.
773 .It Cm doth
774 Enable inclusion of an 802.11h country information element in beacon
775 frames transmitted when operating as an access point.
776 By default 802.11h is enabled if the device is capable.
777 To disable 802.11h use
778 .Fl doth .
779 .It Cm deftxkey Ar index
780 Set the default key to use for transmission.
781 Typically this is only set when using WEP encryption.
782 Note that you must set a default transmit key
783 for the system to know which key to use in encrypting outbound traffic.
784 The
785 .Cm weptxkey
786 is an alias for this request; it is provided for backwards compatibility.
787 .It Cm dtimperiod Ar period
788 Set the
789 DTIM
790 period for transmitting buffered multicast data frames when
791 operating in ap mode.
792 The
793 .Ar period
794 specifies the number of beacon intervals between DTIM
795 and must be in the range 1 to 15.
796 By default DTIM is 1 (i.e., DTIM occurs at each beacon).
797 .It Cm dturbo
798 Enable the use of Atheros Dynamic Turbo mode when communicating with
799 another Dynamic Turbo-capable station.
800 Dynamic Turbo mode is an Atheros-specific mechanism by which
801 stations switch between normal 802.11 operation and a ``boosted''
802 mode in which a 40MHz wide channel is used for communication.
803 Stations using Dynamic Turbo mode operate boosted only when the
804 channel is free of non-dturbo stations; when a non-dturbo station
805 is identified on the channel all stations will automatically drop
806 back to normal operation.
807 By default, Dynamic Turbo mode is not enabled, even if the device is capable.
808 Note that turbo mode (dynamic or static) is only allowed on some
809 channels depending on the regulatory constraints; use the
810 .Cm list chan
811 command to identify the channels where turbo mode may be used.
812 To disable Dynamic Turbo mode use
813 .Fl dturbo .
814 .It Cm fragthreshold Ar length
815 Set the threshold for which transmitted frames are broken into fragments.
816 The
817 .Ar length
818 argument is the frame size in bytes and must be in the range 256 to 2346.
819 Setting
820 .Ar length
821 to
822 .Li 2346 ,
823 .Cm any ,
824 or
825 .Cm -
826 disables transmit fragmentation.
827 Not all adaptors honor the fragmentation threshold.
828 .It Cm hidessid
829 When operating as an access point, do not broadcast the SSID
830 in beacon frames or respond to probe request frames unless
831 they are directed to the ap (i.e., they include the ap's SSID).
832 By default, the SSID is included in beacon frames and
833 undirected probe request frames are answered.
834 To re-enable the broadcast of the SSID etc., use
835 .Fl hidessid .
836 .It Cm ff
837 Enable the use of Atheros Fast Frames when communicating with
838 another Fast Frames-capable station.
839 Fast Frames are an encapsulation technique by which two 802.3
840 frames are transmitted in a single 802.11 frame.
841 This can noticeably improve throughput but requires that the
842 receiving station understand how to decapsulate the frame.
843 Fast frame use is negotiated using the Atheros 802.11 vendor-specific
844 protocol extension so enabling use is safe when communicating with
845 non-Atheros devices.
846 By default, use of fast frames is enabled if the device is capable.
847 To explicitly disable fast frames, use
848 .Fl ff .
849 .It Cm list active
850 Display the list of channels available for use taking into account
851 any restrictions set with the
852 .Cm chanlist
853 directive.
854 See the description of
855 .Cm list chan
856 for more information.
857 .It Cm list caps
858 Display the adaptor's capabilities, including the operating
859 modes supported.
860 .It Cm list chan
861 Display the list of channels available for use.
862 Channels are shown with their IEEE channel number, equivalent
863 frequency, and usage modes.
864 Channels identified as
865 .Ql 11g
866 are also usable in
867 .Ql 11b
868 mode.
869 Channels identified as
870 .Ql 11a Turbo
871 may be used only for Atheros' Static Turbo mode
872 (specified with
873 . Cm mediaopt turbo ) .
874 Channels marked with a
875 .Ql *
876 have a regulatory constraint that they be passively scanned.
877 This means a station is not permitted to transmit on the channel until
878 it identifies the channel is being used for 802.11 communication;
879 typically by hearing a beacon frame from an access point operating
880 on the channel.
881 .Cm list freq
882 is another way of requesting this information.
883 By default a compacted list of channels is displayed; if the
884 .Fl v
885 option is specified then all channels are shown.
886 .It Cm list mac
887 Display the current MAC Access Control List state.
888 Each address is prefixed with a character that indicates the
889 current policy applied to it:
890 .Ql +
891 indicates the address is allowed access,
892 .Ql -
893 indicates the address is denied access,
894 .Ql *
895 indicates the address is present but the current policy open
896 (so the ACL is not consulted).
897 .It Cm list scan
898 Display the access points and/or ad-hoc neighbors
899 located in the vicinity.
900 The
901 .Fl v
902 flag may be used to display long SSIDs.
903 .Fl v
904 also causes received information elements to be displayed symbolically.
905 This information may be updated automatically by the adaptor
906 and/or with a
907 .Cm scan
908 request or through background scanning.
909 The
910 .Cm list ap
911 command is another way of requesting this information.
912 .It Cm list sta
913 When operating as an access point display the stations that are
914 currently associated.
915 When operating in ad-hoc mode display stations identified as
916 neighbors in the IBSS.
917 When operating in station mode display the access point.
918 Capabilities advertised by the stations are described under
919 the
920 .Cm scan
921 request.
922 Depending on the capabilities of the stations the following
923 flags can be included in the output:
924 .Bl -tag -width 3n
925 .It Li A
926 Authorized.
927 Indicates that the station is permitted to send/receive data frames.
928 .It Li E
929 Extended Rate Phy (ERP).
930 Indicates that the station is operating in an 802.11g network
931 using extended transmit rates.
932 .It Li H
933 High Throughput (HT).
934 Indicates that the station is using MCS to send/receive frames.
935 .It Li P
936 Power Save.
937 Indicates that the station is operating in power save mode.
938 .It Li Q
939 Quality of Service (QoS).
940 Indicates that the station is using QoS encapsulation for
941 data frame.
942 QoS encapsulation is enabled only when WME mode is enabled.
943 .El
944 .Pp
945 By default information elements received from associated stations
946 are displayed in a short form; the
947 .Fl v
948 flag causes this information to be displayed symbolically.
949 .It Cm list wme
950 Display the current parameters to use when operating in WME mode.
951 When WME mode is enabled for an adaptor this information will be
952 displayed with the regular status; this command is mostly useful
953 for examining parameters when WME mode is disabled.
954 See the description of the
955 .Cm wme
956 directive for information on the various parameters.
957 .It Cm mcastrate Ar rate
958 Set the rate for transmitting multicast/broadcast frames.
959 Rates are specified as megabits/second in decimal; e.g.\& 5.5 for 5.5 Mb/s.
960 This rate should be valid for the current operating conditions;
961 if an invalid rate is specified drivers are free to chose an
962 appropriate rate.
963 .It Cm powersave
964 Enable powersave operation.
965 When operating as a client, the station will conserve power by
966 periodically turning off the radio and listening for
967 messages from the access point telling it there are packets waiting.
968 The station must then retrieve the packets.
969 Not all devices support power save operation as a client.
970 The 802.11 specification requires that all access points support
971 power save but some drivers do not.
972 Use
973 .Fl powersave
974 to disable powersave operation when operating as a client.
975 .It Cm powersavesleep Ar sleep
976 Set the desired max powersave sleep time in TU's (1024 usecs).
977 By default the max powersave sleep time is 100 TU's.
978 .It Cm protmode Ar technique
979 For interfaces operating in 802.11g, use the specified
980 .Ar technique
981 for protecting OFDM frames in a mixed 11b/11g network.
982 The set of valid techniques is
983 .Cm off , cts
984 (CTS to self),
985 and
986 .Cm rtscts
987 (RTS/CTS).
988 Technique names are case insensitive.
989 Not all devices support
990 .Cm cts
991 as a protection technique.
992 .It Cm pureg
993 When operating as an access point in 802.11g mode allow only
994 11g-capable stations to associate (11b-only stations are not
995 permitted to associate).
996 To allow both 11g and 11b-only stations to associate, use
997 .Fl pureg .
998 .It Cm roaming Ar mode
999 When operating as a station, control how the system will
1000 behave when communication with the current access point
1001 is broken.
1002 The
1003 .Ar mode
1004 argument may be one of
1005 .Cm device
1006 (leave it to the hardware device to decide),
1007 .Cm auto
1008 (handle either in the device or the operating system\[em]as appropriate),
1009 .Cm manual
1010 (do nothing until explicitly instructed).
1011 By default, the device is left to handle this if it is
1012 capable; otherwise, the operating system will automatically
1013 attempt to reestablish communication.
1014 Manual mode is used by applications such as
1015 .Xr wpa_supplicant 8
1016 that want to control the selection of an access point.
1017 .It Cm roam:rssi11a Ar rssi
1018 Set the threshold for controlling roaming when operating in an
1019 802.11a BSS.
1020 The
1021 .Ar rssi
1022 parameter specifies the receive signal strength in dBm units
1023 at which roaming should be considered.
1024 If the current rssi drops below this setting and background scanning
1025 is enabled, then the system will check if a more desirable access point is
1026 available and switch over to it.
1027 The current scan cache contents are used if they are considered
1028 valid according to the
1029 .Cm scanvalid
1030 parameter; otherwise a background scan operation is triggered before
1031 any selection occurs.
1032 By default
1033 .Ar rssi
1034 is set to 7 dBm.
1035 .It Cm roam:rssi11b Ar rssi
1036 Set the threshold for controlling roaming when operating in an
1037 802.11b-only BSS.
1038 See 
1039 .Cm roam:rssi11a
1040 for a description of this parameter.
1041 By default
1042 .Ar rssi
1043 is set to 7 dBm.
1044 .It Cm roam:rssi11g Ar rssi
1045 Set the threshold for controlling roaming when operating in a
1046 (mixed) 802.11g BSS.
1047 See 
1048 .Cm roam:rssi11a
1049 for a description of this parameter.
1050 By default
1051 .Ar rssi
1052 is set to 7 dBm.
1053 .It Cm roam:rate11a Ar rate
1054 Set the threshold for controlling roaming when operating in an
1055 802.11a BSS.
1056 The
1057 .Ar rate
1058 parameter specifies the transmit rate in megabits
1059 at which roaming should be considered.
1060 If the current transmit rate drops below this setting and background scanning
1061 is enabled, then the system will check if a more desirable access point is
1062 available and switch over to it.
1063 The current scan cache contents are used if they are considered
1064 valid according to the
1065 .Cm scanvalid
1066 parameter; otherwise a background scan operation is triggered before
1067 any selection occurs.
1068 By default
1069 .Ar rate
1070 is set to 12 Mb/s.
1071 .It Cm roam:rate11b Ar rate
1072 Set the threshold for controlling roaming when operating in an
1073 802.11b-only BSS.
1074 See 
1075 .Cm roam:rate11a
1076 for a description of this parameter.
1077 By default
1078 .Ar rate
1079 is set to 1 Mb/s.
1080 .It Cm roam:rate11g Ar rate
1081 Set the threshold for controlling roaming when operating in a
1082 (mixed) 802.11g BSS.
1083 See 
1084 .Cm roam:rate11a
1085 for a description of this parameter.
1086 By default
1087 .Ar rate
1088 is set to 5 Mb/s.
1089 .It Cm rtsthreshold Ar length
1090 Set the threshold for which
1091 transmitted frames are preceded by transmission of an
1092 RTS
1093 control frame.
1094 The
1095 .Ar length
1096 argument
1097 is the frame size in bytes and must be in the range 1 to 2346.
1098 Setting
1099 .Ar length
1100 to
1101 .Li 2346 ,
1102 .Cm any ,
1103 or
1104 .Cm -
1105 disables transmission of RTS frames.
1106 Not all adaptors support setting the RTS threshold.
1107 .It Cm ssid Ar ssid
1108 Set the desired Service Set Identifier (aka network name).
1109 The SSID is a string up to 32 characters
1110 in length and may be specified as either a normal string or in
1111 hexadecimal when preceded by
1112 .Ql 0x .
1113 Additionally, the SSID may be cleared by setting it to
1114 .Ql - .
1115 .It Cm scan
1116 Initiate a scan of neighboring stations, wait for it to complete, and
1117 display all stations found.
1118 Only the super-user can initiate a scan.
1119 Depending on the capabilities of the APs, the following
1120 flags can be included in the output:
1121 .Bl -tag -width 3n
1122 .It Li A
1123 Channel Agility.
1124 Indicates that the station support channel hopping as described by the
1125 IEEE 802.11b specification.
1126 .It Li B
1127 Packet Binary Convolution Code (PBCC).
1128 A modulation alternative to the standard OFDM method.
1129 .It Dv C
1130 Pollreq
1131 .It Dv c
1132 Pollable
1133 .It Dv D
1134 Direct Sequence Spread Spectrum (DSSSOFDM).
1135 Indicates the the station supports DSSS modulation.
1136 .It Li E
1137 Extended Service Set (ESS).
1138 Indicates that the station is part of an infrastructure network
1139 (in contrast to an IBSS/ad-hoc network).
1140 .It Li I
1141 IBSS/ad-hoc network.
1142 Indicates that the station is part of an ad-hoc network
1143 (in contrast to an ESS network).
1144 .It Li P
1145 Privacy.
1146 Data confidentiality is required for all data frames
1147 exchanged within the BSS.
1148 This means that this BSS requires the station to
1149 use cryptographic means such as WEP, TKIP or AES-CCMP to
1150 encrypt/decrypt data frames being exchanged with others.
1151 .It Dv R
1152 Robust Security Network (RSN).
1153 Indicates that the station supports the IEEE 802.11i authentication
1154 and key management protocol.
1155 .It Li S
1156 Short Preamble.
1157 Indicates that the network is using short preambles (defined
1158 in 802.11b High Rate/DSSS PHY, short preamble utilizes a
1159 56 bit sync field in contrast to a 128 bit field used in long
1160 preamble mode).
1161 .It Li s
1162 Short slot time.
1163 Indicates that the network is using a short slot time.
1164 .El
1165 .Pp
1166 Interesting information elements captured from the neighboring
1167 stations are displayed at the end of each row.
1168 Possible elements are:
1169 .Cm WME
1170 (station supports WME),
1171 .Cm WPA
1172 (station supports WPA),
1173 .Cm WPS
1174 (station supports WPS),
1175 .Cm RSN
1176 (station supports 802.11i/RSN),
1177 .Cm HT
1178 (station supports 802.11n/HT communication),
1179 .Cm ATH
1180 (station supports Atheros protocol extensions),
1181 .Cm VEN
1182 (station supports unknown vendor-specific extensions).
1183 If the
1184 .Fl v
1185 flag is used the information element contents will be shown.
1186 .Pp
1187 The
1188 .Cm list scan
1189 request can be used to show recent scan results without
1190 initiating a new scan.
1191 .Pp
1192 The
1193 .Fl v
1194 flag may be used to prevent the shortening of long SSIDs.
1195 .It Cm scanvalid Ar threshold
1196 Set the maximum time the scan cache contents are considered valid;
1197 i.e. will be used without first triggering a scan operation to
1198 refresh the data.
1199 The
1200 .Ar threshold
1201 parameter is specified in seconds and defaults to 60 seconds.
1202 The minimum setting for
1203 .Ar threshold
1204 is 10 seconds.
1205 One should take care setting this threshold; if it is set too low
1206 then attempts to roam to another access point may trigger unnecessary
1207 background scan operations.
1208 .It Cm stationname Ar name
1209 Set the name of this station.
1210 The station name is not part of the IEEE 802.11
1211 protocol though some interfaces support it.
1212 As such it only
1213 seems to be meaningful to identical or virtually identical equipment.
1214 Setting the station name is identical in syntax to setting the SSID.
1215 .It Cm txpower Ar power
1216 Set the power used to transmit frames.
1217 The
1218 .Ar power
1219 argument is specified in .5 dBm units.
1220 Out of range values are truncated.
1221 Typically only a few discreet power settings are available and
1222 the driver will use the setting closest to the specified value.
1223 Not all adaptors support changing the transmit power.
1224 .It Cm wepmode Ar mode
1225 Set the desired WEP mode.
1226 Not all adaptors support all modes.
1227 The set of valid modes is
1228 .Cm off , on ,
1229 and
1230 .Cm mixed .
1231 The
1232 .Cm mixed
1233 mode explicitly tells the adaptor to allow association with access
1234 points which allow both encrypted and unencrypted traffic.
1235 On these adaptors,
1236 .Cm on
1237 means that the access point must only allow encrypted connections.
1238 On other adaptors,
1239 .Cm on
1240 is generally another name for
1241 .Cm mixed .
1242 Modes are case insensitive.
1243 .It Cm weptxkey Ar index
1244 Set the WEP key to be used for transmission.
1245 This is the same as setting the default transmission key with
1246 .Cm deftxkey .
1247 .It Cm wepkey Ar key Ns | Ns Ar index : Ns Ar key
1248 Set the selected WEP key.
1249 If an
1250 .Ar index
1251 is not given, key 1 is set.
1252 A WEP key will be either 5 or 13
1253 characters (40 or 104 bits) depending of the local network and the
1254 capabilities of the adaptor.
1255 It may be specified either as a plain
1256 string or as a string of hexadecimal digits preceded by
1257 .Ql 0x .
1258 For maximum portability, hex keys are recommended;
1259 the mapping of text keys to WEP encryption is usually driver-specific.
1260 In particular, the
1261 .Tn Windows
1262 drivers do this mapping differently to
1263 .Fx .
1264 A key may be cleared by setting it to
1265 .Ql - .
1266 If WEP is supported then there are at least four keys.
1267 Some adaptors support more than four keys.
1268 If that is the case, then the first four keys
1269 (1-4) will be the standard temporary keys and any others will be adaptor
1270 specific keys such as permanent keys stored in NVRAM.
1271 .Pp
1272 Note that you must set a default transmit key with
1273 .Cm deftxkey
1274 for the system to know which key to use in encrypting outbound traffic.
1275 .It Cm wme
1276 Enable Wireless Multimedia Extensions (WME) support, if available,
1277 for the specified interface.
1278 WME is a subset of the IEEE 802.11e standard to support the
1279 efficient communication of realtime and multimedia data.
1280 To disable WME support, use
1281 .Fl wme .
1282 .Pp
1283 The following parameters are meaningful only when WME support is in use.
1284 Parameters are specified per-AC (Access Category) and
1285 split into those that are used by a station when acting
1286 as an access point and those for client stations in the BSS.
1287 The latter are received from the access point and may not be changed
1288 (at the station).
1289 The following Access Categories are recognized:
1290 .Pp
1291 .Bl -tag -width ".Cm AC_BK" -compact
1292 .It Cm AC_BE
1293 (or
1294 .Cm BE )
1295 best effort delivery,
1296 .It Cm AC_BK
1297 (or
1298 .Cm BK )
1299 background traffic,
1300 .It Cm AC_VI
1301 (or
1302 .Cm VI )
1303 video traffic,
1304 .It Cm AC_VO
1305 (or
1306 .Cm VO )
1307 voice traffic.
1308 .El
1309 .Pp
1310 AC parameters are case-insensitive.
1311 Traffic classification is done in the operating system using the
1312 vlan priority associated with data frames or the
1313 ToS (Type of Service) indication in IP-encapsulated frames.
1314 If neither information is present, traffic is assigned to the
1315 Best Effort (BE) category.
1316 .Bl -tag -width indent
1317 .It Cm ack Ar ac
1318 Set the ACK policy for QoS transmissions by the local station;
1319 this controls whether or not data frames transmitted by a station
1320 require an ACK response from the receiving station.
1321 To disable waiting for an ACK use
1322 .Fl ack .
1323 This parameter is applied only to the local station.
1324 .It Cm acm Ar ac
1325 Enable the Admission Control Mandatory (ACM) mechanism
1326 for transmissions by the local station.
1327 To disable the ACM use
1328 .Fl acm .
1329 On stations in a BSS this parameter is read-only and indicates
1330 the setting received from the access point.
1331 NB: ACM is not supported right now.
1332 .It Cm aifs Ar ac Ar count
1333 Set the Arbitration Inter Frame Spacing (AIFS)
1334 channel access parameter to use for transmissions
1335 by the local station.
1336 On stations in a BSS this parameter is read-only and indicates
1337 the setting received from the access point.
1338 .It Cm cwmin Ar ac Ar count
1339 Set the CWmin channel access parameter to use for transmissions
1340 by the local station.
1341 On stations in a BSS this parameter is read-only and indicates
1342 the setting received from the access point.
1343 .It Cm cwmax Ar ac Ar count
1344 Set the CWmax channel access parameter to use for transmissions
1345 by the local station.
1346 On stations in a BSS this parameter is read-only and indicates
1347 the setting received from the access point.
1348 .It Cm txoplimit Ar ac Ar limit
1349 Set the Transmission Opportunity Limit channel access parameter
1350 to use for transmissions by the local station.
1351 This parameter defines an interval of time when a WME station
1352 has the right to initiate transmissions onto the wireless medium.
1353 On stations in a BSS this parameter is read-only and indicates
1354 the setting received from the access point.
1355 .It Cm bss:aifs Ar ac Ar count
1356 Set the AIFS channel access parameter to send to stations in a BSS.
1357 This parameter is meaningful only when operating in ap mode.
1358 .It Cm bss:cwmin Ar ac Ar count
1359 Set the CWmin channel access parameter to send to stations in a BSS.
1360 This parameter is meaningful only when operating in ap mode.
1361 .It Cm bss:cwmax Ar ac Ar count
1362 Set the CWmax channel access parameter to send to stations in a BSS.
1363 This parameter is meaningful only when operating in ap mode.
1364 .It Cm bss:txoplimit Ar ac Ar limit
1365 Set the TxOpLimit channel access parameter to send to stations in a BSS.
1366 This parameter is meaningful only when operating in ap mode.
1367 .El
1368 .El
1369 .Pp
1370 The following parameters support an optional access control list
1371 feature available with some adaptors when operating in ap mode; see
1372 .Xr wlan_acl 4 .
1373 This facility allows an access point to accept/deny association
1374 requests based on the MAC address of the station.
1375 Note that this feature does not significantly enhance security
1376 as MAC address spoofing is easy to do.
1377 .Bl -tag -width indent
1378 .It Cm mac:add Ar address
1379 Add the specified MAC address to the database.
1380 Depending on the policy setting association requests from the
1381 specified station will be allowed or denied.
1382 .It Cm mac:allow
1383 Set the ACL policy to permit association only by
1384 stations registered in the database.
1385 .It Cm mac:del Ar address
1386 Delete the specified MAC address from the database.
1387 .It Cm mac:deny
1388 Set the ACL policy to deny association only by
1389 stations registered in the database.
1390 .It Cm mac:kick Ar address
1391 Force the specified station to be deauthenticated.
1392 This typically is done to block a station after updating the
1393 address database.
1394 .It Cm mac:open
1395 Set the ACL policy to allow all stations to associate.
1396 .It Cm mac:flush
1397 Delete all entries in the database.
1398 .El
1399 .Pp
1400 The following parameters are for compatibility with other systems:
1401 .Bl -tag -width indent
1402 .It Cm nwid Ar ssid
1403 Another name for the
1404 .Cm ssid
1405 parameter.
1406 Included for
1407 .Nx
1408 compatibility.
1409 .It Cm station Ar name
1410 Another name for the
1411 .Cm stationname
1412 parameter.
1413 Included for
1414 .Bsx
1415 compatibility.
1416 .It Cm wep
1417 Another way of saying
1418 .Cm wepmode on .
1419 Included for
1420 .Bsx
1421 compatibility.
1422 .It Fl wep
1423 Another way of saying
1424 .Cm wepmode off .
1425 Included for
1426 .Bsx
1427 compatibility.
1428 .It Cm nwkey key
1429 Another way of saying:
1430 .Dq Li "wepmode on weptxkey 1 wepkey 1:key wepkey 2:- wepkey 3:- wepkey 4:-" .
1431 Included for
1432 .Nx
1433 compatibility.
1434 .It Cm nwkey Xo
1435 .Sm off
1436 .Ar n : k1 , k2 , k3 , k4
1437 .Sm on
1438 .Xc
1439 Another way of saying
1440 .Dq Li "wepmode on weptxkey n wepkey 1:k1 wepkey 2:k2 wepkey 3:k3 wepkey 4:k4" .
1441 Included for
1442 .Nx
1443 compatibility.
1444 .It Fl nwkey
1445 Another way of saying
1446 .Cm wepmode off .
1447 Included for
1448 .Nx
1449 compatibility.
1450 .El
1451 .Pp
1452 The following parameters are specific to bridge interfaces:
1453 .Bl -tag -width indent
1454 .It Cm addm Ar interface
1455 Add the interface named by
1456 .Ar interface
1457 as a member of the bridge.
1458 The interface is put into promiscuous mode
1459 so that it can receive every packet sent on the network.
1460 .It Cm deletem Ar interface
1461 Remove the interface named by
1462 .Ar interface
1463 from the bridge.
1464 Promiscuous mode is disabled on the interface when
1465 it is removed from the bridge.
1466 .It Cm maxaddr Ar size
1467 Set the size of the bridge address cache to
1468 .Ar size .
1469 The default is 100 entries.
1470 .It Cm timeout Ar seconds
1471 Set the timeout of address cache entries to
1472 .Ar seconds
1473 seconds.
1474 If
1475 .Ar seconds
1476 is zero, then address cache entries will not be expired.
1477 The default is 240 seconds.
1478 .It Cm addr
1479 Display the addresses that have been learned by the bridge.
1480 .It Cm static Ar interface-name Ar address
1481 Add a static entry into the address cache pointing to
1482 .Ar interface-name .
1483 Static entries are never aged out of the cache or re-placed, even if the
1484 address is seen on a different interface.
1485 .It Cm deladdr Ar address
1486 Delete
1487 .Ar address
1488 from the address cache.
1489 .It Cm flush
1490 Delete all dynamically-learned addresses from the address cache.
1491 .It Cm flushall
1492 Delete all addresses, including static addresses, from the address cache.
1493 .It Cm discover Ar interface
1494 Mark an interface as a
1495 .Dq discovering
1496 interface.
1497 When the bridge has no address cache entry
1498 (either dynamic or static)
1499 for the destination address of a packet,
1500 the bridge will forward the packet to all
1501 member interfaces marked as
1502 .Dq discovering .
1503 This is the default for all interfaces added to a bridge.
1504 .It Cm -discover Ar interface
1505 Clear the
1506 .Dq discovering
1507 attribute on a member interface.
1508 For packets without the
1509 .Dq discovering
1510 attribute, the only packets forwarded on the interface are broadcast
1511 or multicast packets and packets for which the destination address
1512 is known to be on the interface's segment.
1513 .It Cm learn Ar interface
1514 Mark an interface as a
1515 .Dq learning
1516 interface.
1517 When a packet arrives on such an interface, the source
1518 address of the packet is entered into the address cache as being a
1519 destination address on the interface's segment.
1520 This is the default for all interfaces added to a bridge.
1521 .It Cm -learn Ar interface
1522 Clear the
1523 .Dq learning
1524 attribute on a member interface.
1525 .It Cm sticky Ar interface
1526 Mark an interface as a
1527 .Dq sticky
1528 interface.
1529 Dynamically learned address entries are treated at static once entered into
1530 the cache.
1531 Sticky entries are never aged out of the cache or replaced, even if the
1532 address is seen on a different interface.
1533 .It Cm -sticky Ar interface
1534 Clear the
1535 .Dq sticky
1536 attribute on a member interface.
1537 .It Cm private Ar interface
1538 Mark an interface as a
1539 .Dq private
1540 interface.
1541 A private interface does not forward any traffic to any other port that is also
1542 a private interface.
1543 .It Cm -private Ar interface
1544 Clear the
1545 .Dq private
1546 attribute on a member interface.
1547 .It Cm span Ar interface
1548 Add the interface named by
1549 .Ar interface
1550 as a span port on the bridge.
1551 Span ports transmit a copy of every frame received by the bridge.
1552 This is most useful for snooping a bridged network passively on
1553 another host connected to one of the span ports of the bridge.
1554 .It Cm -span Ar interface
1555 Delete the interface named by
1556 .Ar interface
1557 from the list of span ports of the bridge.
1558 .It Cm stp Ar interface
1559 Enable Spanning Tree protocol on
1560 .Ar interface .
1561 The
1562 .Xr if_bridge 4
1563 driver has support for the IEEE 802.1D Spanning Tree protocol (STP).
1564 Spanning Tree is used to detect and remove loops in a network topology.
1565 .It Cm -stp Ar interface
1566 Disable Spanning Tree protocol on
1567 .Ar interface .
1568 This is the default for all interfaces added to a bridge.
1569 .It Cm edge Ar interface
1570 Set
1571 .Ar interface
1572 as an edge port.
1573 An edge port connects directly to end stations cannot create bridging
1574 loops in the network, this allows it to transition straight to forwarding.
1575 .It Cm -edge Ar interface
1576 Disable edge status on
1577 .Ar interface .
1578 .It Cm autoedge Ar interface
1579 Allow
1580 .Ar interface
1581 to automatically detect edge status.
1582 This is the default for all interfaces added to a bridge.
1583 .It Cm -autoedge Ar interface
1584 Disable automatic edge status on
1585 .Ar interface .
1586 .It Cm ptp Ar interface
1587 Set the
1588 .Ar interface
1589 as a point to point link.
1590 This is required for straight transitions to forwarding and
1591 should be enabled on a direct link to another RSTP capable switch.
1592 .It Cm -ptp Ar interface
1593 Disable point to point link status on
1594 .Ar interface .
1595 This should be disabled for a half duplex link and for an interface
1596 connected to a shared network segment,
1597 like a hub or a wireless network.
1598 .It Cm autoptp Ar interface
1599 Automatically detect the point to point status on
1600 .Ar interface
1601 by checking the full duplex link status.
1602 This is the default for interfaces added to the bridge.
1603 .It Cm -autoptp Ar interface
1604 Disable automatic point to point link detection on
1605 .Ar interface .
1606 .It Cm maxage Ar seconds
1607 Set the time that a Spanning Tree protocol configuration is valid.
1608 The default is 20 seconds.
1609 The minimum is 6 seconds and the maximum is 40 seconds.
1610 .It Cm fwddelay Ar seconds
1611 Set the time that must pass before an interface begins forwarding
1612 packets when Spanning Tree is enabled.
1613 The default is 15 seconds.
1614 The minimum is 4 seconds and the maximum is 30 seconds.
1615 .It Cm hellotime Ar seconds
1616 Set the time between broadcasting of Spanning Tree protocol
1617 configuration messages.
1618 The hello time may only be changed when operating in legacy stp mode.
1619 The default is 2 seconds.
1620 The minimum is 1 second and the maximum is 2 seconds.
1621 .It Cm priority Ar value
1622 Set the bridge priority for Spanning Tree.
1623 The default is 32768.
1624 The minimum is 0 and the maximum is 61440.
1625 .It Cm proto Ar value
1626 Set the Spanning Tree protocol.
1627 The default is rstp.
1628 The available options are stp and rstp.
1629 .It Cm holdcnt Ar value
1630 Set the transmit hold count for Spanning Tree.
1631 This is the number of packets transmitted before being rate limited.
1632 The default is 6.
1633 The minimum is 1 and the maximum is 10.
1634 .It Cm ifpriority Ar interface Ar value
1635 Set the Spanning Tree priority of
1636 .Ar interface
1637 to
1638 .Ar value .
1639 The default is 128.
1640 The minimum is 0 and the maximum is 240.
1641 .It Cm ifpathcost Ar interface Ar value
1642 Set the Spanning Tree path cost of
1643 .Ar interface
1644 to
1645 .Ar value .
1646 The default is calculated from the link speed.
1647 To change a previously selected path cost back to automatic, set the
1648 cost to 0.
1649 The minimum is 1 and the maximum is 200000000.
1650 .It Cm ifmaxaddr Ar interface Ar size
1651 Set the maximum number of hosts allowed from an interface, packets with unknown
1652 source addresses are dropped until an existing host cache entry expires or is
1653 removed.
1654 Set to 0 to disable.
1655 .El
1656 .Pp
1657 The following parameters are specific to lagg interfaces:
1658 .Bl -tag -width indent
1659 .It Cm laggport Ar interface
1660 Add the interface named by
1661 .Ar interface
1662 as a port of the aggregation interface.
1663 .It Cm -laggport Ar interface
1664 Remove the interface named by
1665 .Ar interface
1666 from the aggregation interface.
1667 .It Cm laggproto Ar proto
1668 Set the aggregation protocol.
1669 The default is failover.
1670 The available options are failover, fec, lacp, loadbalance, roundrobin and
1671 none.
1672 .El
1673 .Pp
1674 The following parameters are specific to IP tunnel interfaces,
1675 .Xr gif 4 :
1676 .Bl -tag -width indent
1677 .It Cm tunnel Ar src_addr dest_addr
1678 Configure the physical source and destination address for IP tunnel
1679 interfaces.
1680 The arguments
1681 .Ar src_addr
1682 and
1683 .Ar dest_addr
1684 are interpreted as the outer source/destination for the encapsulating
1685 IPv4/IPv6 header.
1686 .It Fl tunnel
1687 Unconfigure the physical source and destination address for IP tunnel
1688 interfaces previously configured with
1689 .Cm tunnel .
1690 .It Cm deletetunnel
1691 Another name for the
1692 .Fl tunnel
1693 parameter.
1694 .El
1695 .Pp
1696 The following parameters are specific to GRE tunnel interfaces,
1697 .Xr gre 4 :
1698 .Bl -tag -width indent
1699 .It Cm grekey Ar key
1700 Configure the GRE key to be used for outgoing packets.
1701 Note that
1702 .Xr gre 4 will always accept GRE packets with invalid or absent keys.
1703 This command will result in a four byte MTU reduction on the interface.
1704 .El
1705 .Pp
1706 The following parameters are specific to
1707 .Xr pfsync 4
1708 interfaces:
1709 .Bl -tag -width indent
1710 .It Cm maxupd Ar n
1711 Set the maximum number of updates for a single state which
1712 can be collapsed into one.
1713 This is an 8-bit number; the default value is 128.
1714 .El
1715 .Pp
1716 The following parameters are specific to
1717 .Xr vlan 4
1718 interfaces:
1719 .Bl -tag -width indent
1720 .It Cm vlan Ar vlan_tag
1721 Set the VLAN tag value to
1722 .Ar vlan_tag .
1723 This value is a 16-bit number which is used to create an 802.1Q
1724 VLAN header for packets sent from the
1725 .Xr vlan 4
1726 interface.
1727 Note that
1728 .Cm vlan
1729 and
1730 .Cm vlandev
1731 must both be set at the same time.
1732 .It Cm vlandev Ar iface
1733 Associate the physical interface
1734 .Ar iface
1735 with a
1736 .Xr vlan 4
1737 interface.
1738 Packets transmitted through the
1739 .Xr vlan 4
1740 interface will be
1741 diverted to the specified physical interface
1742 .Ar iface
1743 with 802.1Q VLAN encapsulation.
1744 Packets with 802.1Q encapsulation received
1745 by the parent interface with the correct VLAN tag will be diverted to
1746 the associated
1747 .Xr vlan 4
1748 pseudo-interface.
1749 The
1750 .Xr vlan 4
1751 interface is assigned a
1752 copy of the parent interface's flags and the parent's ethernet address.
1753 The
1754 .Cm vlandev
1755 and
1756 .Cm vlan
1757 must both be set at the same time.
1758 If the
1759 .Xr vlan 4
1760 interface already has
1761 a physical interface associated with it, this command will fail.
1762 To
1763 change the association to another physical interface, the existing
1764 association must be cleared first.
1765 .Pp
1766 Note: if the hardware tagging capability
1767 is set on the parent interface, the
1768 .Xr vlan 4
1769 pseudo
1770 interface's behavior changes:
1771 the
1772 .Xr vlan 4
1773 interface recognizes that the
1774 parent interface supports insertion and extraction of VLAN tags on its
1775 own (usually in firmware) and that it should pass packets to and from
1776 the parent unaltered.
1777 .It Fl vlandev Op Ar iface
1778 If the driver is a
1779 .Xr vlan 4
1780 pseudo device, disassociate the parent interface from it.
1781 This breaks the link between the
1782 .Xr vlan 4
1783 interface and its parent,
1784 clears its VLAN tag, flags and its link address and shuts the interface down.
1785 The
1786 .Ar iface
1787 argument is useless and hence deprecated.
1788 .El
1789 .Pp
1790 The following parameters are specific to
1791 .Xr carp 4
1792 interfaces:
1793 .Bl -tag -width indent
1794 .It Cm advbase Ar seconds
1795 Specifies the base of the advertisement interval in seconds.
1796 The acceptable values are 1 to 255.
1797 The default value is 1.
1798 .\" The default value is
1799 .\" .Dv CARP_DFLTINTV .
1800 .It Cm advskew Ar interval
1801 Specifies the skew to add to the base advertisement interval to
1802 make one host advertise slower than another host.
1803 It is specified in 1/256 of seconds.
1804 The acceptable values are 1 to 254.
1805 The default value is 0.
1806 .It Cm pass Ar phrase
1807 Set the authentication key to
1808 .Ar phrase .
1809 .It Cm vhid Ar n
1810 Set the virtual host ID.
1811 This is a required setting.
1812 Acceptable values are 1 to 255.
1813 .El
1814 .Pp
1815 The
1816 .Nm
1817 utility displays the current configuration for a network interface
1818 when no optional parameters are supplied.
1819 If a protocol family is specified,
1820 .Nm
1821 will report only the details specific to that protocol family.
1822 .Pp
1823 If the
1824 .Fl m
1825 flag is passed before an interface name,
1826 .Nm
1827 will display the capability list and all
1828 of the supported media for the specified interface.
1829 If
1830 .Fl L
1831 flag is supplied, address lifetime is displayed for IPv6 addresses,
1832 as time offset string.
1833 .Pp
1834 Optionally, the
1835 .Fl a
1836 flag may be used instead of an interface name.
1837 This flag instructs
1838 .Nm
1839 to display information about all interfaces in the system.
1840 The
1841 .Fl d
1842 flag limits this to interfaces that are down, and
1843 .Fl u
1844 limits this to interfaces that are up.
1845 When no arguments are given,
1846 .Fl a
1847 is implied.
1848 .Pp
1849 The
1850 .Fl l
1851 flag may be used to list all available interfaces on the system, with
1852 no other additional information.
1853 Use of this flag is mutually exclusive
1854 with all other flags and commands, except for
1855 .Fl d
1856 (only list interfaces that are down)
1857 and
1858 .Fl u
1859 (only list interfaces that are up).
1860 .Pp
1861 The
1862 .Fl v
1863 flag may be used to get more verbose status for an interface.
1864 .Pp
1865 The
1866 .Fl C
1867 flag may be used to list all of the interface cloners available on
1868 the system, with no additional information.
1869 Use of this flag is mutually exclusive with all other flags and commands.
1870 .Pp
1871 The
1872 .Fl k
1873 flag causes keying information for the interface, if available, to be
1874 printed.
1875 For example, the values of 802.11 WEP keys will be printed, if accessible to
1876 the current user.
1877 This information is not printed by default, as it may be considered
1878 sensitive.
1879 .Pp 
1880 If the network interface driver is not present in the kernel then
1881 .Nm
1882 will attempt to load it.
1883 The
1884 .Fl n
1885 flag disables this behavior.
1886 .Pp
1887 Only the super-user may modify the configuration of a network interface.
1888 .Sh NOTES
1889 The media selection system is relatively new and only some drivers support
1890 it (or have need for it).
1891 .Sh EXAMPLES
1892 Assign the IPv4 address
1893 .Li 192.0.2.10 ,
1894 with a network mask of
1895 .Li 255.255.255.0 ,
1896 to the interface
1897 .Li fxp0 :
1898 .Dl # ifconfig fxp0 inet 192.0.2.10 netmask 255.255.255.0
1899 .Pp
1900 Add the IPv4 address
1901 .Li 192.0.2.45 ,
1902 with the CIDR network prefix
1903 .Li /28 ,
1904 to the interface
1905 .Li ed0 ,
1906 using
1907 .Cm add
1908 as a synonym for the canonical form of the option
1909 .Cm alias :
1910 .Dl # ifconfig ed0 inet 192.0.2.45/28 add
1911 .Pp
1912 Remove the IPv4 address
1913 .Li 192.0.2.45
1914 from the interface
1915 .Li ed0 :
1916 .Dl # ifconfig ed0 inet 192.0.2.45 -alias
1917 .Pp
1918 Add the IPv6 address
1919 .Li 2001:DB8:DBDB::123/48
1920 to the interface
1921 .Li em0 :
1922 .Dl # ifconfig em0 inet6 2001:db8:bdbd::123 prefixlen 48 alias
1923 Note that lower case hexadecimal IPv6 addresses are acceptable.
1924 .Pp
1925 Remove the IPv6 address added in the above example,
1926 using the
1927 .Li /
1928 character as shorthand for the network prefix,
1929 and using
1930 .Cm delete
1931 as a synonym for the canonical form of the option
1932 .Fl alias :
1933 .Dl # ifconfig em0 inet6 2001:db8:bdbd::123/48 delete
1934 .Pp
1935 Configure the interface
1936 .Li xl0 ,
1937 to use 100baseTX, full duplex Ethernet media options:
1938 .Dl # ifconfig xl0 media 100baseTX mediaopt full-duplex
1939 .Pp
1940 Create the software network interface
1941 .Li gif1 :
1942 .Dl # ifconfig gif1 create
1943 .Pp
1944 Destroy the software network interface
1945 .Li gif1 :
1946 .Dl # ifconfig gif1 destroy
1947 .Sh DIAGNOSTICS
1948 Messages indicating the specified interface does not exist, the
1949 requested address is unknown, or the user is not privileged and
1950 tried to alter an interface's configuration.
1951 .Sh SEE ALSO
1952 .Xr netstat 1 ,
1953 .Xr carp 4 ,
1954 .Xr netintro 4 ,
1955 .Xr pfsync 4 ,
1956 .Xr polling 4 ,
1957 .Xr vlan 4 ,
1958 .\" .Xr eon 5 ,
1959 .Xr rc 8 ,
1960 .Xr routed 8 ,
1961 .Xr sysctl 8
1962 .Sh HISTORY
1963 The
1964 .Nm
1965 utility appeared in
1966 .Bx 4.2 .
1967 .Sh BUGS
1968 Basic IPv6 node operation requires a link-local address on each
1969 interface configured for IPv6.
1970 Normally, such an address is automatically configured by the
1971 kernel on each interface added to the system; this behaviour may
1972 be disabled by setting the sysctl MIB variable
1973 .Va net.inet6.ip6.auto_linklocal
1974 to 0.
1975 .Pp
1976 If you delete such an address using
1977 .Nm ,
1978 the kernel may act very odd.
1979 Do this at your own risk.