centos更改系统默认端口
2016-07-14 11:01:04   来源:cnop   评论:0 点击: 收藏

如更改centos系统默认端口为8223:vi etc ssh sshd_config更改: Port 22为Port 8223重启ssh:service sshd restart防火墙添加例外:
如更改centos系统默认端口为8223:

vi /etc/ssh/sshd_config



更改:

#Port 22

Port  8223

重启ssh:

service sshd restart



防火墙添加例外:

#/sbin/iptables -I INPUT -p tcp --dport 8223 -j ACCEPT
#/etc/rc.d/init.d/iptables save
#service iptables restart

相关热词搜索:端口 系统

上一篇:centos禁止ping通的方法
下一篇:最后一页