Linux防火墙操作

防火墙操作

iptables防火墙

分类操作命令
基本操作查看防火墙状态service iptables status
停止防火墙service iptables stop
启动防火墙service iptables start
重启防火墙service iptables restart
永久关闭防火墙chkconfig iptables off
永久关闭后重启chkconfig iptables on
开放指定端口端口vim /etc/sysconfig/iptables-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT

firewall防火墙

分类操作命令
基本操作查看firewall服务状态systemctl status firewalld
查看firewall的状态firewall-cmd --state
重启防火墙firewall-cmd --reload
启动防火墙service firewalld start
重启防火墙service firewalld restart
关闭防火墙service firewalld stop
查看防火墙规则firewall-cmd --list-all
开放指定端口端口查询端口是否开放firewall-cmd --query-port=8080/tcp
开放80端口firewall-cmd --permanent --add-port=80/tcp
移除端口firewall-cmd --permanent --remove-port=8080/tcp

CentOS7 默认使用firewalld防火墙,如果想换回iptables防火墙,可关闭firewalld并安装iptables。

1、关闭firewall:

  • 停止firewall

    systemctl stop firewalld.service
    
  • 禁止firewall开机启动

    systemctl disable firewalld.service
    
  • 查看默认防火墙状态(关闭后显示notrunning,开启后显示running)

    firewall-cmd --state=
    

2.安装iptables-services

yum install iptables-services

3.修改防火墙配置文件

vi /etc/sysconfig/iptables

4.重启防火墙使配置生效

systemctl restart iptables.service

刚刚yum install iptables.service之后系统如果没有重启,iptables.service是找不到的,会报unit not fount。

设置防火墙开机启动:

systemctl enable iptables.service
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值