关闭防火墙的linux命令是【service iptables stop】,打开方法:首先登录linux账号,点击【log in】;然后右键于Linux系统空白处,选择 【Open in Terminal】;最后输入代码即可。
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:永久关闭后重启
//暂时还没有试过
chkconfig iptables on
1、使用iptables--help可以查看帮助使用命令,非常详细的
2、可以使用以下命令查看iptables的状态serviceiptablesstatus
3、当然还有其他的一些参数选择,可以使用serviceiptables-help帮助一下,其实就是停止的意思,直接上命令如果需要永久关闭iptables,可以使用以下命令
4、chkconfigiptablesoff这样以后开机也不需要再去做设置了,永久性的关闭了
5、其实我们还有一个图形界面 *** 作设置防火墙哦在命令行输入setup,敲回车
6、d出图形界面,选择firewall进去进行设置即可
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)