我们可以在Azure资源管理器中的web.config
的“ipRestrictions”部分中放置的最大IP地址数是多少?
目前,我们必须将350个应该能够访问App Service的IP地址列入白名单。但是,在放入IP地址后,App Service会因IP地址的数量而导致内部服务器错误。解决方法是什么?
答案 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"
}
....
]