File: progdesc.php

package info (click to toggle)
bidentd 1.1.1-1.1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 212 kB
  • ctags: 183
  • sloc: php: 480; cpp: 266; makefile: 88; sh: 54
file content (88 lines) | stat: -rw-r--r-- 2,577 bytes parent folder | download | duplicates (2)
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
//TITLE=ident daemon for Linux

$title = 'Bisqwit\'s identd';
$progname = 'bidentd';

$k='';foreach(file('/home/bisqwit/src/unixtools/ident/ChangeLog') as $s)$k.=$s;

$text = array(
   '1. Purpose' => "

ident daemon for unix systems, implementing rfc1413 defined behaviour.<br>
&nbsp;<br>
There is also a Debian package available, coordinated by Wesley W. Terpstra.<br>
The package for your architechture can be downloaded from any official Debian mirror.

", '1. Why another identd daemon?' => "

Because there is not one other one which
worked correctly over multiple NATs.
<br>
        The program works like an ident daemon is supposed to work.
        It allows people to query who's connecting in which port.
        Masquerading is supported, and works recursively.
        Works only under Linux, due to the use of /proc filesystem.<br>
        &nbsp;<br>
        My typical case (why I made this):<ul>
        <li> Alpha has the internet connection. It has an ip in internet.</li>
        <li> Beta is masqueraded by Alpha.</li>
        <li> Gamma is masqueraded by Beta.</li>
        <li> Somebody in Gamma starts irc, and the irc server (in internet)
             gets the username of the user in Gamma, correctly.</li>
        </ul>
        All computers in the identd masquerading chain must be
        running bidentd, except the end part, which can be using
        any identd daemon, as long as that one does not care about
        the source ip address.<br>

", '1. Notes' => "

Version 1.0.8 and prior worked only on the 2.2 -series of the Linux kernel,
but 1.0.9 supports 2.4 too.<br>
Since 1.1.0, kernel family 2.6 is supported too.

", '1. Version history' => "

<pre class=smallerpre>".htmlspecialchars($k)."</pre>

", '1. Copying' => "

bidentd has been written by Joel Yliluoma, a.k.a.
<a href=\"http://iki.fi/bisqwit/\">Bisqwit</a>,
and is distributed under the terms of the
<a href=\"http://www.gnu.org/licenses/licenses.html#GPL\">General Public License</a> (GPL).

", '1. Requirements' => "

GNU make is probably required.<br>

", '1. Installation' => "

    <blockquote>
        make install (as root)<br>
        make startup (Follow the instructions)<br>
    </blockquote>

", '1. Uninstallation' => "
   
    <blockquote>
        make uninstall<br>
        Edit /etc/inetd.conf<br>
    </blockquote>

", '1. Updating from possible previous version' => "

    <blockquote>
        make update<br>
    </blockquote>


", '1. Compilation only.' => "
    
    <blockquote>
        make<br>
    </blockquote>

");
include '/WWW/progdesc.php';