linux 关闭防火墙
时间: 2023-11-21 19:58:36 浏览: 112
Linux关闭防火墙命令
以下是Linux关闭防火墙的方法:
1. 对于iptables防火墙:
```shell
sudo service iptables stop
sudo chkconfig iptables off
```
2. 对于firewalld防火墙:
```shell
sudo systemctl stop firewalld
sudo systemctl disable firewalld
```
3. 永久关闭防火墙(通过配置文件):
```shell
sudo vi /etc/selinux/config
```
将SELINUX=enforcing改为SELINUX=disabled,保存并退出。
```shell
sudo reboot
```
以上操作将在重启后生效。
阅读全文