|
NAMEmwl —
Marvell 88W8363 IEEE 802.11n wireless network driver
SYNOPSISTo compile this driver into the kernel, place the following lines in your kernel configuration file:device mwl
device mwlfw
device wlan
device firmware Alternatively, to load the driver as a module at boot time, place the following line in loader.conf(5): if_mwl_load="YES" DESCRIPTIONThemwl driver provides support for IEEE 802.11n
wireless network adapters based on Marvell 88W8363 parts. PCI and/or CardBus
interfaces are supported.
This driver requires the firmware built with the
Supported features include 802.11n, power management, BSS, MBSS, and host-based access point operation modes. All host/device interaction is via DMA. The The driver supports Devices supported by the EXAMPLESJoin an existing BSS network (ie: connect to an access point):ifconfig wlan create wlandev mwl0 inet 192.168.0.20 \ netmask 0xffffff00" Join a specific BSS network with network name
“ ifconfig wlan create wlandev mwl0 inet 192.168.0.20 \ netmask 0xffffff00 ssid my_net" Join a specific BSS network with WEP encryption: ifconfig wlan0 create wlandev mwl0 ifconfig wlan0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \ wepmode on wepkey 0x8736639624 Create an 802.11g host-based access point: ifconfig wlan0 create wlandev mwl0 wlanmode hostap ifconfig wlan0 inet 192.168.0.10 netmask 0xffffff00 ssid my_ap \ mode 11g Create an 802.11a mesh station: ifconfig wlan0 create wlandev mwl0 wlanmode mesh ifconfig wlan0 meshid my_mesh mode 11a inet 192.168.0.10/24 Create two virtual 802.11a host-based access points, one with WEP enabled and one with no security, and bridge them to the fxp0 (wired) device: ifconfig wlan0 create wlandev mwl0 wlanmode hostap \ ssid paying-customers wepmode on wepkey 0x1234567890 \ mode 11a up ifconfig wlan1 create wlandev mwl0 wlanmode hostap bssid \ ssid freeloaders up ifconfig bridge0 create addm wlan0 addm wlan1 addm fxp0 up DIAGNOSTICS
SEE ALSOcardbus(4), intro(4), mwlfw(4), pci(4), wlan(4), wlan_ccmp(4), wlan_tkip(4), wlan_wep(4), wlan_xauth(4), hostapd(8), ifconfig(8), wpa_supplicant(8)HISTORYThemwl device driver first appeared in
FreeBSD 8.0.
BUGSThe driver does not support power-save operation in station mode; consequently power use is suboptimal (e.g. on a laptop).
Visit the GSP FreeBSD Man Page Interface. |