Skip to content

Instantly share code, notes, and snippets.

@binitshah
Forked from justbuchanan/GTwifi
Last active February 14, 2018 03:00
Show Gist options
  • Save binitshah/a2b6c41ffc8decdaab2c59cc748b6400 to your computer and use it in GitHub Desktop.
Save binitshah/a2b6c41ffc8decdaab2c59cc748b6400 to your computer and use it in GitHub Desktop.
Arch Linux netctl config for GTwifi at Georgia Tech
# This netctl profile is for connecting to Georgia Tech's GTwifi network
# Usage:
# 1. Copy/download this profile, 'GTwifi', to /etc/netctl/
# 2. Set the 'identity' and 'password' fields appropriately
# 3. Set the Interface to your device. you can run 'iw dev' to get a list.
# 4. Set file permissions and ownership:
# chown root:root /etc/netctl/GTwifi
# chmod 0600 /etc/netctl/GTwifi
# 5. Start the profile
# netctl start GTwifi
# 6. Test the connection
# ping -c 3 www.google.com
# 7. Enable the profile so that systemd service starts on each boot
# netctl enable GTwifi
Description='GTwifi'
Interface=wlan0
Connection=wireless
Security=wpa-configsection
ESSID=GTwifi
IP=dhcp
WPAConfigSection=(
'ssid="GTwifi"'
'proto=RSN'
'key_mgmt=WPA-EAP'
'eap=PEAP'
'phase2="auth=MSCHAPV2"'
'ca_cert="/etc/ssl/certs/AddTrust_External_Root.pem"'
'identity="**********"'
'password="**********"'
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment