curl网络访问时报错:(56) Recv failure: Connection timed out

这篇具有很好参考价值的文章主要介绍了curl网络访问时报错:(56) Recv failure: Connection timed out。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

一、问题描述

某次用户对接某业务平台,在用户侧curl平台侧资源,报错:(56) Recv failure: Connection timed out;
curl网络访问时报错:(56) Recv failure: Connection timed out

二、分析处理

1、在服务器端curl上述地址正常;公网访问该url地址也正常;
curl网络访问时报错:(56) Recv failure: Connection timed out
2、用户侧访问,telnet 端口访问正常,这是curl Url时,提示连接超时;

3、可能原因:
curl网络访问时报错:(56) Recv failure: Connection timed out
客户端侧查看socket:显示:ESTABLISHED

当tcp连接完成syn->syn ack后进入ESTABLISHED状态, 而可能由于客户侧iptables的配置导致服务端之后返回的tcp报文被drop掉,服务端多次重传后无ack返回,返回 time out

4>抓包分析:

客户端和服务端都可以:

服务端执行:tcpdump -i eth1 tcp port 10080 and src host client_ip

现场实际:只看到src进来了,没看到出去的;最后原因为,本地确实到src_ip的路由,添加静态路由后,再次测试,访问正常。

三、相关参考:

3.1、常见Socket网络异常类型

curl网络访问时报错:(56) Recv failure: Connection timed out

3.2、网络异常场景示例说明

1)connect timed out

假如客户端:iptables -A OUTPUT -p tcp --syn --dport 10080 -j DROP

客户端访问服务端时,会出现以下类似报错:

Connection timed out* couldn’t connect to host
Closing connection #0
curl: (7) couldn’t connect to host

客户端查看socket状态:SYN_SENT,即压根出不去

2) Connection timed out

假如客户端侧:iptables -A OUTPUT -p tcp -m state --state ESTABLISHED --dport 10080 -j DROP

客户端访问服务端,会出现以下类似报错:

  • Recv failure: Connection timed out* Closing connection #0
    curl: (56) Recv failure: Connection timed out

客户端查看socket状态:ESTABLISHED;客户端抓包可看到:当tcp连接完成syn->syn ack后进入ESTABLISHED状态, 而由于iptables的配置导致服务端之后返回的tcp报文被drop掉,服务端多次重传后无ack返回,返回Connection time out
curl网络访问时报错:(56) Recv failure: Connection timed out
3)Connection refused

假如客户端通过iptables有:iptables -A OUTPUT -p tcp --dport 10080 -j REJECT

客户端访问服务端,会出现以下类似报错:

  • Connection refused
  • couldn’t connect to host
  • Closing connection #0
    curl: (7) couldn’t connect to host

客户端查看socket状态:FIN_WAIT1;服务端抓包可知,由于iptables的配置,客户端主动reject掉服务端返回的syn ack;
curl网络访问时报错:(56) Recv failure: Connection timed out

4)Connection reset by peer or connection reset

客户端访问服务端,出现如下类似报错:

  • Recv failure: Connection reset by peer* Closing connection #0
    curl: (56) Recv failure: Connection reset by peer

客户端抓包可看到,服务端在tcp连接建立后主动down掉连接:
curl网络访问时报错:(56) Recv failure: Connection timed out
参考:异常测试之Socket网络异常
文章来源地址https://www.toymoban.com/news/detail-450824.html

到了这里,关于curl网络访问时报错:(56) Recv failure: Connection timed out的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包