telnet服务说明:
在安装telnet之前,有必要进行说明下:
在数据传输时,telnet采用明文传输,如果是远程使用特别是通过跨局域网使用时,要注意网络安全。如果要远程操作,强烈建议使用ssh服务,它具有加密功能。telnet一般用在不需要注意网络安全如局域网中使用。
telnet服务安装与配置步骤:
1、安装xinetd
sudo apt-get install xinetd
2、安装telnet守护进程
sudo apt-get install telnetd
3、修改配置文件
sudo gedit /etc/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 # start the insert content # if I have time, I will add some comments about this part. instances =60 log_type = SYSLOG authpriv log_on_success = HOST PID log_on_failure = HOST cps = 25 30 # end the insert content } includedir /etc/xinetd.d
检查无误后保存退出。4、添加telnet配置:
注意:/etc/xinetd.d/目录下是没有telnet文件的,因此,需要先建立该文件,再添加配置信息。
sudo touch /etc/xinet.d/telnet sudo gedit /etc/xinet.d/telnet
telnet配置信息如下所示:
# # service telnet { disable = no flags = REUSE socket_type = stream wait = no user = root server = /usr/sbin/in.telnetd log_on_failure += USERID }
5、完成配置,重启服务:
sudo /etc/init.d/xinetd restart
经过上面的安装和配置,telnet服务就建立好了,可以在ubuntu下自测试是否成功:
telnet ubuntu IP地址
或者用window下的telnet工具如putty或xshell或secureCRT等登录虚拟ubuntu了。