Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
technical:pp-windows [2025/07/23 09:14] – system | technical:pp-windows [2025/07/23 09:31] (current) – [Obtaining the SHA-1 Thumbprint] system | ||
---|---|---|---|
Line 165: | Line 165: | ||
D1EB23A46D17D68FD92564C2F1F1601764D8E349 | D1EB23A46D17D68FD92564C2F1F1601764D8E349 | ||
</ | </ | ||
+ | |||
+ | ---------- | ||
+ | |||
+ | ==== PEAP vs EAP/TTLS/ ==== | ||
+ | |||
+ | * You will notice that we use PEAP instead of EAP/TTLS for authentication. | ||
+ | * It is recommended that you use PEAP on Windows since support for EAP/ | ||
+ | |||
+ | |||
+ | ------- | ||
+ | |||
+ | ==== Installing the certificate and profile ==== | ||
+ | * Install the CA on Windows using the **certutil** from the command line: | ||
+ | <code bash> | ||
+ | certutil -addstore root ca.pem | ||
+ | </ | ||
+ | * Install the profile also from the command line: | ||
+ | <code bash> | ||
+ | netsh wlan add profile filename=" | ||
+ | </ | ||
+ | * Check the available networks with: | ||
+ | <code bash> | ||
+ | netsh wlan show networks | ||
+ | </ | ||
+ | |||