1
0
Fork 0

Create README.md

This commit is contained in:
Carlos Galindo 2018-01-05 16:42:33 +01:00 committed by GitHub
parent 7038a37e93
commit cd92dce349
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 68 additions and 0 deletions

68
README.md Normal file
View File

@ -0,0 +1,68 @@
# Connect to eduroam on Linux
:warning: You will lose all WiFi passwords saved in your system :warning:
These instructions have been tested in ArchLinux without NetworkManager installed. It should work if NetworkManager is disabled and stopped (`sudo systemctl --disable now NetworkManager`).
You will need `systemd-networkd` and `wpa_supplicant`, both of which are normally in default installations of GNU/Linux. To configure it, you will need to find your WiFi and Ethernet interfaces (`ifconfig` or `ip` should display them, they should look like `enpXsY`, `ethX`, `wlanX` or `wlpXsY`).
All files belong to `root:root`
* `/etc/wpa_supplicant/wpa_supplicant-WIFI_INTERFACE.conf`, with permissions `600`
```
ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=wheel
update_config=1
network={
ssid="UPVNET"
key_mgmt=WPA_EAP
eap=PEAP
phase1="peaplabel=auto tls_disable_tlsv1_2=1"
phase2="auth=MSCHAPV2"
ca_cert="/etc/ssl/certs/thawte_Primary_Root_CA.pem"
identity="x@alumno.upv.es"
password="y"
priority=10
}
network={
ssid="your_home_network_name"
psk="your_home_network_password"
}
```
* `/etc/systemd/network/WIFI_INTERFACE.network`, with permissions `644`
```
[Match]
Name=WIFI_INTERFACE
[Network]
DHCP=yes
UseDomains=yes
IPv6PrivacyExtensions=true
```
* `/etc/systemd/network/ETHERNET_INTERFACE.network`, with permissions `644`
```
[Match]
Name=ETHERNET_INTERFACE
[Network]
DHCP=yes
```
Then, run this:
```bash
mv /etc/resolv.conf{,.bak}
ln -s /usr/lib/systemd/resolv.conf /etc/resolv.conf
```
Finally, enable and start `systemd-networkd`, `systemd-resolved` and `wpa_supplicant@WIFI_INTERFACE`:
```
sudo systemctl enable --now systemd-networkd systemd-resolved wpa_supplicant@WIFI_INTERFACE
```