Skip to content

Instantly share code, notes, and snippets.

@bcreasy
Created October 29, 2013 16:29
Show Gist options
  • Save bcreasy/7218011 to your computer and use it in GitHub Desktop.
Save bcreasy/7218011 to your computer and use it in GitHub Desktop.
/etc/netctl/wifi -- password hash generated by `iconv -t utf16le | openssl md4`
Description='Wireless'
Interface=wlp3s0
Connection=wireless
Security=wpa-configsection
WPAConfigSection=(
'ssid="SSID"'
'key_mgmt=WPA-EAP'
'proto=RSN WPA2'
'pairwise=CCMP'
'group=CCMP'
'eap=PEAP'
'identity="username"'
'password=hash:$generated_hash'
'phase2="auth=MSCHAPV2"'
'ca_cert="/etc/ssl/certs/wifi_CA.crt"'
'ca_path="/etc/ssl/certs"'
)
IP=dhcp
AutoWired=yes
@BrixSat
Copy link

BrixSat commented Sep 27, 2023

echo -n MySecretPassword | iconv -t utf16le | openssl md4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment