essas regras do iptables proíbem o acesso ao servidor usando https: // ...: 7777?

essas regras do iptables proíbem o acesso ao servidor usando https: // ...: 7777?

parece que não especifica explicitamente que a porta 7777 não pode ser acessada de fora, mas o problema é que posso visitar este host através de https: // ...: 7777 somente quando fechar o serviço iptables.

então minha pergunta é qual regra no conjunto de regras a seguir me proíbe de acessar meu host usando https: // ...: 7777?

iptables -L
Chain INPUT (policy ACCEPT)
target     prot opt source               destination         
RH-Firewall-1-INPUT  all  --  anywhere             anywhere            

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         
RH-Firewall-1-INPUT  all  --  anywhere             anywhere            

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination         

Chain RH-Firewall-1-INPUT (2 references)
target     prot opt source               destination         
ACCEPT     all  --  anywhere             anywhere            
ACCEPT     icmp --  anywhere             anywhere            icmp any 
ACCEPT     esp  --  anywhere             anywhere            
ACCEPT     ah   --  anywhere             anywhere            
ACCEPT     udp  --  anywhere             224.0.0.251         udp dpt:mdns 
ACCEPT     udp  --  anywhere             anywhere            udp dpt:ipp 
ACCEPT     tcp  --  anywhere             anywhere            tcp dpt:ipp 
ACCEPT     all  --  anywhere             anywhere            state RELATED,ESTABLISHED 
ACCEPT     tcp  --  anywhere             anywhere            state NEW tcp dpt:ssh 
REJECT     all  --  anywhere             anywhere            reject-with icmp-host-prohibited 

Responder1

Você tem uma regra REJECT no final da sua cadeia INPUT:

REJECT     all  --  anywhere             anywhere            reject-with icmp-host-prohibited

informação relacionada