概述
根据安全管理规范需修改默认telnet服务端口,但Centos6使用的是xinetd进行监听端口并且默认配置文件中并没有突出端口配置项。
处理办法
修改默认服务端口
# Centos6配置服务启动
[root@localhost ~]# sed -i 's/(.*disable.*=[[:space:]]).*/1no/g' /etc/xinetd.d/telnet
# 修改Telnet默认服务端口
[root@localhost ~]# sed -i 's#(^telnet[[:space:]]{1,9}).*(/.*)#1230232#g' /etc/services
# 配置监听端口
[root@localhost ~]# sed -i '12a\tporttt= 23023' /etc/xinetd.d/telnet
# 重启服务
[root@localhost ~]# service xinetd restart
文章来源于互联网:Centos6修改Telnet默认服务监听端口