Linux 中的Centos6和7版本的防火墙区别以及常用命令

一、 Centos6和Centos7 防火墙的区别

  使用的防火墙工具不同:Centos6自带的防火墙工具是iptables ,Centos7自带的防火墙工具是firewall。

二、常用命令

一、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

(二)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 firewalld.service

9.防火墙取消某一开放端口 firewall-cmd --zone=public --remove-port=9200/tcp --permanent

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值