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