<div dir="ltr">Hello,<br><br>I need to allow access to port 443 for the https, We are using the Arno firewall script but I manually added the rules in the terminal with <br><br><b>iptables -A INPUT -p tcp -s 0/0 --sport 1024:65535 -d $SERVER_IP --dport 443 -m state --state NEW,ESTABLISHED -j ACCEPT<br>
iptables -A OUTPUT -p tcp -s $SERVER_IP --sport 443 -d 0/0 --dport 1024:65535 -m state --state ESTABLISHED -j ACCEPT<br><br>(from the iptables -L <br>ACCEPT tcp -- ***.***.<a href="http://co.uk">co.uk</a> anywhere tcp spt:https dpts:1024:65535 state ESTABLISHED <br>
ACCEPT tcp -- ***.***.<a href="http://co.uk">co.uk</a> anywhere tcp spt:https dpts:1024:65535 state ESTABLISHED <br></b><br>I have also tried <br><br><b>iptables -A INPUT -p tcp –dport 443 -m state –state NEW -j ACCEPT<br>
</b><br>But when I do a nmap on the host though it shows as it being closed<br><br>Not shown: 1711 filtered ports<br>PORT STATE SERVICE<br>22/tcp open ssh<br>80/tcp open http<br>443/tcp closed https<br><br>I can't telnet to port 443 either<br>
<br>It is probably something straight forward that I am missing but I can't work it out.<br><br>As always any help would be most appreciative <br></div>