La carte est reconnue et les pilotes déjà installés !
shell# lspci | grep -i wireless
02:03.0 Network controller: Intel Corporation PRO/Wireless 2200BG Network Connection (rev 05)
Téléchargement du firmware (non libre) ici :http://ipw2200.sourceforge.net/firmware.php (la version 3.0)
Et installation des fichiers dans /lib/firmware
Quelques outils indispensables :
shell# aptitude install wireless-tools
shell# aptitude install wpa_supplicant
Tout est chargé?
shell# lsmod | grep ipw2200
ipw2200 126084 0
ieee80211 29416 1 ipw2200
firmware_class 9600 2 pcmcia,ipw2200
Dans /etc/network/interfaces :
# The loopback network interface
auto lo
iface lo inet loopback
iface eth2 inet dhcp
pre-up /sbin/wpa_supplicant -i eth2 -c "/etc/wpa_supplicant.conf" -Dwext -B -w
post-down /sbin/wpa_cli -i eth2 terminate
auto eth2
Dans /etc/wpa_supplicant.conf :
# WPA-PSK/TKIP
ap_scan=1
dot11RSNAConfigSATimeout=10
update_config=1
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="canard"
mode=managed
priority=1
scan_ssid=1
key_mgmt=WPA-PSK
proto=WPA2
pairwise=TKIP
group=TKIP
key_mgmt=WPA-PSK
psk="ma clef WPA2"
}