linux 防火墙命令
时间: 2023-10-04 17:11:19 浏览: 115
linux中的防火墙命令有很多种。其中比较常用的是iptables和firewall-cmd。针对你提到的开启和关闭防火墙端口的操作,可以使用以下命令:
开启防火墙端口:
firewall-cmd --zone=public --add-port=9200/tcp --permanent
关闭防火墙端口:
firewall-cmd --zone=public --remove-port=9200/tcp --permanent
以上命令中,--zone=public表示配置公共区域的防火墙规则,--add-port和--remove-port分别用于添加和删除指定端口的防火墙规则,9200/tcp表示要操作的端口号和协议类型,--permanent表示永久生效。
相关问题
LINUX 防火墙命令
一些常用的 Linux 防火墙命令包括:
1. iptables:用于配置 Linux 内核防火墙规则的命令行工具。
2. ufw:Ubuntu 防火墙,是一个基于 iptables 的前端工具,用于简化 iptables 的配置。
3. firewalld:CentOS/RHEL 防火墙,是一个动态管理系统,用于管理 iptables 规则。
4. nftables:新一代 Linux 内核防火墙,用于替代 iptables。
以上是一些常用的 Linux 防火墙命令,具体使用方法可以参考官方文档或者相关教程。
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>
```
阅读全文