在“ipSecurityRestrictions”中放入350个IP地址后出现Azure App Service内部服务错误

时间:2017-03-02 19:28:09

标签: azure azure-web-sites ip-address azureportal

我们可以在Azure资源管理器中的web.config“ipRestrictions”部分中放置的最大IP地址数是多少?

目前,我们必须将350个应该能够访问App Service的IP地址列入白名单。但是,在放入IP地址后,App Service会因IP地址的数量而导致内部服务器错误。解决方法是什么?

1 个答案:

答案 0 :(得分:0)

请尝试使用azure资源(https://resources.azure.com)WebsiteName-> config-> web-> ipSecurityRestrictions。我们可以添加如下的值然后放入http请求。我尝试添加超过350个ipAddress,它仍然运行良好。更多详细步骤请参阅另一个SO Thread

ipSecurityRestrictions": [
      {
        "ipAddress": "x.x.x.x",
        "subnetMask": "x.x.x.x"
      },
      {
        "ipAddress": "x.x.x.x",
        "subnetMask": "x.x.x.x"
      }
     ....
   ]