启用 Service Fabric 服务以将 PING 发送到外部主机 (C#)
Enable a Service Fabric Service to send PING to an external host (C#)
我在 Service Fabric 无状态服务(不是 API)中有一个方法可以向外部主机发送 PING 请求。它适用于我的本地 Service Fabric 集群,但不适用于 Azure 上的实际集群。
我通过 RDP 连接到集群并 ping 主机,结果都是 "Request timed out"。
有人试过这个吗?我正在绕过集群的防火墙。
ICMP 在 Azure 中被阻止。
不过,您可以使用 PSPing 检查连接。
更多信息。
Because the ICMP protocol is not permitted through the Azure load
balancer, you will notice that you are unable to ping an Azure VM from
the internet, and from within the Azure VM, you are unable to ping
internet locations.
我在 Service Fabric 无状态服务(不是 API)中有一个方法可以向外部主机发送 PING 请求。它适用于我的本地 Service Fabric 集群,但不适用于 Azure 上的实际集群。
我通过 RDP 连接到集群并 ping 主机,结果都是 "Request timed out"。
有人试过这个吗?我正在绕过集群的防火墙。
ICMP 在 Azure 中被阻止。 不过,您可以使用 PSPing 检查连接。
更多信息
Because the ICMP protocol is not permitted through the Azure load balancer, you will notice that you are unable to ping an Azure VM from the internet, and from within the Azure VM, you are unable to ping internet locations.