]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man4/iwi.4
This commit was generated by cvs2svn to compensate for changes in r145479,
[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 .Sh EXAMPLES
53 Join an existing BSS network (ie: connect to an access point):
54 .Pp
55 .Dl "ifconfig iwi0 inet 192.168.0.20 netmask 0xffffff00"
56 .Pp
57 Join a specific BSS network with network name
58 .Dq Li my_net :
59 .Pp
60 .Dl "ifconfig iwi0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net"
61 .Pp
62 Join a specific BSS network with 64 bits WEP encryption:
63 .Bd -literal -offset indent
64 ifconfig iwi0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e
65         wepmode on wepkey 0x1234567890
66 .Ed
67 .Pp
68 Join a specific BSS network with 128bits WEP encryption:
69 .Bd -literal -offset indent
70 ifconfig iwi0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e
71         wepmode on wepkey 0x01020304050607080910111213
72 .Ed
73 .Sh DIAGNOSTICS
74 .Bl -diag
75 .It "iwi%d: device timeout"
76 The driver will reset the hardware. This should not happen.
77 .El
78 .Sh SEE ALSO
79 .Xr an 4 ,
80 .Xr ath 4 ,
81 .Xr ipw 4 ,
82 .Xr pci 4 ,
83 .Xr wi 4 ,
84 .Xr wlan 4 ,
85 .Xr ifconfig 8 ,
86 .Xr iwicontrol 8,
87 .Xr wicontrol 8
88 .Rs
89 .%T The IWI Web Page
90 .%O http://damien.bergamini.free.fr/ipw/
91 .Re
92 .Sh AUTHORS
93 The
94 .Nm
95 driver was written by
96 .An Damien Bergamini Aq damien@freebsd.org .