Skip to content

Instantly share code, notes, and snippets.

@cchen140
Last active November 14, 2021 23:04
Show Gist options
  • Save cchen140/fc13ca3d13cc63b94129b6c0594933af to your computer and use it in GitHub Desktop.
Save cchen140/fc13ca3d13cc63b94129b6c0594933af to your computer and use it in GitHub Desktop.
WiFi Configurations for Raspberry Pi
# This file is located at /boot/wpa_supplicant.conf
country=GB
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
#ssid="EML33T2"
#psk="emrooftop"
#psk=c150059ac2d9df589127a8ee0a1cc475099c2d6e60ea48644c21684cb7ee6b23
ssid="2.4 26S6-U1"
psk="CXNK0030C5DC"
key_mgmt=WPA-PSK
}
# Password is generated by the following command:
# echo -n 'Your_UIUC_Password' | iconv -t UTF-16LE | openssl md4
network={
ssid="IllinoisNet"
key_mgmt=WPA-EAP
eap=TTLS
group=CCMP
pairwise=CCMP
identity="UIUC_NETID"
password=hash:Your_Hashed_UIUC_Password
priority=1
phase2="auth=MSCHAPV2"
}
@tommyjtl
Copy link

Hi CY, have you encountered any DHCP issues while obtaining the IP from IllinoisNet? I just tested your configuration on campus. The connection is established, but no valid IP was assigned to my RPi. I was not able to get online.

Thanks.

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