Skip to content

Instantly share code, notes, and snippets.

@chdsbd
Created September 4, 2016 01:51
Show Gist options
  • Save chdsbd/bd1ebe5702fcb7ba0b50301635555a12 to your computer and use it in GitHub Desktop.
Save chdsbd/bd1ebe5702fcb7ba0b50301635555a12 to your computer and use it in GitHub Desktop.
Files for UMass Network
# /etc/wpa_supplicant/wpa_supplicant.conf
ap_scan=0
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="eduroam"
proto=RSN
key_mgmt=WPA-EAP
pairwise=CCMP
auth_alg=OPEN
eap=TTLS
identity="<NETID>@umass.edu"
password="<SPIRE PASSWORD>"
phase1="tls_disable_tlsv1_1=1 tls_disable_tlsv1_2=1"
phase2="auth=PAP"
id_str="umass"
}
# /etc/network/interfaces
auto lo
iface lo inet loopback
auto eth0
allow-hotplug eth0
iface eth0 inet manual
auto wlan0
allow-hotplug wlan0
iface wlan0 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
auto wlan1
allow-hotplug wlan1
iface wlan1 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment