首页 > 系统 > linux > 正文

centos更改系统默认端口
2016-07-14 11:01:04 点击:

如更改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通的方法
下一篇:利用CentOS系统IPtables防火墙添加360网站卫士节点IP白名单