xref: /freebsd/share/man/man4/ipw.4 (revision 262e143bd46171a6415a5b28af260a5efa2a3db8)
1.\" Copyright (c) 2004
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 July 16, 2005
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
35To compile this driver into the kernel,
36place the following lines in your
37kernel configuration file:
38.Bd -ragged -offset indent
39.Cd "device ipw"
40.Cd "device pci"
41.Cd "device wlan"
42.Ed
43.Pp
44Alternatively, to load the driver as a
45module at boot time, place the following lines in
46.Xr loader.conf 5 :
47.Bd -literal -offset indent
48if_ipw_load="YES"
49wlan_load="YES"
50.Ed
51.Sh DESCRIPTION
52The
53.Nm
54driver provides support for the
55.Tn Intel
56PRO/Wireless 2100 MiniPCI network adapter.
57.Pp
58By default, the
59.Nm
60driver configures the adapter for BSS operation (aka infrastructure mode).
61This mode requires the use of an access point.
62.Pp
63For more information on configuring this device, see
64.Xr ifconfig 8 .
65.Pp
66This driver requires firmware to be loaded before it will work.
67You need to obtain
68.Xr ipwcontrol 8
69from the IPW web page listed below to accomplish loading the firmware
70before
71.Xr ifconfig 8
72will work.
73.Sh EXAMPLES
74Join an existing BSS network (i.e., connect to an access point):
75.Pp
76.Dl "ifconfig ipw0 inet 192.168.0.20 netmask 0xffffff00"
77.Pp
78Join a specific BSS network with network name
79.Dq Li my_net :
80.Pp
81.Dl "ifconfig ipw0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net"
82.Pp
83Join a specific BSS network with 40-bit WEP encryption:
84.Bd -literal -offset indent
85ifconfig ipw0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e
86    wepmode on wepkey 0x1234567890
87.Ed
88.Pp
89Join a specific BSS network with 104-bit WEP encryption:
90.Bd -literal -offset indent
91ifconfig ipw0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e
92    wepmode on wepkey 0x01020304050607080910111213
93.Ed
94.Sh DIAGNOSTICS
95.Bl -diag
96.It "ipw%d: device timeout"
97The driver will reset the hardware.
98This should not happen.
99.It "ipw%d: Please load firmware"
100The required firmware has not been loaded into the card, and therefore
101the card cannot operate.
102Load the firmware with
103.Xr ipwcontrol 8
104before proceeding.
105.El
106.Sh SEE ALSO
107.Xr an 4 ,
108.Xr ath 4 ,
109.Xr iwi 4 ,
110.Xr pci 4 ,
111.Xr wi 4 ,
112.Xr wlan 4 ,
113.Xr ifconfig 8 ,
114.Xr ipwcontrol 8 ,
115.Xr wicontrol 8
116.Rs
117.%T The IPW Web Page
118.%O http://damien.bergamini.free.fr/ipw/
119.Re
120.Sh AUTHORS
121The
122.Nm
123driver was written by
124.An Damien Bergamini Aq damien@FreeBSD.org .
125