]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man4/ipw.4
The firmware files are included in the base system now, reflect this here..
[FreeBSD/FreeBSD.git] / share / man / man4 / ipw.4
1 .\" Copyright (c) 2004-2006
2 .\"     Damien Bergamini <damien.bergamini@free.fr>. 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 unmodified, this list of conditions, and the following
9 .\"    disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\"
14 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 .\" SUCH DAMAGE.
25 .\"
26 .\" $FreeBSD$
27 .\"
28 .Dd March 5, 2007
29 .Os
30 .Dt IPW 4
31 .Sh NAME
32 .Nm ipw
33 .Nd "Intel PRO/Wireless 2100 IEEE 802.11 driver"
34 .Sh SYNOPSIS
35 To compile this driver into the kernel,
36 place the following lines in your
37 kernel configuration file:
38 .Bd -ragged -offset indent
39 .Cd "device ipw"
40 .Cd "device pci"
41 .Cd "device wlan"
42 .Cd "device firmware"
43 .Ed
44 .Pp
45 Alternatively, to load the driver as a
46 module at boot time, place the following lines in
47 .Xr loader.conf 5 :
48 .Bd -literal -offset indent
49 if_ipw_load="YES"
50 ipw_bss_load="YES"
51 ipw_ibss_load="YES"
52 ipw_monitor_load="YES"
53 wlan_load="YES"
54 firmware_load="YES"
55 .Ed
56 .Sh DESCRIPTION
57 The
58 .Nm
59 driver provides support for the
60 .Tn Intel
61 PRO/Wireless 2100 MiniPCI network adapter.
62 .Pp
63 By default, the
64 .Nm
65 driver configures the adapter for BSS operation (aka infrastructure mode).
66 This mode requires the use of an access point.
67 .Pp
68 For more information on configuring this device, see
69 .Xr ifconfig 8 .
70 .Pp
71 This driver requires firmware to be loaded before it will work.
72 For the loaded firmware to work the license at
73 .Pa /usr/share/doc/legal/intel_ipw/LICENSE
74 must be agreed to and the following line be added to
75 .Xr loader.conf 5 :
76 .Pp
77 .Dl "legal.intel_ipw.license_ack=1"
78 .Sh FILES
79 .Bl -tag -width ".Pa /usr/share/doc/legal/intel_ipw/LICENSE" -compact
80 .It Pa /usr/share/doc/legal/intel_ipw/LICENSE
81 .Nm
82 firmware license
83 .El
84 .Sh EXAMPLES
85 Join an existing BSS network (i.e., connect to an access point):
86 .Pp
87 .Dl "ifconfig ipw0 inet 192.168.0.20 netmask 0xffffff00"
88 .Pp
89 Join a specific BSS network with network name
90 .Dq Li my_net :
91 .Pp
92 .Dl "ifconfig ipw0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net"
93 .Pp
94 Join a specific BSS network with 40-bit WEP encryption:
95 .Bd -literal -offset indent
96 ifconfig ipw0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e
97     wepmode on wepkey 0x1234567890 weptxkey 1
98 .Ed
99 .Pp
100 Join a specific BSS network with 104-bit WEP encryption:
101 .Bd -literal -offset indent
102 ifconfig ipw0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e
103     wepmode on wepkey 0x01020304050607080910111213 weptxkey 1
104 .Ed
105 .Sh DIAGNOSTICS
106 .Bl -diag
107 .It "ipw%d: device timeout"
108 The driver will reset the hardware.
109 This should not happen.
110 .It "ipw%d: firmware error"
111 The onboard microcontroller crashes for some reason.
112 The driver will reset the hardware.
113 This should not happen.
114 .It "ipw%d: timeout waiting for firmware initialization to complete"
115 The onboard microcontroller failed to initialize in time.
116 This should not happen.
117 .It "ipw%d: could not load firmware image '%s'"
118 The driver failed to load the firmware image using the
119 .Xr firmware 9
120 subsystem.
121 Verify that the necessary firmware modules are loaded and the
122 license agreement
123 .Xr loader 8
124 tunable has been set.
125 .It "ipw%d: could not load microcode"
126 An attempt to upload the microcode image to the onboard microcontroller failed.
127 This should not happen.
128 .It "ipw%d: could not load firmware"
129 An attempt to upload the firmware image to the onboard microcontroller failed.
130 This should not happen.
131 .El
132 .Sh SEE ALSO
133 .Xr altq 4 ,
134 .Xr iwi 4 ,
135 .Xr pci 4 ,
136 .Xr wlan 4 ,
137 .Xr ifconfig 8
138 .Sh AUTHORS
139 The
140 .Nm
141 driver was written by
142 .An Damien Bergamini Aq damien@FreeBSD.org .