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