当前位置:   article > 正文

解决负载均衡中遇到Failed to connect to 10.3.3.173 port 443: No route to host_port 443 no route to host

port 443 no route to host

ACCEPT     udp  --  anywhere             anywhere            udp dpt:domain
ACCEPT     tcp  --  anywhere             anywhere            tcp dpt:domain
ACCEPT     udp  --  anywhere             anywhere            udp dpt:bootps
ACCEPT     tcp  --  anywhere             anywhere            tcp dpt:bootps
ACCEPT     all  --  anywhere             anywhere            state RELATED,ESTABLISHED
ACCEPT     icmp --  anywhere             anywhere            
ACCEPT     all  --  anywhere             anywhere            
ACCEPT     tcp  --  anywhere             anywhere            state NEW tcp dpt:ssh
REJECT     all  --  anywhere             anywhere            reject-with icmp-host-prohibited 


这里的问题,iptables当找到匹配的规则时,就会执行相应的动作,而不会向下继续匹配。
可以看到https没有添加,匹配不到规则,所以就会包错


解决方法:

iptables -I INPUT -p tcp --dport 443 -j ACCEPT


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/324383
推荐阅读
相关标签
  

闽ICP备14008679号