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.conf并重新启动xinetd服务,但仍然没有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改为使用:它安全,快捷(使用compression)并具有其他精美功能,例如转发端口的功能。
psusi 2014年

我只在内部将其用于计算机课程,并且想接吻。
AlanK 2014年

可能有很多事情...可能没有人在最近一次测试过...好...十年吗?;-)
Rmano 2014年

您似乎认为/etc/inetd.confxinetd.conf使用相同的格式。你读过man xinetdman -k xinetdman inetdman -k inetdman telnetd?是否/etc/default/telnetd存在?你做完了grep telnet /var/log/*吗?
waltinator 2014年

Answers:


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中也被打破。创建文件并重新启动服务即可。
尼尔·麦吉尔
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.