Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有两个应用程序服务器(IIS)。有一个交换机或一个虚拟 IP 可以对 2 个服务器的请求进行负载平衡。
我需要从我的 .NET 应用程序中跟踪请求者(客户端)IP 地址。
代码Request.ServerVariables["REMOTE_ADDR"]给出了交换机的 IP 地址。
Request.ServerVariables["REMOTE_ADDR"]
请求首先命中交换机,然后请求被转移到任一服务器,在此过程中,我的应用程序正在获取该代码的交换机 IP 地址,并且客户端 IP 被屏蔽。