Go TLS握手错误

huangapple go评论72阅读模式
英文:

Go TLS handshake error

问题

所以我的网络服务器似乎一切正常。但是我偶尔会收到以下错误信息:

> http: TLS握手错误,来自IP的EOF

证书都是有效的。HTTPS连接在移动设备和桌面上都正常工作,但我偶尔会收到这个错误消息。我应该担心吗?或者可能是一些不支持HTTPS的机器人吗?

服务器只是一个常规的ListenAndServeTLS,使用httprouter传递证书和密钥文件。没有返回错误。

英文:

So everything seems to be working fine on my webserver. But I randomly get

> http: TLS handshake error from IP EOF

The certs are all good. HTTPS connection works fine on mobile and desktop but I randomly get this error messages. Shouls I be worried or maybe its some bot with no https support?

The server is just a regular ListenAndServeTLS with an httprouter passed with the cert and key files. No error returned

答案1

得分: 2

这通常不是什么需要担心的事情。这可能只是一些网络扫描器,它只是试图找出是否有人在监听该端口,或者是一些连接质量不好的客户端。只要你没有从真实客户那里收到任何问题报告,你可以忽略这些干扰。

英文:

This is usually nothing to worry about. This can simply be some network scanner which just tries to find out if somebody is listening on the port or some client with bad connectivity. As long as you don't get any problem reports from real clients you can just ignore this noise.

huangapple
  • 本文由 发表于 2016年9月9日 09:56:16
  • 转载请务必保留本文链接:https://go.coder-hub.com/39402674.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定