How to open port 2195 in iptables CentOS 6 for activating the APNS

apple-push-notifications, centos, centos5, iptables, linux

Solution

How about:

iptables -A INPUT -p tcp --dport 2195 -j ACCEPT
service iptables restart

This may help too.

Problem

I tried this solution: ``` iptables -I OUTPUT -p tcp --dport 2195 -j ACCEPT /etc/init.d/iptables stop /etc/init.d/iptables start ``` but still can't access the port. If there are more ports that I have to open for APNS let me know.

Original source

Related problems