Using wpa supplicant
From Poggs' Wiki
Contents |
[edit]
What is WPA Supplicant?
wpasupplicant provides the necessary key generation and exchange to allow a wireless card to connect to an SSID protected with WPA. It can also do plain WEP.
Since this article was written, Gnome's [[NetworkManager][1]] has soared above wpasupplicant in terms of functionality and ease-of-use. I recommend you take a look.
[edit]
Configuration examples
These are the most basic examples to get you started.
[edit]
WPA Pre-Shared Key
[edit]
Using TKIP
network={
ssid="$SSID$"
key_mgmt=WPA-PSK
proto=WPA
pairwise=TKIP
group=TKIP
psk="$PSK$"
}
[edit]
Using TKIP + CCMP
network={
ssid="$SSID$"
key_mgmt=WPA-PSK
proto=WPA
pairwise=CCMP TKIP
group=CCMP TKIP
psk="$PSK$"
}
[edit]
WEP
[edit]
128-bit
network={
ssid="$SSID$"
key_mgmt=NONE
wep_key0="$26_HEX_CHARACTERS$"
wep_tx_keyidx=0
}
[edit]
64-bit
network={
ssid="$SSID$"
key_mgmt=NONE
wep_key0="$13_HEX_CHARACTERS"
wep_tx_keyidx=0
}
