markdown 在服务器上关闭和打开端口

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 在服务器上关闭和打开端口相关的知识,希望对你有一定的参考价值。

### login
`ssh root@192.XXX.XXX.XXX`  


### change to superuser
`sudo su`  


### logout
`logout`  
## List Current Firewall Rules
`iptables -L`  

This command lists all the current firewall rules loaded into IPtables.


## Open a port in IPtables – CentOS 6
`iptables -I INPUT -p tcp -m tcp --dport 80 -j ACCEPT`  
`service iptables save`  


## Open a port in IPtables – CentOS 7
`firewall-cmd --zone=public --add-port=80/tcp --permanent`  
`firewall-cmd --reload`


## Close a port in IPtables – CentOS 6
`iptables -I INPUT -p tcp -m tcp --dport 80 -j REJECT`  
`service iptables save`  


## Close a port in IPtables – CentOS 7
`firewall-cmd --zone=public --remove-port=80/tcp`  
`firewall-cmd --runtime-to-permanent`  
`firewall-cmd --reload`  

以上是关于markdown 在服务器上关闭和打开端口的主要内容,如果未能解决你的问题,请参考以下文章

翻译:如何在 RHEL 8 / CentOS 8 Linux 上打开和关闭端口

如何检查端口是不是在带有批处理文件且没有第三方软件的远程服务器上打开? [关闭]

在 PHP 中打开异步套接字

在LINUX下怎么查看哪些端口打开和关闭?

怎样用命令关闭和开启80端口?

centos7使用firewalld打开关闭防火墙和端口