Difference between revisions of "Raspberry Pi: Wifi"
Jump to navigation
Jump to search
Rafahsolis (talk | contribs) (Created page with "=== WPA2 Enterprise Network === <syntaxhighlight lang="bash"> sudo nano /etc/wpa_supplicant/wpa_supplicant.conf </syntaxhighlight><syntaxhighlight lang="text"> network={...") Tag: visualeditor |
Rafahsolis (talk | contribs) m Tag: visualeditor |
||
| Line 1: | Line 1: | ||
| − | |||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
sudo nano /etc/wpa_supplicant/wpa_supplicant.conf | sudo nano /etc/wpa_supplicant/wpa_supplicant.conf | ||
| − | </syntaxhighlight><syntaxhighlight lang="text"> | + | </syntaxhighlight> |
| + | |||
| + | === WPA/WPA2-PSK Network === | ||
| + | <syntaxhighlight lang="text"> | ||
| + | network={ | ||
| + | ssid="myssid" | ||
| + | psk="mypasskey" | ||
| + | proto=RSN | ||
| + | key_mgmt=WPA-PSK | ||
| + | pairwise=CCMP | ||
| + | auth_alg=OPEN | ||
| + | } | ||
| + | </syntaxhighlight><br /> | ||
| + | ===WPA2 Enterprise Network=== | ||
| + | <syntaxhighlight lang="text"> | ||
network={ | network={ | ||
ssid="AU_WiFi" | ssid="AU_WiFi" | ||
Revision as of 11:01, 31 October 2019
sudo nano /etc/wpa_supplicant/wpa_supplicant.conf
WPA/WPA2-PSK Network
network={
ssid="myssid"
psk="mypasskey"
proto=RSN
key_mgmt=WPA-PSK
pairwise=CCMP
auth_alg=OPEN
}
WPA2 Enterprise Network
network={
ssid="AU_WiFi"
# For hidden SSIDs
scan_ssid=1
mode=0
key_mgmt=WPA-EAP
pairwise=CCMP TKIP
identity="XXXXXXXX"
password="XXXXXXXX"
phase1="peaplabel=0"
phase2="auth=MSCHAPV2"
}