- Linux *We don’t use wifi on Linux so we have no instructions for this, but these are some tips shared by other students.* ### @mcutura ```bash nmcli --ask connection add type wifi con-name "42Berlin_Student" ifname ssid "42Berlin_Student" -- wifi-sec.key-mgmt wpa-eap 802-1x.eap ttls 802-1x.phase2-auth mschapv2 802-1x.identity "" ``` Replace: - **** with your wireless chipset interface (you can get it with ip link, it should be the one starting with w, e.g. wlp6s0) - **** with your intra name It will ask a bunch of questions you can probably just press enter and accept the sane defaults. Finally, once it is added, you can use **`nmtui or nmcli --ask connection up 42Berlin_Student`** and it should prompt for credentials. ### @astavrop Shared [this article](https://utcc.utoronto.ca/~cks/space/blog/linux/NetworkManagerTLSFor8021x) that helped getting it running