X-Git-Url: http://git.wpitchoune.net/gitweb/?p=www.git;a=blobdiff_plain;f=www%2Ftricks%2Fraspberry_pi3_configure_wifi.html;fp=www%2Ftricks%2Fraspberry_pi3_configure_wifi.html;h=08d2d1dd3019646a5b91ea8eb48c59055e50d01c;hp=0000000000000000000000000000000000000000;hb=30d3073487892c62872bfc407c18cedb2247b875;hpb=6fff7902fa472ba93dda3c69455ce74b35d04fda diff --git a/www/tricks/raspberry_pi3_configure_wifi.html b/www/tricks/raspberry_pi3_configure_wifi.html new file mode 100644 index 0000000..08d2d1d --- /dev/null +++ b/www/tricks/raspberry_pi3_configure_wifi.html @@ -0,0 +1,90 @@ + + + + + + + +Raspberry PI - Configure the Wifi + + + + + + + +
+
+

For WPA Wifi, edit the file /etc/wpa_supplicant/wpa_supplicant.conf +as root.

+
+
+

Example:

+
+
+
+
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
+update_config=1
+country=FR
+
+network={
+	ssid="MY_SSID"
+	psk="MY_PASSWORD"
+	key_mgmt=WPA-PSK
+}
+
+
+
+

Replace MY_SSID by the name of the Wifi network and MY_PASSWORD +by the password of the Wifi network.

+
+
+

Multiple networks can be declared, the one with higher priority will +be used if possible:

+
+
+
+
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
+update_config=1
+country=FR
+
+network={
+	ssid="MY_SSID"
+	psk="MY_PASSWORD"
+	key_mgmt=WPA-PSK
+	priority=2
+}
+
+network={
+	ssid="MY_SSID2"
+	psk="MY_PASSWORD2"
+	key_mgmt=WPA-PSK
+	priority=1
+}
+
+
+
+ + + + \ No newline at end of file