Skip to content

Instantly share code, notes, and snippets.

View S-Sigdel's full-sized avatar
💭
🐱

Sakshyam Sigdel S-Sigdel

💭
🐱
View GitHub Profile
@S-Sigdel
S-Sigdel / eduroamconnect.sh
Created October 27, 2025 18:09
Eduroam connection script using network manager
nmcli con add type wifi con-name "eduroam" \
ifname "<use 'nmcli device status' to find your wifi network interface name (wlan0/wlp9s0/...)>" \
ssid "eduroam" \
wifi-sec.key-mgmt wpa-eap \
802-1x.identity "<replace with your email>" \
802-1x.password "<replace with your password>" \
802-1x.system-ca-certs no \
802-1x.eap "peap" \
802-1x.phase2-auth mschapv2
nmcli connection up eduroam --ask