|
NAMEwpi —
Intel 3945ABG Wireless LAN IEEE 802.11 driver
SYNOPSISTo compile this driver into the kernel, place the following lines in your kernel configuration file:device wpi
device wpifw
device pci
device wlan
device wlan_amrr
device firmware Alternatively, to load the driver as a module at boot time, place the following line in loader.conf(5): if_wpi_load="YES" DESCRIPTIONThewpi driver provides support for the Intel 3945ABG
Wireless network adapter. The driver supports station ,
adhoc , adhoc-demo ,
hostap , and monitor mode
operation. Only one virtual interface may be configured at any time.
The This driver requires the firmware built with the
The FILES
EXAMPLESJoin an existing BSS network (i.e., connect to an access point):ifconfig wlan0 create wlandev wpi0 inet 192.168.0.20 \ netmask 0xffffff00 Join a specific BSS network with network name
“ ifconfig wlan0 create wlandev wpi0
ssid my_net up Join a specific BSS network with 64-bit WEP encryption: ifconfig wlan0 create wlandev wpi0 ssid my_net \ wepmode on wepkey 0x1234567890 weptxkey 1 up Create an IBSS network with 128-bit WEP encryption on the channel 4: ifconfig wlan0 create wlandev wpi0 wlanmode adhoc ssid my_net \ wepmode on wepkey 0x01020304050607080910111213 weptxkey 1 \ channel 4 Join/create an 802.11b IBSS network with network name
“ ifconfig wlan0 create wlandev wpi0 wlanmode adhoc ifconfig wlan0 inet 192.168.0.22 netmask 0xffffff00 ssid my_net \ mode 11b Create an 802.11g host-based access point: ifconfig wlan0 create wlandev wpi0 wlanmode hostap ifconfig wlan0 inet 192.168.0.10 netmask 0xffffff00 ssid my_ap \ mode 11g DIAGNOSTICS
SEE ALSOpci(4), wlan(4), wlan_amrr(4), wlan_ccmp(4), wlan_tkip(4), wlan_wep(4), wlan_xauth(4), wpifw(4), hostapd(8), ifconfig(8), wpa_supplicant(8)AUTHORSThe originalwpi driver was written for
OpenBSD by Damien Bergamini
<damien.bergamini@free.fr>.
Benjamin Close
<benjsc@FreeBSD.org>
ported wpi to FreeBSD.
CAVEATSHostap mode is not directly supported by the device; it is implemented through IBSS mode (as a result, DFS/passive channels are not available in this mode).Powersave may be unstable on some networks (results in occasional 'wpi%d: device timeout' messages); you can try to disable it to improve device stability.
Visit the GSP FreeBSD Man Page Interface. |