blob: a5361e2f8120f94e9365ad4697117bb9a6589efe (
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
27
28
29
30
31
32
33
34
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/"
xmlns:i18n="http://genshi.edgewall.org/i18n"
xmlns:sub="http://local.sublab.org/subdap/xmlns-templates"
xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="layout.xi"/>
<head>
<title>login</title>
</head>
<sub:bodylarge>
<div class="cont">
<h1>wpa_supplicant WPA-EAP template</h1>
<pre i18n:msg="8021x">network={
scan_ssid=1
ssid="crew.sublab.org"
key_mgmt=WPA-EAP
eap=TTLS
phase2="auth=PAP"
identity="${username}"
password="<i style="color:red;background-color:white">insert password here</i>"
anonymous_identity="bernd"
ca_cert="<a href="${url('static/cacert.org.pem')}">/etc/ssl/certs/cacert.org.pem</a>"
altsubject_match="DNS:taifun.local.sublab.org"
priority=500
}
</pre>
</div>
</sub:bodylarge>
</html>
|