I must have a small error in my iptables (Centos 7 client)
if I service iptables stop I can communicate with the zabbix agent, put iptables back on, and no communication, so there has to be a mini error
Any help would be appreciated.
T. James
if I service iptables stop I can communicate with the zabbix agent, put iptables back on, and no communication, so there has to be a mini error
Code:
# Generated by iptables-save v1.4.7 on Tue Mar 24 13:21:34 2015 *filter :INPUT ACCEPT [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [0:0] -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT -A INPUT -p icmp -j ACCEPT -A INPUT -i lo -j ACCEPT -A INPUT -p tcp -m state --state NEW -m tcp --dport 22 -j ACCEPT -A INPUT -j REJECT --reject-with icmp-host-prohibited -A INPUT -p tcp -m tcp --dport 10050 -j ACCEPT -A INPUT -p tcp -m tcp --dport 10051 -j ACCEPT -A FORWARD -j REJECT --reject-with icmp-host-prohibited -A OUTPUT -p tcp -m tcp --dport 10051 -j ACCEPT -A OUTPUT -p tcp -m tcp --dport 10050 -j ACCEPT COMMIT # Completed on Tue Mar 24 13:21:34 2015
T. James
Comment