- 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 <WIFI-INTERFACE> ssid "42Berlin_Student" -- wifi-sec.key-mgmt wpa-eap 802-1x.eap ttls 802-1x.phase2-auth mschapv2 802-1x.identity "<INTRA-NAME>"
  ```
  
  Replace:
  
  - **<WIFI-INTERFACE>** with your wireless chipset interface (you can get it with ip link, it should be the one starting with w, e.g. wlp6s0)
  - **<INTRA-NAME>** 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