centOS7配置防火墙白名单
时间: 2024-02-29 21:47:18 浏览: 83
配置 CentOS7 防火墙白名单的步骤如下:
1. 查看已经启用的防火墙规则:sudo firewall-cmd --list-all
2. 添加允许通过的端口:sudo firewall-cmd --zone=public --add-port=端口号/tcp --permanent
3. 添加允许通过的IP地址:sudo firewall-cmd --zone=public --add-source=IP地址/24 --permanent
4. 重新载入防火墙规则:sudo firewall-cmd --reload
需要注意的是,以上命令中的端口号和IP地址需要根据实际情况进行修改。
相关问题
centos7查询防火墙白名单
在CentOS 7系统中,防火墙规则通常存储在iptables或firewalld软件中。如果你使用的是iptables,你可以查看白名单(允许列表)的规则通过以下步骤:
1. 打开终端并输入命令:
```bash
sudo iptables -L -n --line-numbers --list-services --check-state RELATED,ESTABLISHED,INPUT -j ACCEPT
```
这将显示所有已配置为接受连接的入站规则,这些规则通常包含了服务名。
2. 如果你想要查看针对特定端口的服务白名单,可以添加`-p`选项,比如查询80端口(HTTP):
```bash
sudo iptables -L -n --line-numbers --list-services -p tcp --dport 80 -j ACCEPT
```
对于firewalld,操作类似但稍微有所不同:
1. 首先,确认你在使用firewalld而非iptables:
```bash
firewall-cmd --permanent --get-active-zones
```
2. 然后查看允许的规则:
```bash
firewall-cmd --list-all --permanent --service http --zone=public
```
3. 或者查看针对端口的规则:
```bash
firewall-cmd --permanent --list-all --filter-service=http --direction=in
firewall-cmd --reload
```
centos7防火墙设置黑名单和白名单的命令
CentOS 7 上设置防火墙黑名单和白名单的命令如下:
1. 添加IP到防火墙黑名单
```
firewall-cmd --permanent --add-rich-rule='rule family="ipv4" source address="x.x.x.x" reject'
```
其中,`x.x.x.x` 是要屏蔽的 IP 地址。
2. 添加IP到防火墙白名单
```
firewall-cmd --permanent --add-rich-rule='rule family="ipv4" source address="x.x.x.x" accept'
```
其中,`x.x.x.x` 是要允许通过的 IP 地址。
3. 重新加载防火墙规则
```
firewall-cmd --reload
```
以上命令中,`--permanent` 表示将规则永久保存到防火墙配置中,`--add-rich-rule` 表示添加自定义规则。你可以根据需要修改命令中的参数。
阅读全文