红联Linux门户
Linux帮助

ubuntu云服务器开启telnet实现远程登录

发布时间:2017-04-03 11:34:15来源:linux网站作者:Will_Bean
1.安装telnet服务
sudo apt-get install xinetd telnetd
 
2.修改/etc/xinetd.conf,在# log_type = SYSLOG daemon info下面添加内容
instances = 60
log_type = SYSLOG authpriv
log_on_success = HOST PID
log_on_failure = HOST
cps = 25 30
 
3.编辑/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
}
 
4.重启机器或网络
sudo /etc/init.d/xinetd restart
 
5.通过telnet命令测试是否配置成功
 
6.Windows下开启telnet服务
 
7.使用CMD连接Linux服务器
 
本文永久更新地址:http://www.linuxdiyf.com/linux/29714.html