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