Stretch WIFI client: Difference between revisions

From embeddedTS Manuals
No edit summary
(Cleaned up use of "you" and other style fixes)
Line 1: Line 1:
Wireless interfaces are also managed with /etc/network/interfaces.d/.  For example, to connect as a client to a WPA network with DHCP.
Wireless interfaces are also managed with configuration files in "/etc/network/interfaces.d/".  For example, to connect as a client to a WPA network with DHCP.


Install wpa_supplicant:
Install wpa_supplicant:
Line 18: Line 18:
   }
   }


Use the PSK in your network interfaces file.
Use the hashed PSK in the specific network interfaces file for added security:
<source lang=bash>
<source lang=bash>
echo "auto wlan0
echo "auto wlan0
Line 31: Line 31:
</source>
</source>


For more information on configuring wifi, see Debian's guide [https://wiki.debian.org/WiFi/HowToUse#wpa_supplicant here].
For more information on configuring Wi-Fi, see Debian's guide [https://wiki.debian.org/WiFi/HowToUse#wpa_supplicant here].

Revision as of 17:12, 9 July 2019

Wireless interfaces are also managed with configuration files in "/etc/network/interfaces.d/". For example, to connect as a client to a WPA network with DHCP.

Install wpa_supplicant:

apt-get update && apt-get install wpasupplicant -y

Run:

wpa_passphrase youressid yourpassword

This will output something like:

 network={
 	ssid="youressid"
 	#psk="yourpassword"
 	psk=151790fab3bf3a1751a269618491b54984e192aa19319fc667397d45ec8dee5b
 }

Use the hashed PSK in the specific network interfaces file for added security:

echo "auto wlan0
iface wlan0 inet dhcp
    wpa-ssid youressid
    wpa-psk 151790fab3bf3a1751a269618491b54984e192aa19319fc667397d45ec8dee5b" > /etc/network/interfaces.d/wlan0

To make this take effect immediately:

service networking restart

For more information on configuring Wi-Fi, see Debian's guide here.