centos安装启动telnet服务

安装telnet服务:

yum -y install telnet*

安装客户端和服务端:

启动服务:

service xinetd restart

检查端口:

lsof -i:23

防火墙开放23端口:

 iptables -A INPUT -p tcp --dport 23 -j ACCEPT

iptables-save

service iptables restart

原文地址:https://www.cnblogs.com/latma/p/4582730.html