x-forwarded-for
我在 AWS Elastic 负载均衡器后面有一个 IIS 服务器。我想从以下位置检索设置到标头中的真实客户端 IP 地址AWS 弹性负载均衡器。
我发现这个设置可以启用代理模式,但IIS需要负载均衡器的静态IP地址,而负载均衡器只有动态IP地址。
<security>
<ipSecurity allowUnlisted="false" enableProxyMode="true">
<add ipAddress="XXX.XXX.XXX.XXX" allowed="true"/>
</ipSecurity>
</security>
如何启用动态 IP 地址的代理模式?