在CentOS 7 下升级了 openssl 和 openssh ,顺便装了下 telnet服务。
# 安装 telnet 避免 ssh 无法登录
yum -y install xinetd telnet telnet-server
在telnet情况下root登录提示login incorrect
linux默认情况下root用户使用telnet是登录不了的,需要修改/etc/secruetty文件
# 允许 root 账号登陆
vi /etc/securetty
# 末尾添加两行
pts/0
pts/1
或者创建一个普通账户,useradd sheng,然后用sheng用户登录,su - root切换过去
# 添加防火墙端口
vi /etc/sysconfig/iptables
-A INPUT -p tcp -m state --state NEW -m tcp --dport 23 -j ACCEPT
# 重启服务关闭 firewalld
systemctl restart iptables
systemctl disable firewalld
systemctl stop firewalld
# 注册服务
systemctl enable telnet.socket
systemctl start telnet.socket
systemctl enable xinetd
systemctl start xinetd
# centos7下面安装telnet 没有生成 /etc/xinetd.d/telnet 文件,我照以前的配置自己写了个进去貌似没用处,网上也没找到更多资料了
# 现在这样临时用用也够了
原文地址:http://blog.51cto.com/sf1314/2147283
时间: 2024-10-21 03:57:40