im kinda lost here with my Settings. I configure Iptables via a file. But the port 443 is not open, and i dont know why, because i drop nothing before the 443 rule. I know, that iptables matters my chain.
iptables -L -n output:
my file looks like:
filter
-A INPUT -i lo -j ACCEPT
-A INPUT ! -i lo -d 127.0.0.0/8 -j REJECT
-A OUTPUT -j ACCEPT
-A INPUT -p tcp --dport 80 -j ACCEPT
-A OUTPUT -p tcp -m tcp --dport 80 -j ACCEPT
-A INPUT -p tcp --dport 443 -j ACCEPT
-A OUTPUT -p tcp -m tcp --dport 443 -j ACCEPT
And much other rules related to the ports like FTP and everything works... Please give me any clue about this. Thanks in advance