summarylogtreecommitdiffstats
path: root/eduroam
blob: aed829147f78c5c3cf6e6e54d344e8930c6978b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Connection='wireless'
Interface=<NETWORK INTERFACE> # ex: wlp3s0
Security='wpa-configsection'
Description="eduroam network"
IP='dhcp'
TimeoutWPA=30
WPAConfigSection=(
    'ssid="eduroam"'
    'proto=WPA2'
    'key_mgmt=WPA-EAP'
    # EAP mechanisms
    # Common combinations are:
    #   PEAP + auth=MSCHAPV2
    #   TTLS + auth=MSCHAPV2
    #   TTLS + autheap=MSCHAPV2
    #   TTLS + auth=PAP
    'eap=TTLS'
    'phase2="auth=PAP"'
    # Server identity
    'ca_cert="/etc/ssl/certs/ca-certificates.crt"'
    'domain_suffix_match="<UNIVERSITY>.<TLD>"'
    # Client identity
    'anonymous_identity="anonymous@<UNIVERSITY>.<TLD>"' # ex: tu-dresden.de
    'identity="<ID>@<UNIVERSITY>.<TLD>"' # ex: s4234381@tu-dresden.de
    'password="<YOUR-SECRET>"'
)