zoukankan      html  css  js  c++  java
  • centos7下没有iptables

    从centos7开始使用linux,之前版本的没有深入了解过,今天要开放个端口,需要有防火墙的相关操作,从网上查资料都是编辑/etc/sysconfig目录下面的iptables文件,可我进入这个文件之后,并没有发现这iptables文件,倒是有ip6tables-config和iptables-config这样的两个文件。

    经过查找资料,原来centos7下默认没有了iptables文件,如果有对防火墙的操作,需要更新或者重新安装防火墙服务。

    具体的解决办法:

    1.安装或者更新iptables-services

    yum install iptables-services;

    2.启动iptables

    systemctl enable iptables 

    这个时候,/etc/sysconfig目录下面就有了iptables文件了。

    3.打开iptables

    systemctl start iptables 

    4.编辑

    vim /etc/sysconfig/iptables

    5.重启防火墙

    service iptables restart

    centos7和之前的版本有的区别,以前没有注意到。
    ---------------------
    作者:suchcl
    来源:CSDN
    原文:https://blog.csdn.net/hbysj/article/details/80816926
    版权声明:本文为博主原创文章,转载请附上博文链接!

  • 相关阅读:
    Leetcode 290 Word Pattern
    Leetcode 205 Isomorphic Strings
    Leetcode 345 Reverse Vowels in a String
    Leetcode 151 Reverse Words in a String
    Leetcode 344 Reverse String
    Leetcode 383 Ransom Note
    leetcode 387 First Unique Character in a String
    反码补码和位运算
    SpringBoot进阶
    布隆过滤器
  • 原文地址:https://www.cnblogs.com/flutehand/p/10304652.html
Copyright © 2011-2022 走看看