2

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

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

4

1 回答 1

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"
      }
     ....
   ]
于 2017-03-03T03:30:06.473 回答