linux 防火墙命令
时间: 2023-11-21 13:50:41 浏览: 77
Linux防火墙命令
Linux中有多种防火墙命令,常用的有iptables和ufw。下面是使用iptables和ufw命令的示例:
1. iptables命令:
- 查看当前防火墙规则:
```
iptables -L
```
- 允许某个端口通过防火墙:
```
iptables -A INPUT -p tcp --dport <port_number> -j ACCEPT
```
- 禁止某个端口通过防火墙:
```
iptables -A INPUT -p tcp --dport <port_number> -j DROP
```
- 允许特定IP地址通过防火墙:
```
iptables -A INPUT -s <ip_address> -j ACCEPT
```
- 禁止特定IP地址通过防火墙:
```
iptables -A INPUT -s <ip_address> -j DROP
```
2. ufw命令(基于iptables):
- 启用ufw防火墙:
```
ufw enable
```
- 查看ufw的状态和规则:
```
ufw status
```
- 允许某个端口通过ufw防火墙:
```
ufw allow <port_number>
```
- 禁止某个端口通过ufw防火墙:
```
ufw deny <port_number>
```
- 允许特定IP地址通过ufw防火墙:
```
ufw allow from <ip_address>
```
- 禁止特定IP地址通过ufw防火墙:
```
ufw deny from <ip_address>
```
阅读全文