# service iptables save The service command supports only basic LSB actions (start, stop, restart, try-restart, reload, force-reload, status). For other actions, please try to use systemctl.
时间: 2024-02-23 11:00:23 浏览: 91
这个错误提示是因为在 CentOS 7 或更高版本中,iptables 服务已经被转移到了 firewalld 服务中,而 firewalld 使用 systemctl 命令来管理。因此,你应该使用以下命令来保存防火墙规则:
```
# firewall-cmd --runtime-to-permanent
```
这个命令会将当前运行时的防火墙规则保存到永久性规则中。注意,这个命令需要 root 权限才能执行。
阅读全文