centos6和centos7的防火墙命令,以及它们的区别是是什么?

一、 Centos6和Centos7 防火墙命令的区别

  • Centos6自带的防火墙工具是iptables

  • Centos7自带的防火墙工具是firewall

  • iptables 用于过滤数据包,属于网络层防火墙。

  • firewall 能够允许哪些服务可用,哪些端口可用,属于更高一层的防火墙。

如果你只想关掉防火墙并且禁止开机自动启动,那么只需要这两句命令即可:
systemctl stop firewalld
systemctl disable firewalld

iptables常用命令

1.查询防火墙状态

service iptables status

2.关闭防火墙

service iptables stop

3.开启防火墙

service iptables start

4.重启防火墙

service iptables restart

5.永久关闭防火墙

chkconfig iptables off

6.永久关闭后再次开启防火墙

chkconfig iptables on

7.查询当前iptables的规则

iptables -L --line-numbers

8.开放端口

-A INPUT -p tcp --dport 22 -j ACCEPT

9.关闭端口

-A INPUT -p tcp --dport 22 -j DROP

注意:如果 /etc/sysconfig/iptables文件不存在,可以按如下方式配置一条防火墙规则:

使用iptables命令随便写一条防火墙规则:iptables -P OUTPUT ACCEPT,然后使用service iptables save进行保存,默认就保存到了/etc/sysconfig目录下的iptables文件中。

firewall常用命令

1.查看防火墙状态:

firewall-cmd --state

2.启动防火墙

systemctl start firewalld

3.关闭防火墙

systemctl stop firewalld

4.检查防火墙开放的端口

firewall-cmd --permanent --zone=public --list-ports

5.开放一个新的端口

firewall-cmd --zone=public --add-port=8080/tcp --permanent

6.重启防火墙

firewall-cmd --reload

7.验证新增加端口是否生效

firewall-cmd --zone=public --query-port=8080/tcp

8.开机启动/禁用防火墙

systemctl enable/disable firewalld.service

9.防火墙取消某一开放端口

firewall-cmd --zone=public --remove-port=9200/tcp --permanent
  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

孙晨c

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值