CentOS 7下安装telnet服务
在CentOS 7 下升级了 openssl 和 openssh ,顺便装了下 telnet服务。
# 安装 telnet 避免 ssh 无法登录
yum -y install xinetd telnet telnet-server
# 允许 root 账号登陆
vi /etc/securetty
# 末尾添加两行
[html] view plain copy 在CODE上查看代码片派生到我的代码片
pts/0
pts/1
# 添加防火墙端口
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 文件,我照以前的配置自己写了个进去貌似没用处,网上也没找到更多资料了
# 现在这样临时用用也够了
相关推荐
因为设备或终端是遍布整个省或市,有的甚至是国外,如何高效的处理问题是当务之急,除了telnet还可以ssh使用crt软件登陆,telnet开启的话比较方便windows自带的cmd命令行下就可以运行。