防火墙问题 Linux系统 /etc/sysconfig/路径下无iptables文件

虚拟机新装了一个CentOs7,然后做防火墙配置的时候找不到iptables文件,解决方法如下:

因为默认使用的是firewall作为防火墙,把他停掉装个iptable

systemctl stop firewalld 
systemctl mask firewalld

yum install -y iptables 
yum install iptables-services

然后就有iptables文件,就可以作配置

开启服务 
systemctl start iptables.service

systemctl restart iptables.service // 重启防火墙使配置生效 

systemctl enable iptables.service // 设置防火墙开机启动

增加开放端口

在iptables中加入以下内容(8080就是端口号):

-A INPUT -p tcp -m state --state NEW -m tcp --dport 8080 -j ACCEPT

其他命令: 
检查是否安装了iptables 
service iptables status 
安装iptables 
yum install -y iptables 
升级iptables 
yum update iptables 
安装iptables-services 
yum install iptables-services

systemctl disable iptables #禁止iptables服务 
systemctl stop iptables #暂停服务 
systemctl enable iptables #解除禁止iptables 

systemctl start iptables #开启服务

 

posted @ 2019-07-22 13:03  清风_Z  阅读(920)  评论(0编辑  收藏  举报