I added an entry into my IPTABles using following command steps 1) iptables -A TRUSTED -s 192.168.2.0/24 -d 0/0 -p ALL -j ACCEPT 2) service iptables status 3) service iptables save
Everything is working fine. I can see my entry using service iptables status Entry can also be seen in /etc/sysconfig/iptables File Problem: When I restart my Linux machine, the above entry is not seen when using service iptables status. I have to restart iptables again using below command. service iptables restart. Question: Will the below command help? chkconfig iptables on
