Firefox,访问 https url 时出错

Firefox,访问 https url 时出错

我通过公共 wifi 热点连接。使用 IExplorer 时没有问题。当我使用 Firefox 时,在请求任何 https url 后,我收到以下错误消息,例如https://www.google.com

An error occurred during a connection to www.google.com.

SSL received a record that exceeded the maximum permissible length.

(Error code: ssl_error_rx_record_too_long)

我该如何解决?

答案1

可以通过取消选中 TLS 加密来修复此问题。Tools> Option> Encryption (tab)> 和uncheck TLS 1.0


更新

寻找这些偏好(security.tls.version*)。

  • 安全.tls.版本.min
  • 安全.tls.版本.max

在 Awesomebar 中,输入或粘贴about:config并点击箭头。tls在搜索框中输入内容,然后点击Enter键,即可查找包含以下内容的所有偏好设置TLS

根据代码中的注释:

// 0 means SSL 3.0, 1 means TLS 1.0, 2 means TLS 1.1, etc.

因此尝试同时设置分钟最大限度2, 强迫TLS 1.1,看看是否有效。

See Reference

相关内容