X-Git-Url: https://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=6d1bc65901cf5325a6f0205105de811518da97ce;hp=0000000000000000000000000000000000000000;hb=59b8914458cc7575272f1df48340ed4850efce73;hpb=4182a6ef2adac43d72b7b1c073bdbb4f466f64e3 diff --git a/www/tricks/raspberry_pi3_configure_wifi.html b/www/tricks/raspberry_pi3_configure_wifi.html new file mode 100644 index 0000000..6d1bc65 --- /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=1
+}
+
+network={
+	ssid="MY_SSID2"
+	psk="MY_PASSWORD2"
+	key_mgmt=WPA-PSK
+	priority=2
+}
+
+
+
+ + + + \ No newline at end of file