Linux WPA-Enterprise Config

NetworkManager / GUI config

  • Download the Shmoocon 2025 certificate chain and put it somewhere you can find
  • Select the shmoocon-wpa network from the available network list, or manually add a wireless network for the SSID shmoocon-wpa
  • Set the Security to WPA-Enterprise
  • Set the Authentication to Protected EAP (Peap)
  • Leave the Anonymous Identity blank
  • Under CA Certificate, select the downloaded shmoo2025-chain.crt file. If you ignore this step your connection will not be secure.
  • Set the PEAP Version to Automatic
  • Set the Inner Authentication to MSCHAPv2
  • Fill in the username and password, or leave blank to be prompted every time.

Manual WPA Supplicant Config

Download the Shmoocon 2025 certificate chain and put it somewhere you can find.

Create the following stanza in your wpasupplicant.conf, filling in username, password, and the path to the CER file you downloaded above:

network={
	ssid="shmoocon-wpa"
	key_mgmt=WPA-EAP
	eap=PEAP
	identity="your-shmoo-username"
	password="your-shmoo-password"
	ca_cert="/path/to/downloaded/crt"
	phase2="auth=MSCHAPV2"
	priority=0
} 

NOTE

If you do not provide the path to the certificate you downloaded, your connection will not be secure.