summaryrefslogtreecommitdiffstats
path: root/openvpn-server_config-html.lsp
blob: 9a26db7be40b57f6c25826ab330542f1cbed4988 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<? local view = ... ?>
<html>
<body>
<h1>Server config '<?= view.config.name ?>'</h1>
<h2>Server settings</h2>

<dt>Mode</dt>
<dd>server</dd>

<dt>User device</dt>
<dd><?= view.config.device ?></dd>

<dt>Listens on</dt>
<dd><?= view.config.loca ?>:<?= view.config.port ?> (<?= view.config.proto ?>)</dd>

<dt>Logfile</dt>
<dd><? if ( view.config.log ) then ?><?= html.link{value = view.url .. "/logfile?name=" .. view.config.name  , label=view.config.log } ?><? else ?>Syslog<? end ?> (Verbosity level: <?= view.config.verb ?>)</dd>

<dt>View/Modify configfile</dt>
<dd><?= html.link{value = view.url .. "/unknown_config?name=" .. view.config.name  , label=view.config.longname } ?></dd>

<h3>Connected clients status</h3>

<dt>Last status was recorded</dt>
<dd><?= view.config.lastdatechangetxt ?> (This was <b><?= view.config.lastdatechangediff ?></b> ago)</dd>

<dt>Maximum clients</dt>
<dd><?= view.config.maxclients ?></dd>

<dt>Connected clients</dt>
<dd><? if ( view.config.clients > 0 ) then ?><?= html.link{value = view.url .. "/status_info?name=" .. view.config.name  , label=view.config.clients } ?><? else ?><?= view.config.clients ?><? end ?></dd>

<h2>Startup options</h2>

<dt>Process running</dt>
<dd><input type="checkbox" disabled <? if (view.config.status ~= "") then io.write("checked='yes'") end ?>></dd>


<h2>Certificate files</h2>

<? if (view.config.dh) then ?>
<dt>DH</dt>
<dd><?= html.link{value = view.url .. "/pem_info?name=" .. view.config.dh  , label=view.config.dh } ?></dd>
<? end ?>

<? if (view.config.ca) then ?>
<dt>CA Certificate</dt>
<dd><?= html.link{value = view.url .. "/pem_info?name=" .. view.config.ca  , label=view.config.ca } ?></dd>
<? end ?>

<? if (view.config.cert) then ?>
<dt>Server Certificate</dt>
<dd><?= html.link{value = view.url .. "/pem_info?name=" .. view.config.cert  , label=view.config.cert } ?></dd>
<? end ?>

<? if (view.config.key) then ?>
<dt>Server Private Key</dt>
<dd><?= html.link{value = view.url .. "/pem_info?name=" .. view.config.key  , label=view.config.key } ?></dd>
<? end ?>

<? if (view.config.tls) then ?>
<dt>TLS Authentication</dt>
<dd><?= html.link{value = view.url .. "/pem_info?name=" .. view.config.tls  , label=view.config.tls } ?></dd>
<? end ?>

<? if (view.config.crl) then ?>
<dt>CRL Verify File</dt>
<dd><?= html.link{value = view.url .. "/pem_info?name=" .. view.config.crl  , label=view.config.crl } ?></dd>
<? end ?>


</body>
</html>