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