Client Server :
http://apprendre-python.com/page-reseaux-sockets-python-port
Paramétrage Wifi en CLI d'un Raspberry Pi
http:// www.framboise314.fr/le-wifi-avec-jessie-en-ligne-de-commande/
Si vous utilisez une version récente de Raspbian le fichier /etc/network/interfaces devrait ressembler à celui qui est ci-dessous. Si vous l’avez modifié, il faut ABSOLUMENT le remettre comme celui-ci !.
auto lo iface lo inet loopback auto eth0 allow-hotplug eth0 iface eth0 inet manual auto wlan0 allow-hotplug wlan0 iface wlan0 inet manual wpa-conf /etc/wpa_supplicant/wpa_supplicant .conf auto wlan1 allow-hotplug wlan1 iface wlan1 inet manual wpa-conf /etc/wpa_supplicant/wpa_supplicant .conf |
Si vous regardez le contenu du fichier /etc/wpa_supplicant/wpa_supplicant.conf, vous verrez qu’il contient :
1
2
3
|
pi@raspberrypi: /etc/wpa_supplicant $ sudo cat wpa_supplicant.conf ctrl_interface=DIR= /var/run/wpa_supplicant GROUP=netdev update_config=1 |
Modifiez le en ajoutant ces lignes à la fin du fichier :
network={ ssid= "Votre_SSID" psk= "Votre_Mot_De_Passe" } |
Sinon :
https://www.raspberrypi.org/documentation/configuration/wireless/wireless-cli.md
Flash Trigger
http://www.glacialwanderer.com/hobbyrobotics/?p=10