vide en ligne depuis 02.10.1998


Configuration WIFI sur un serveur Ubuntu 10.10

wifi

La carte SMC est reconnue mais le drivers n'est pas installé !
Pour résoudre le problème il faut aller chercher le driver sur le net.

Attention à bien prendre la dernière version stable

$ wget -O /lib/firmware/isl3886pci http://daemonizer.de/prism54/prism54-fw/fw-softmac/2.13.25.0.arm

puis supprimer l'ancien et ajouter le nouveau

$ modprobe -r p54pci
$ modprobe p54pci

Installer les wireless-tools

$ sudo apt-get install wireless-tools

Installer wpa_supplicant ( http://doc.ubuntu-fr.org/wpa )

$ sudo apt-get install wpasupplicant

Modification du fichier /etc/network/interfaces

$ sudo nano /etc/network/interfaces

# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
# auto eth1 # Interface Ethernet désactivée
# iface eth1 inet dhcp # Interface Ethernet DHCP désactivée
# Carte WIFI
auto wlan0
iface wlan0 inet static
address 192.168.1.30
netmask 255.255.255.0
gateway 192.168.1.1
wpa-essid SFR_ABCD
wpa-psk abcdefghijklmnopqrstuv
wpa-key-mgmt WPA-PSK
wpa-group TKIP
wpa-pairwise CCMP TKIP
wpa-ap-scan 1

Un petit test pour s'assurer que tout va bien !

$ sudo iwlist wlan0 scan

voila, c'est tout...