I'm starting to use RHEL7 and learning a little about the changes that come with systemd.
Is there a way to perform /sbin/service iptables save
in firewalld?
$ /sbin/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.
The closest parallel I can find from the Documentation is --reload
:
Reload the firewall without loosing state information:
$ firewall-cmd --reload
But it doesn't explicitly say if it's saving or not.