1:查看防火墙状态
systemctl status firewalld
service iptables status
2:暂时关闭防火墙
systemctl stop firewalld
service iptables stop
3:永久关闭防火墙
systemctl disable firewalld
chkconfig iptables off
已永久关闭状态:
4:重启防火墙
systemctl enable firewalld
service iptables restart
5:永久关闭后重启(暂时启动和设置开机自启)
如果你使用 iptables,可以使用以下命令启动防火墙:
sudo service iptables start
或者,根据系统的不同,也可以使用:
sudo systemctl start iptables
firewalld 防火墙:
如果你使用 firewalld,可以使用以下命令启动防火墙:
sudo systemctl start firewalld
UFW(Uncomplicated Firewall):
在一些基于 Debian 或 Ubuntu 的系统中,可能使用 ufw 工具管理防火墙。启动 ufw 可以使用以下命令:
sudo ufw enable
这些命令会在当前会话中启动防火墙。
但是如果你要设置在系统启动时自动启动防火墙
,需要使用 enable 命令:
chkconfig iptables on
sudo systemctl enable iptables
或
sudo systemctl enable firewalld