diff options
author | vanilla <vanilla@FreeBSD.org> | 1998-04-11 23:07:05 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 1998-04-11 23:07:05 +0800 |
commit | 5d750f66088d1e6fdfc57659ba3cc23a026aa63b (patch) | |
tree | 7c2e328f542b545b119468a91e44409c4fd558ab /net/SSLtelnet/pkg-descr | |
parent | 33926b281f3af4009c0c027812045934e4ca501d (diff) | |
download | freebsd-ports-gnome-5d750f66088d1e6fdfc57659ba3cc23a026aa63b.tar.gz freebsd-ports-gnome-5d750f66088d1e6fdfc57659ba3cc23a026aa63b.tar.zst freebsd-ports-gnome-5d750f66088d1e6fdfc57659ba3cc23a026aa63b.zip |
It is a telnet/telnetd program support SSL encryption
and certification mechanism.
PR: ports/6182
Submitted by: Issei Suzuki <issei@t-cnet.or.jp
Diffstat (limited to 'net/SSLtelnet/pkg-descr')
-rw-r--r-- | net/SSLtelnet/pkg-descr | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/net/SSLtelnet/pkg-descr b/net/SSLtelnet/pkg-descr new file mode 100644 index 000000000000..d346018fd912 --- /dev/null +++ b/net/SSLtelnet/pkg-descr @@ -0,0 +1,20 @@ +This program suports both certification and cryptogoraphic with using SSL. + +If you do not have certification (/usr/local/certs/telnet.pem) provided by CA, +this port make dummy certification. Of cource it is useless to certify but you +can use SSL telnet/telnetd in encryption only mode with it. + +You must edit /etc/inetd.conf to make SSL telnetd available. Some examples +below: + +1. Accept both normail telnet client and SSL telnet client. + +telnet stream tcp nowait root /usr/local/libexec/telnetd telnetd + +2. Accpet only SSL encrypted client. + +telnet stream tcp nowait root /usr/local/libexec/telnetd telnetd -z secure + +3. Accept only SSL certificated client. + +telnet stream tcp nowait root /usr/local/libexec/telnetd telnetd -a valid |