I have problems opening port 25 for sendmail on my CentOS 7 machine.
Here's my iptables configuration:
*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 -p tcp -m tcp --dport 25 -j ACCEPT
-A INPUT -m state --state NEW -p tcp --dport 80 -j ACCEPT
-A INPUT -j REJECT --reject-with icmp-host-prohibited
-A FORWARD -j REJECT --reject-with icmp-host-prohibited
COMMIT
Service is running:
[root@server1 /]# netstat -tnlp | grep sendmail
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 5857/sendmail
Any ideas why it's not working? Thanks a lot for the help!