IONIS Wifi uses WPA2-Enterprise with PEAP + MSCHAPv2.
Credentials: first.name@epita.fr / CRI password.
Official doc: docs.forge.epita.fr
iwd (Omarchy)
Create /var/lib/iwd/IONIS.8021x:
[Security]EAP-Method=PEAPEAP-Identity=<first.name@epita.fr>EAP-PEAP-Phase2-Method=MSCHAPV2EAP-PEAP-Phase2-Identity=<first.name@epita.fr>EAP-PEAP-Phase2-Password=<password-cri>
[Settings]Autoconnect=trueThen:
sudo systemctl restart iwdiwctl station wlan0 connect IONISNetworkManager (GUI) — Ubuntu’s Default
- SSID: IONIS
- Security: WPA2 Enterprise
- EAP method: PEAP
- Phase 2: MSCHAPv2
- Identity:
<first.name@epita.fr> - Password:
<password-cri> - CA cert: none
NetworkManager (CLI)
nmcli connection add type wifi con-name IONIS ifname wlan0 ssid IONIS \ wifi-sec.key-mgmt wpa-eap 802-1x.eap peap 802-1x.phase2-auth mschapv2 \ 802-1x.identity "first.name@epita.fr" 802-1x.password "password-cri"netctl (Arch)
/etc/netctl/wlan0-IONIS:
Description='IONIS Wifi'Interface=wlan0Connection=wirelessSecurity=wpa-configsectionIP=dhcpWPAConfigSection=( 'ssid="IONIS"' 'key_mgmt=WPA-EAP' 'eap=PEAP' 'identity="first.name@epita.fr"' 'password="password-cri"' 'phase2="auth=MSCHAPV2"')Enable with:
sudo netctl enable wlan0-IONISsudo netctl start wlan0-IONIS