Skip to content

Instantly share code, notes, and snippets.

@jmerriweather
Last active May 18, 2018 04:23
Show Gist options
  • Save jmerriweather/99999709ed60bce157d54b541489da5c to your computer and use it in GitHub Desktop.
Save jmerriweather/99999709ed60bce157d54b541489da5c to your computer and use it in GitHub Desktop.

/etc/network/interfaces:

auto eth0
iface eth0 inet dhcp
    wpa-driver wired
    wpa-conf /etc/wpa_supplicant.conf

/etc/wpa_supplicant.conf:

network={
    key_mgmt=IEEE8021X
    pairwise=CCMP
    identity="USERNAME"
    password="PASSWORD"
    ca_cert="/usr/share/ca-certificates/my-root-ca/my-root.crt"
    eap=PEAP
    eapol_flags=0
    phase2="auth=MSCHAPV2"
}

Tested: No

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