]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man4/iwi.4
This commit was generated by cvs2svn to compensate for changes in r146895,
[FreeBSD/FreeBSD.git] / share / man / man4 / iwi.4
1 .\" $FreeBSD$
2 .\"
3 .\" Copyright (c) 2004, 2005
4 .\"     Damien Bergamini <damien.bergamini@free.fr>. All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice unmodified, this list of conditions, and the following
11 .\"    disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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 .Dd May 02, 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 .Cd "device iwi"
36 .Cd "device pci"
37 .Cd "device wlan"
38 .Sh DESCRIPTION
39 The
40 .Nm
41 driver provides support for
42 .Tn Intel
43 PRO/Wireless 2200BG/2915ABG MiniPCI and 2225BG PCI network adapters.
44 .Pp
45 By default, the
46 .Nm
47 driver configures the adapter for BSS operation (aka infrastructure mode).
48 This mode requires the use of an access point.
49 .Pp
50 For more information on configuring this device, see
51 .Xr ifconfig 8 .
52 .Pp
53 This driver requires firmware to be loaded before it will work.
54 You need to obtain
55 .Xr iwicontrol 8
56 from the IWI web page listed below to accomplish loading the firmware
57 before 
58 .Xr ifconfig 8 
59 will work.
60 .Sh EXAMPLES
61 Join an existing BSS network (ie: connect to an access point):
62 .Pp
63 .Dl "ifconfig iwi0 inet 192.168.0.20 netmask 0xffffff00"
64 .Pp
65 Join a specific BSS network with network name
66 .Dq Li my_net :
67 .Pp
68 .Dl "ifconfig iwi0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net"
69 .Pp
70 Join a specific BSS network with 64 bits WEP encryption:
71 .Bd -literal -offset indent
72 ifconfig iwi0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e
73         wepmode on wepkey 0x1234567890
74 .Ed
75 .Pp
76 Join a specific BSS network with 128bits WEP encryption:
77 .Bd -literal -offset indent
78 ifconfig iwi0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e
79         wepmode on wepkey 0x01020304050607080910111213
80 .Ed
81 .Sh DIAGNOSTICS
82 .Bl -diag
83 .It "iwi%d: device timeout"
84 The driver will reset the hardware. This should not happen.
85 .It "iwi%d: Please load firmware"
86 The required firmeware has not been loaded into the card, and therefore
87 the card cannot operate.  Load the firmware with
88 .Xr iwicontrol 8
89 before proceeding.
90 .El
91 .Sh SEE ALSO
92 .Xr an 4 ,
93 .Xr ath 4 ,
94 .Xr ipw 4 ,
95 .Xr pci 4 ,
96 .Xr wi 4 ,
97 .Xr wlan 4 ,
98 .Xr ifconfig 8 ,
99 .Xr iwicontrol 8 ,
100 .Xr wicontrol 8
101 .Rs
102 .%T The IWI Web Page
103 .%O http://damien.bergamini.free.fr/ipw/
104 .Re
105 .Sh AUTHORS
106 The
107 .Nm
108 driver was written by
109 .An Damien Bergamini Aq damien@freebsd.org .