Difference between revisions of "Madwifi"

From ThinkWiki
Jump to: navigation, search
(Packages: Added more links for official debian packages)
(Added SUSE and Madwifi)
Line 56: Line 56:
 
If you use the livna repository to install madwifi for Fedora Core 5, it doesn't correctly update the modprobe configuration files.  A [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=187640 bug] has been filed.  The quick fix is to move the lines that were in
 
If you use the livna repository to install madwifi for Fedora Core 5, it doesn't correctly update the modprobe configuration files.  A [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=187640 bug] has been filed.  The quick fix is to move the lines that were in
 
/etc/modprobe.d/madwifi into /etc/modprobe.conf and system-config-network now can configure the card.
 
/etc/modprobe.d/madwifi into /etc/modprobe.conf and system-config-network now can configure the card.
 +
 +
===Using Madwifi with SUSE Linux 10.1===
 +
As of [[Category:SUSE SUSE Linux]] 10.1, the Madwifi packages are no longer included in the SUSE distribution because of the presence of closed source code. However, I was able to download, install, and configure Madwifi for my IBM T40 with the
 +
[[IBM 11a/b/g Wireless LAN Mini PCI Adapter|IBM 11a/b/g Wireless Adapter (Atheros AR5212 802.11abg)]] as follows:
 +
* Start yast2 and select Software--Installation Source. Add http://madwifi.org/suse/ as a source
 +
* Install packages <tt>madwifi</tt> and <tt>madwifi-kmp-default</tt> (the latter has the kernel module, replace <tt>default</tt> with <tt>smp</tt> or other non-default kernel package if you're not running the default Suse kernel package as determined by <tt>uname -r</tt>)
 +
* Reboot so the kernel modules can be loaded.
 +
* Load the kernel modules by hand and see if the kernel recognizes your hardware:
 +
<tt>modprobe aes; modprobe wlan_ccmp; modprobe ath_pci; lsmod |egrep 'Module|aes|wlan|ath'</tt>
 +
* If recognized, put the modprobe lines above in your <tt>/etc/init.d/boot.local</tt> file.  Otherwise, check for Linux kernel/Madwifi incompatibilities and hardware issues.
 +
* Start yast2 and go to Network Devices-->Network Card and configure your wireless card.  I recommmend checking the "Network Manager" box, as that allows dynamic GUI control over the wireless and Ethernet NICs.
 +
* I have WPA-PSK enabled, so here's the fields I filled out: "User Controlled" device activation, DHCP Automatic Address Setup, "Managed" operating mode, "any" ESSID, "WPA-PSK" auth mode, key input type "passphrase" and I typed in my passphrase.  I left expert settings alone.
  
 
=== Related links ===  
 
=== Related links ===  

Revision as of 22:04, 31 October 2006

Multiband Atheros Driver for WiFi

Linux driver for 802.11a/b/g universal NIC cards - Cardbus, PCI, or miniPCI - using Atheros chip sets.

The following adapters sold by IBM use the Atheros chips:

Project Homepage

http://www.madwifi.org (old page: http://sourceforge.net/projects/madwifi)

Packages

Source

Detailed instructions can be found on the MadWiFi Wiki.

$ svn checkout http://svn.madwifi.org/trunk madwifi-ng
  • madwifi-old:
$ svn checkout http://svn.madwifi.org/branches/madwifi-old madwifi-old


Installation

  • Make sure that you've got sysctl support and the net/radio enabled (wireless extensions) in your kernel. Install the driver with make & make install
  • further more you like to install the wireless tools from wireless tools. Make sure the versions fit together by
$ iwconfig --version

Setting up wpa_supplicant with wpa-psk.

You can enable the wireless LAN status LED on your Thinkpad by following these instructions (tested on Thinkpad x60s).

Status

in development, usable

OpenSource HAL

The "official" driver consists of an opensource wrapper with binary HAL (Hardware Abstraction Layer). This HAL is not a binary firmware like with the Intel Wireless chips, but a piece of code that needs to runs in the Linux kernel. The vendors reasoning behind this is, that since the Atheros chip could be tuned to any frequency, and hence interfere with systems operating in those frequencies, that we simply need to accept this binary module.
Obviously this binary HAL is unacceptable to the Linux kernel developers, and the Atheros driver in this state will never become part of the official kernel.
Some OpenBSD developers facing the same issue, reverse engineered the binary HAL and have produced an OpenSource version. Hopefully a driver based on this might be included with the Linux kernel at some point in time, and picked up by the mainstream distributions.

Problems with system-config-network and Fedora Core 5

If you use the livna repository to install madwifi for Fedora Core 5, it doesn't correctly update the modprobe configuration files. A bug has been filed. The quick fix is to move the lines that were in /etc/modprobe.d/madwifi into /etc/modprobe.conf and system-config-network now can configure the card.

Using Madwifi with SUSE Linux 10.1

As of 10.1, the Madwifi packages are no longer included in the SUSE distribution because of the presence of closed source code. However, I was able to download, install, and configure Madwifi for my IBM T40 with the IBM 11a/b/g Wireless Adapter (Atheros AR5212 802.11abg) as follows:

  • Start yast2 and select Software--Installation Source. Add http://madwifi.org/suse/ as a source
  • Install packages madwifi and madwifi-kmp-default (the latter has the kernel module, replace default with smp or other non-default kernel package if you're not running the default Suse kernel package as determined by uname -r)
  • Reboot so the kernel modules can be loaded.
  • Load the kernel modules by hand and see if the kernel recognizes your hardware:

modprobe aes; modprobe wlan_ccmp; modprobe ath_pci; lsmod |egrep 'Module|aes|wlan|ath'

  • If recognized, put the modprobe lines above in your /etc/init.d/boot.local file. Otherwise, check for Linux kernel/Madwifi incompatibilities and hardware issues.
  • Start yast2 and go to Network Devices-->Network Card and configure your wireless card. I recommmend checking the "Network Manager" box, as that allows dynamic GUI control over the wireless and Ethernet NICs.
  • I have WPA-PSK enabled, so here's the fields I filled out: "User Controlled" device activation, DHCP Automatic Address Setup, "Managed" operating mode, "any" ESSID, "WPA-PSK" auth mode, key input type "passphrase" and I typed in my passphrase. I left expert settings alone.

Related links