- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们无法通过申请测试。应 Apple 的要求,我们将静态 IPv6 地址添加到我们的服务器中。通过我们的申请,一切顺利,但再次被拒绝。问题还是一样。
他们收到错误:Socket Error #51 Network is unreachable.
不清楚为什么他们在测试期间无法连接到我们的服务器?
我们做错了什么?我们需要支持 IPv4 和 IPv6 吗?
我们使用以下组件
客户:
服务器:
服务器有一个静态 IPv6 地址,并且可用。
我们按以下方式处理连接:
try
IdSSLIOHandlerSocketOpenSSL1.IPVersion := Id_IPv6;
answerBuff := idHTTP1.Post('https://[xxxx:a0e0:bad:bad::53]:8001/', tmpPostRequestData);
except
IdSSLIOHandlerSocketOpenSSL1.IPVersion := Id_IPv4;
answerBuff := idHTTP1.Post('https://xx.85.157.25:8001', tmpPostRequestData);
end;
我们不使用域名,仅使用直接地址。服务器 IPv6 地址可用。请帮助某人。
原谅我们的英语。
最佳答案
我们有解决方案。
我们的 Wi-Fi 连接问题已解决。
The roots of the problem were growing due to the use of SSL. Please note that the receiving side (server) must listen to your secure traffic on port 443. Accordingly, the client must also send traffic to this port, or do not specify the port in the URL.
The second part of the problem was that after a lot of failure using the domain name, I despaired and refused to use the domain name to send requests, and tried to use direct IPv4, IPv6 address. It was a wrong decision. The problem is that SSL certificates are issued to the name of my domain, but not to the addresses of the tied servers.The firewall was cursing and did not let us go any further. Just use your domain name, and use correct ports.
不要忘记在您的 donaim 名称中包含 AAAA ns 记录。向我们的工程师致敬。
最诚挚的问候谢尔盖。
关于ios - Delphi 10.1 Berlin idHTTP/IPv6/iOS/Socket 错误 #51 网络无法访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46659402/
目前部署在 Kubernetes 中的服务,通过 Calico BGP 将 Service 与集群外网络打通,并在外部的 nginx 中配置 Service 地址对外进行服务暴露。经过一段时间的观察
如发现here , 有一种新的 kube 服务是 IPVS 并且有很多负载均衡算法。 唯一的问题是我没有找到指定这些算法的位置。 我的理解: rr:循环法->循环调用后端pod lc:最少连接-> 将
我想尝试这种新的代理模式以及它为我们的一些应用程序提供的各种调度程序。到目前为止,我一直无法找到更改默认模式的方法 iptables至 ipvs在 GKE 节点上。 每个人都说通过--proxy-mo
我想在现有集群中为 IPVS 启用 Kube-proxy 模式。目前,它在 IPtables 上运行。如何在不影响现有工作负载的情况下将其更改为 IPVS? 我已经安装了所有必需的模块来启用它。另外,
我正在开发的应用程序作为 Kubernetes 集群中的部署运行。为此部署创建的 Pod 分布在集群中的各个节点上。我们的应用程序一次只能处理一个 TCP 连接,并且会拒绝进一步的连接。目前,我们使用
我是一名优秀的程序员,十分优秀!