zoukankan      html  css  js  c++  java
  • centos7下找不到iptables文件

    最近在centos7下,搭建ftp服务,按照步骤一步一步来,发现 etc/sysconfig/iptables这个文件并不存在,然后去找解决方案,
    
    原文地址:http://blog.csdn.net/iamzhangyouzhi/article/details/41978537
    
    
    
    解决办法:
    1. 随便写一条iptables命令配置个防火墙规则。如:iptables -P OUTPUT ACCEPT。
    
    [root@iZ23gx7o02aZ /]# cd /etc/sysconfig/
    [root@iZ23gx7o02aZ sysconfig]# iptables -P OUTPUT ACCEPT
    2. service iptables save进行保存。
    
    [root@iZ23gx7o02aZ sysconfig]# service iptables save
    iptables: Saving firewall rules to /etc/sysconfig/iptables:[  OK  ]
    [root@iZ23gx7o02aZ sysconfig]# ls
    atd         firstboot         iptables-config  networking       readonly-root  sshd
    auditd      grub              irqbalance       network-scripts  rhn            sysstat
    authconfig  htcacheclean      kdump            ntpd             rngd           sysstat.ioconf
    cbq         httpd             kernel           ntpdate          rsyslog        system-config-firewall
    clock       i18n              keyboard         prelink          sandbox        system-config-firewall.old
    console     init              modules          quota_nld        saslauthd      udev
    cpuspeed    ip6tables-config  netconsole       raid-check       selinux
    crond       iptables          network          readahead        smartmontools
    [root@iZ23gx7o02aZ sysconfig]# 
    3. service iptables restart命令重启:
    
    [root@iZ23gx7o02aZ sysconfig]# service iptables restart
    iptables: Setting chains to policy ACCEPT: filter          [  OK  ]
    iptables: Flushing firewall rules:                         [  OK  ]
    iptables: Unloading modules:                               [  OK  ]
    iptables: Applying firewall rules:                         [  OK  ]
    [root@iZ23gx7o02aZ sysconfig]# 
    但是在service iptables save进行保存操作时,提示save指令不存在,于是继续找解决方案,
    原文地址:http://blog.163.com/xavier_666/blog/static/25884000720163299503423/
    
    
    首先不管防火墙有没有关 都使用systemctl stop firewalld 关闭防火墙
    然后使用 yum install iptables-services 安装或更新服务
    再使用systemctl enable iptables 启动iptables
    最后 systemctl start iptables 打开iptables
    大功告成
    试试service iptables save
  • 相关阅读:
    路由器、交换机学习之IP地址、使用网络掩码划分子网
    PCB线宽与电流计算器--在线计算
    数组的访问形式
    STM32开发环境--使用MDK建立一个工程
    电源模块PCB设计
    STM32--TIM定时器时钟分割(疑难)
    STM32——输入捕获实验原理及配置步骤
    STM32——PWM基本知识及配置过程
    STM32——通用定时器基本定时功能
    STM32——NVIV:嵌套中断向量控制器
  • 原文地址:https://www.cnblogs.com/zengpeng/p/8674497.html
Copyright © 2011-2022 走看看