Rasp-Config-Reseau-Setup-Wifi-2

De MCHobby - Wiki
Sauter à la navigation Sauter à la recherche


MCHobby investit du temps et de l'argent dans la réalisation de traduction et/ou documentation. C'est un travail long et fastidieux réalisé dans l'esprit Open-Source... donc gratuit et librement accessible.
SI vous aimez nos traductions et documentations ALORS aidez nous à en produire plus en achetant vos produits chez MCHobby.

Avant de commencer


Configurer la connexion WiFi est facile et sans détour. Vous avez seulement besoin d'ajouter le SSID de votre réseau sans-fil et votre mot de passe dans un fichier de configuration.

Etape 1 - Booter sans module WiFi

Commencez pas booter votre Raspberry Pi sans brancher le module WiFi.

Etape 2 - Editer /etc/network/interfaces

Open a Terminal session by clicking on the LXTerminal icon, and enter the following command into it:

sudo nano /etc/network/interfaces

{{{2}}}
Crédit: AdaFruit Industries www.adafruit.com

auto lo

iface lo inet loopback
iface eth0 inet dhcp

allow-hotplug wlan0
auto wlan0


iface wlan0 inet dhcp
        wpa-ssid "ssid"
        wpa-psk "password"

If you are using a 'hidden' SSID, try the following (hat-tip to www.dafinga.net/2013/01/how-to-setup-raspberry-pi-with-hidden.html)

auto lo

iface lo inet loopback
iface eth0 inet dhcp

auto wlan0
allow-hotplug wlan0
iface wlan0 inet dhcp
   wpa-scan-ssid 1
   wpa-ap-scan 1
   wpa-key-mgmt WPA-PSK
   wpa-proto RSN WPA
   wpa-pairwise CCMP TKIP
   wpa-group CCMP TKIP
   wpa-ssid "My Secret SSID"
   wpa-psk "My SSID PSK"

iface default inet dhcp

Etape 3 - Les informations de connexion

his opens an editor screen of the wifi configuration file you need to change.

{{{2}}}
Crédit: AdaFruit Industries www.adafruit.com

The two places where you need to make a change are on the last two lines. Change the file so that it looks like this:

{{{2}}}
Crédit: AdaFruit Industries www.adafruit.com

Of course, you should put in your network and password!

Vous devez remplacer:

  • Linda-and-Simon par l'identification de votre réseau WiFi
  • passwordgoeshere par le mot de passe utilisé pour protéger votre réseau WiFi.

Note that you need to keep the double-quote characters around your wireless network name and password.

This kind of editor does not let you use the mouse. Instead, use the cursor keys to move around the file.

Etape 4 - Sauver le fichier

When you have finished press [ctrl]x (en pressant simultanément les touches CTRL et X). This will ask if you want to save the modified files.

{{{2}}}
Crédit: AdaFruit Industries www.adafruit.com

Press 'Y' and then Return to save the file with the same name.

Etape 5

Shut down your Raspberry Pi, plug the WiFi adapter in and start it up again. You should find that the Raspberry Pi connects using the WiFi adapter as it boots up.