]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man4/an.4
disk(9): Fix a few mandoc related errors
[FreeBSD/FreeBSD.git] / share / man / man4 / an.4
1 .\" Copyright (c) 1997, 1998, 1999
2 .\"     Bill Paul <wpaul@ee.columbia.edu>. 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. All advertising materials mentioning features or use of this software
13 .\"    must display the following acknowledgement:
14 .\"     This product includes software developed by Bill Paul.
15 .\" 4. Neither the name of the author nor the names of any co-contributors
16 .\"    may be used to endorse or promote products derived from this software
17 .\"   without specific prior written permission.
18 .\"
19 .\" THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
20 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 .\" ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
23 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
29 .\" THE POSSIBILITY OF SUCH DAMAGE.
30 .\"
31 .\" $FreeBSD$
32 .\"
33 .Dd July 16, 2005
34 .Dt AN 4
35 .Os
36 .Sh NAME
37 .Nm an
38 .Nd "Aironet Communications 4500/4800 wireless network adapter driver"
39 .Sh SYNOPSIS
40 To compile this driver into the kernel,
41 place the following lines in your
42 kernel configuration file:
43 .Bd -ragged -offset indent
44 .Cd "device an"
45 .Cd "device wlan"
46 .Ed
47 .Pp
48 Alternatively, to load the driver as a
49 module at boot time, place the following line in
50 .Xr loader.conf 5 :
51 .Bd -literal -offset indent
52 if_an_load="YES"
53 .Ed
54 .Sh DEPRECATION NOTICE
55 This driver is scheduled for removal prior to the release of
56 .Fx 13.0
57 .Sh DESCRIPTION
58 The
59 .Nm
60 driver provides support for Aironet Communications 4500 and 4800
61 wireless network adapters and variants, including the following:
62 .Pp
63 .Bl -bullet -compact -offset indent
64 .It
65 Aironet Communications 4500 and 4800 series
66 .It
67 Cisco Aironet 340 and 350 series
68 .It
69 Xircom Wireless Ethernet Adapter
70 .El
71 .Pp
72 Support for these devices include the ISA, PCI and PCMCIA
73 varieties.
74 The Aironet 4500 series adapters operate at 1 and 2Mbps while
75 the Aironet 4800 series and Cisco adapters can operate at 1, 2, 5.5 and 11Mbps.
76 The ISA, PCI
77 and PCMCIA devices are all based on the same core PCMCIA modules
78 and all have the same programming interface, however unlike the
79 Lucent WaveLAN/IEEE cards, the ISA and PCI cards appear to the
80 host as normal ISA and PCI devices and do not require any PCCARD
81 support.
82 .Pp
83 The PCMCIA Aironet cards require PC Card support, including the
84 kernel
85 .Xr pccard 4
86 driver.
87 ISA cards can either be configured to use ISA Plug and Play
88 or to use a particular I/O address and IRQ
89 by properly setting the DIP switches on the board.
90 (The default
91 switch setting is for Plug and Play.)
92 The
93 .Nm
94 driver has Plug and Play support and will work in either configuration,
95 however when using a hard-wired I/O address and IRQ, the driver
96 configuration and the NIC's switch settings must agree.
97 PCI cards
98 require no switch settings of any kind and will be automatically
99 probed and attached.
100 .Pp
101 All host/device interaction with the Aironet cards is via programmed I/O.
102 The Aironet devices support 802.11 and 802.3 frames, power management,
103 BSS (infrastructure) and IBSS (ad-hoc) operation modes.
104 The
105 .Nm
106 driver encapsulates all IP and ARP traffic as 802.11 frames, however
107 it can receive either 802.11 or 802.3 frames.
108 Transmit speed is
109 selectable between 1Mbps, 2Mbps, 5.5Mbps, 11Mbps or
110 "auto" (the NIC automatically chooses the best speed).
111 .Pp
112 By default, the
113 .Nm
114 driver configures the Aironet card for infrastructure operation.
115 .Pp
116 For more information on configuring this device, see
117 .Xr ifconfig 8 .
118 .Sh DIAGNOSTICS
119 .Bl -diag
120 .It "an%d: init failed"
121 The Aironet card failed to become ready after an initialization command was
122 issued.
123 .It "an%d: failed to allocate %d bytes on NIC"
124 The driver was unable to allocate memory for transmit frames in the
125 NIC's on-board RAM.
126 .It "an%d: device timeout"
127 The Aironet card failed to generate an interrupt to acknowledge a transmit
128 command.
129 .El
130 .Sh SEE ALSO
131 .Xr altq 4 ,
132 .Xr arp 4 ,
133 .Xr miibus 4 ,
134 .Xr netintro 4 ,
135 .Xr wlan 4 ,
136 .Xr ancontrol 8 ,
137 .Xr ifconfig 8
138 .Sh HISTORY
139 The
140 .Nm
141 device driver first appeared in
142 .Fx 4.0 .
143 .Sh AUTHORS
144 The
145 .Nm
146 driver was written by
147 .An Bill Paul Aq Mt wpaul@ee.columbia.edu .