Telnetサーバーが起動しない


8

Ubuntu Server 13.10をインストールしていますが、サーバーでtelnetが機能しません。apt-getを使用してxinet.dとtelnetdの両方をインストールし、xinetdを再起動しましたが、を実行しても何も開始されませんnetstat -l。グーグルで、にtelnet stream tcp wait telnetd /usr/sbin/tcpd /usr/sbin/in.telnetd行を追加することについて言及している問題を見つけました/etc/inetd.conf。ありませんinetd.conf。inetdの性能が低下しているのがわかります。回線を入れてxinetd.confxinetdサービスを再起動しましたが、まだtelnetリスニングがありません。誰かがtelnetサーバーの適切な設定とそれらのファイルをどのように配置するかについてアドバイスをくれますか?これが私のxinetd.confファイルの内容です:

# Simple configuration file for xinetd
#
# Some defaults, and include /etc/xinetd.d/

defaults
{

# Please note that you need a log_type line to be able to use log_on_success
# and log_on_failure. The default is the following :
# log_type = SYSLOG daemon info

}

includedir /etc/xinetd.d

#:STANDARD: These are standard services.
telnet      stream  tcp nowait  telnetd /usr/sbin/tcpd  /usr/sbin/in.telnetd

ありがとう


2
2014年ですが、なぜ telnetをインストールしたいのですか?
Elliott Frisch 2014年

なぜTelnetを使用しているのですか?それは時代遅れで安全でないプロトコルです。ssh代わりに使用してください:安全で高速(圧縮を使用)で、ポートを転送する機能など、その他の気の利いた機能があります。
psusi 2014年

私はコンピュータのクラスで内部的にのみ使用していて、キスしたいです。
AlanK 2014年

多くのことがありえます...おそらく最後にそれをテストした人はいません...まあ... 10年ですか?;-)
Rmano 2014年

あなたはそれを考え、同じフォーマット/etc/inetd.confxinetd.conf使用しているようです。あなたは読みましたかman xinetdman -k xinetdman inetdman -k inetdman telnetd?ない/etc/default/telnetd存在?やりましたgrep telnet /var/log/*か?
ワルティネーター2014

回答:


2

コマンドでtelnetdとxinetdをインストールした後

sudo apt-get install xinetd telnetd

ファイルtelnetを作成して挿入/etc/xinetd.d

sudo nano /etc/xinetd.d/telnet

# default: on
# description: The telnet server serves telnet sessions; it uses
# unencrypted username/password pairs for authentication.
service telnet
{
disable = no
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
}

xinetdサービスを再起動します

sudo service xinetd restart

ではxinetd.conf、あなたは持っているincludedir /etc/xinetd.dとラインを必要としません

telnet stream tcp nowait telnetd /usr/sbin/tcpd /usr/sbin/in.telnetd

それを消去します。

Telnetファイルでは、次のようなオプションを追加できます。

only_from = 192.168.120.0/24 #Only users in 192.168.120.0 can access to
only_from = .bob.com #allow access from bob.com
no_access = 192.168.120.{101,105} #not allow access from the two IP.

ありがとう-これは14.10で壊れました/ Trustyも。ファイルの作成とサービスの再起動は機能します。
Neil McGill
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.