systemctl command not working in RHEL 6
In earlier versions of RHEL use the service
command as explained in the documentation here.
# service service_name start
Therefore, in your case:
# service iptables start
You can replace start
with restart
, stop
, status
.
List all services with:
# service --status-all