51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

Centos6修改Telnet默认服务监听端口

概述

根据安全管理规范需修改默认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\}\).*\(\/.*\)#\123023\2#g' /etc/services
# 配置监听端口
[root@localhost ~]# sed -i '12a\\tport\t\t= 23023' /etc/xinetd.d/telnet
# 重启服务
[root@localhost ~]# service xinetd restart
赞(0)
未经允许不得转载:工具盒子 » Centos6修改Telnet默认服务监听端口