Files: 5de6dc909e2df98bd080c4899ef2b265a415ab3d / test / networks.txt
757 bytesRaw
1 | fast_reauth=1 |
2 | |
3 | # 1. WPA-Personal (PSK) as home network and WPA-Enterprise with EAP-TLS |
4 | # as work network. |
5 | |
6 | |
7 | # allow frontend (e.g., wpa_cli) to be used by all users in 'wheel' group |
8 | ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel |
9 | |
10 | # home network; allow all valid ciphers |
11 | network={ |
12 | ssid="home" |
13 | scan_ssid=1 |
14 | key_mgmt=WPA-PSK |
15 | psk="very secret passphrase" |
16 | } |
17 | |
18 | # work network; use EAP-TLS with WPA; allow only CCMP and TKIP ciphers |
19 | network={ |
20 | ssid="work" |
21 | scan_ssid=1 |
22 | key_mgmt=WPA-EAP |
23 | pairwise=CCMP TKIP |
24 | group=CCMP TKIP |
25 | eap=TLS |
26 | identity="user@example.com" |
27 | ca_cert="/etc/cert/ca.pem" |
28 | client_cert="/etc/cert/user.pem" |
29 | private_key="/etc/cert/user.prv" |
30 | private_key_passwd="password" |
31 | } |
32 |
Built with git-ssb-web