Please note that due to the widely varying nature of Linux distributions, we cannot fully support wireless under Linux. The directions offered here are based purely on use of the underlying tools, and ignore any potential capabilities of or problems with distributions specific managemnet programs.
/etc/wpa_supplicant.conf
as follows, substituting your own SSID and passphrase
as configured on your wireless router:network={ ssid="Home-SSID" scan_ssid=1 key_mgmt=WPA-PSK psk="your very secret passphrase" }
chown root:root /etc/wpa_supplicant.conf chmod 600 /etc/wpa_supplicant.conf
wpa_supplicant -c /etc/wpa_supplicant.conf -i ath0 -D madwifiThe output from wpa_supplicant should look something like this:
l2_packet_receive - recv: Network is down Trying to associate with 00:0b:0e:0f:87:41 (SSID='Home-SSID' freq=5180 MHz) Associated with 00:0b:0e:0f:87:41 WPA: Key negotiation completed with 00:0b:0e:0f:87:41
/sbin/dhclient ath0
Your computer should now be connected to the your home wireless network.