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