我必须限制公众对我的Azure应用服务的访问,因此我已经在web配置中实现了IP白名单。是否需要白名单Azure数据中心IP范围?我的应用程序服务使用Azure、redis和搜索服务。
发布于 2018-09-24 03:44:41
<ipsecurity>配置更好,- **With Azure App Service IP restrictions, traffic will blocked even before it reaches your IIS.**
- You can still continue to use your web.config configuration as it is.
- Configuration effort is pretty minimal as it's all available through portal
在这里阅读更多关于它的Azure App Service静态IP限制
有一段时间,门户中的IP限制功能是IIS中ipSecurity功能之上的一个层。目前的IP限制能力是不同的。您仍然可以在应用程序ipSecurity中配置web.config,但是在任何流量到达IIS之前,将应用基于前端的IP限制规则。

https://stackoverflow.com/questions/52471336
复制相似问题