Last active
November 26, 2016 23:53
-
-
Save valeth/3482a2d923722a94c2900d3a5b66dfa8 to your computer and use it in GitHub Desktop.
simple WPA supplicant example conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Match] | |
Name=* | |
[Network] | |
DHCP=yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ctrl_interface=DIR=/run/wpa_supplicant GROUP=wheel | |
eapol_version=1 | |
fast_reauth=1 | |
update_config=1 | |
# WPA2 | |
network={ | |
ssid="Your SSID" | |
key_mgmt=WPA-PSK | |
proto=RSN | |
pairwise=CCMP TKIP | |
group=CCMP TKIP | |
psk= | |
} | |
# WPA | |
network={ | |
ssid="Your SSID" | |
key_mgmt=WPA-PSK | |
proto=WPA | |
pairwise=TKIP | |
group=TKIP | |
psk= | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Checklist
wpa_supplicant-IFNAME.conf
in/etc/wpa_supplicant/
20-dhcp.network
in/etc/systemd/network/
wpa_supplicant@IFNAME
service enabled and startedsystemd-networkd
service enabled and startedsystemd-resolved
service enabled and started/run/systemd/resolve/resolv.conf
symlinked to/etc/resolv.conf