summaryrefslogtreecommitdiffstats
path: root/squid-ntlm-html.lsp
blob: 8fe0c4b02f727eda1b25fbd2e48559ea955027c2 (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
<? 
   local form = ... 
   local data = form.option
   local service = form.service
   local config = form.service.config
   
   local srv1fill = ""
   local srv2fill = "disabled"
   if service.status == "running" then
   	srv1fill = "disabled"
   	srv2fill = ""
   end
   
   local ifthen = function( variable, value, result )
      if variable == value then
         io.write( result )
      end
   end
   
?>
<h1>Web Proxy - NTLM Authentication</h1>
<h2>General Information</h2>
<p>
Winbindd is a service that allows squid to authenticate against a Windows Domain Controller.
Before authentication is possible, this machine must join the Windows domain and the winbindd
service must be (re)started. It is only necessary to join the domain once.
</p>

<h2>Status</h2>
<dt>Program version</dt><dd><? io.write( form.info.version.value ) ?></dd>
<dt>Process status</dt><dd><? io.write( form.info.status.value ) ?></dd>
<dt>Process information</dt><dd>This process runs as a service. When you make 
and save changes, the configuration files for the service are changed. However, 
the changes will not be <i>applied</i> until you restart the service.</dd>
<form action="" method="POST">
<dt>Daemon control</dt>
<dd><input class="submit" type="submit" name="srvcmd" value="start" <? io.write( srv1fill ) ?> style="width:100px">
<input class="submit" type="submit" name="srvcmd" value="stop" <? io.write( srv2fill ) ?> style="width:100px">
<input class="submit" type="submit" name="srvcmd" value="restart" <? io.write( srv2fill ) ?> style="width:100px"></dd>
</form>

<p>
<pre style="color: #ff2020;"><? io.write( service.message ) ?></pre>
</p>

<form action="" method="POST">
<h2>Configuration</h2>
<dt>Domain</dt><dd><input class="input" type="text" name="domain" value="<? io.write ( config.domain.value ) ?>"></dd>
<dt>DC NetBIOS Name</dt><dd><input class="input" type="text" name="domain" value="<? io.write ( config.dcnetbiosname.value ) ?>"></dd>
<dt>DC IP Address</dt><dd><input class="input" type="text" name="domain" value="<? io.write ( config.dcipaddress.value ) ?>"></dd>
<dt>Interface</dt><dd><input class="input" type="text" name="domain" value="<? io.write ( config.interface.value ) ?>"></dd>
<dt>Loglevel</dt><dd><input class="input" type="text" name="domain" value="<? io.write ( config.loglevel.value ) ?>"></dd>
<dt>Account</dt><dd><input class="input" type="text" name="domain" value=""></dd>
<dt>Password</dt><dd><input class="input" type="text" name="domain" value=""></dd>

<h3>Action</h3>
<dt>What to do?</dt>
<dd><input class="submit" type="submit" name="cmd" value="join domain">
<input class="submit" type="submit" name="cmd" value="save"></dd>
</form>