xref: /dragonfly/share/man/man4/urtwn.4 (revision 7d84b73d)
1.\"
2.\" Copyright (c) 2010 Damien Bergamini <damien.bergamini@free.fr>
3.\"
4.\" Permission to use, copy, modify, and distribute this software for any
5.\" purpose with or without fee is hereby granted, provided that the above
6.\" copyright notice and this permission notice appear in all copies.
7.\"
8.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15.\"
16.\" $FreeBSD: head/share/man/man4/urtwn.4 289399 2015-10-16 00:38:05Z bdrewery $
17.\"
18.Dd November 26, 2023
19.Dt URTWN 4
20.Os
21.Sh NAME
22.Nm urtwn
23.Nd Realtek RTL8188CU/RTL8188RU/RTL8188EU/RTL8192CU USB IEEE 802.11b/g/n wireless network device
24.Sh SYNOPSIS
25To compile this driver into the kernel,
26place the following lines in your
27kernel configuration file:
28.Bd -ragged -offset indent
29.Cd "device ehci"
30.Cd "device uhci"
31.Cd "device ohci"
32.Cd "device usb"
33.Cd "device urtwn"
34.Cd "device wlan"
35.Ed
36.Pp
37Alternatively, to load the driver as a
38module at boot time, place the following line in
39.Xr loader.conf 5 :
40.Bd -literal -offset indent
41if_urtwn_load="YES"
42.Ed
43.Pp
44In both cases, place the following line in
45.Xr loader.conf 5
46to acknowledge the firmware license (see below):
47.Bd -literal -offset indent
48legal.realtek.license_ack=1
49.Ed
50.Sh DESCRIPTION
51The
52.Nm
53driver supports USB 2.0 wireless network devices based on Realtek
54RTL8188CUS, RTL8188CE-VAU, RTL8188EUS, RTL8188RU and RTL8192CU chipsets.
55.Pp
56The RTL8188CUS and RTL8188EUS are highly integrated 802.11n adapters that
57combine a MAC, a 1T1R capable baseband and an RF in a single chip.
58They operate in the 2GHz spectrum only.
59The RTL8188RU is a high-power variant of the RTL8188CUS.
60The RTL8188CE-VAU is a PCI Express Mini Card adapter that attaches
61to the USB interface.
62.Pp
63The RTL8192CU is a highly integrated multiple-in, multiple-out (MIMO)
64802.11n adapter that combines a MAC, a 2T2R capable baseband and an
65RF in a single chip.
66It operates in the 2GHz spectrum only.
67.Pp
68This driver requires the firmware built with the
69.Xr urtwnfw 4
70module to work.
71For the loaded firmware to be enabled for use the license at
72.Pa /usr/share/doc/legal/realtek/LICENSE
73must be agreed to by adding the following line to
74.Xr loader.conf 5 :
75.Pp
76.Dl "legal.realtek.license_ack=1"
77.Sh FILES
78.Bl -tag -width ".Pa /usr/share/doc/legal/realtek/LICENSE" -compact
79.It Pa /usr/share/doc/legal/realtek/LICENSE
80.Nm
81firmware license
82.El
83.Sh HARDWARE
84The
85.Nm
86driver supports Realtek RTL8188CU/RTL8188RU/RTL8188EU/RTL8192CU based USB
87IEEE 802.11b/g/n wireless network adapters, including:
88.Pp
89.Bl -tag -width Ds -offset indent -compact
90.It Adafruit USB WiFi (802.11b/g/n) Module
91.It Alfa AWUS036NHR v2
92.It ASUS USB-N10 NANO
93.It Belkin F7D1102 Surf Wireless Micro
94.It D-Link DWA-123 rev \&D1
95.It D-Link DWA-125 rev \&D1
96.It D-Link DWA-131
97.It Edimax EW-7811Un
98.It Edimax EW-7811Un V2 (N150)
99.It Elecom WDC-150SU2M
100.It Netgear WNA1000M
101.It Realtek RTL8192CU
102.It Realtek RTL8188CUS
103.It TP-LINK TL-WN722N v2
104.It TP-LINK TL-WN723N v3
105.It TP-LINK TL-WN725N v2
106.El
107.Sh EXAMPLES
108Join an existing BSS network (i.e., connect to an access point):
109.Bd -literal -offset indent
110ifconfig wlan create wlandev urtwn0 inet 192.168.0.20 \e
111    netmask 0xffffff00
112.Ed
113.Pp
114Join a specific BSS network with network name
115.Dq Li my_net :
116.Pp
117.Dl "ifconfig wlan create wlandev urtwn0 ssid my_net up"
118.Pp
119Join a specific BSS network with 64-bit WEP encryption:
120.Bd -literal -offset indent
121ifconfig wlan create wlandev urtwn0 ssid my_net \e
122        wepmode on wepkey 0x1234567890 weptxkey 1 up
123.Ed
124.Sh DIAGNOSTICS
125.Bl -diag
126.It "urtwn%d: error %d, could not read firmware %s"
127For some reason, the driver was unable to read the microcode file from the
128filesystem.
129The file might be missing or corrupted.
130.It "urtwn%d: device timeout"
131A frame dispatched to the hardware for transmission did not complete in time.
132The driver will reset the hardware.
133This should not happen.
134.El
135.Sh SEE ALSO
136.Xr ifmedia 4 ,
137.Xr intro 4 ,
138.Xr netintro 4 ,
139.Xr urtwnfw 4 ,
140.Xr usb 4 ,
141.Xr wlan 4 ,
142.Xr wlan_ccmp 4 ,
143.Xr wlan_tkip 4 ,
144.Xr wlan_wep 4 ,
145.Xr ifconfig 8 ,
146.Xr wpa_supplicant 8
147.Rs
148.%T Realtek
149.%U http://www.realtek.com.tw
150.Re
151.Sh HISTORY
152The
153.Nm
154driver first appeared in
155.Ox 4.9
156and
157.Fx 10.0 .
158.Sh AUTHORS
159The
160.Nm
161driver was written by
162.An Damien Bergamini Aq Mt damien@openbsd.org .
163.Sh CAVEATS
164The
165.Nm
166driver does not support any of the 802.11n capabilities offered by the
167adapters.
168