CentOS 7出现Failed to start iptables.service: Unit iptables.service failed to load

浅浅的花香味﹌ 2023-08-17 15:27 243阅读 0赞

错误信息如下:

  1. service iptables start
  2. Redirecting to /bin/systemctl start iptables.service
  3. Failed to start iptables.service: Unit iptables.service failed to load: No such file or directory.
  4. 解决方法如下:
  5. 因为centos7默认的防火墙是firewalld防火墙管理工具,不是使用iptables。因此需要先关闭firewalld服务,或者使用默认的firewalld防火墙。

(1)关闭firewalld:

  1. systemctl stop firewalld
  2. systemctl mask firewalld

(2) 使用iptables服务:

1.安装iptables-services:

yum install iptables-services

2.设置开机启动:

  1. systemctl enable iptables
  1. iptables启动、关闭、保存:

    systemctl [stop|start|restart] iptables

    or

    service iptables [stop|start|restart]

  1. service iptables save
  2. #or
  3. /usr/libexec/iptables/iptables.init save

发表评论

表情:
评论列表 (有 0 条评论,243人围观)

还没有评论,来说两句吧...

相关阅读