linux开启iptables
时间: 2023-10-12 14:18:58 浏览: 99
linux-iptables
的命令是什么?
您可以使用以下命令开启iptables:
```
sudo systemctl start iptables.service
sudo systemctl enable iptables.service
sudo systemctl status iptables.service
```
请注意,在某些Linux系统中,iptables服务是使用firewalld代替的。如果您的系统使用firewalld,请使用以下命令开启它:
```
sudo systemctl start firewalld.service
sudo systemctl enable firewalld.service
sudo systemctl status firewalld.service
```
阅读全文