如果您有静态的 IP 地址, 您可以限制 IP 地址 。 根据此链接 : < a href=" https:// azure. microsoft.com/ en- us/blog/ ip-and- domain- restrations- for- windowows- azure- web- sites/ " rel= “ nofollow” > https://azure. microsoft.com/ en- us/blog/ ip-and- domain- restrations- for- windowows- azure- web- sites/
开发者可以使用 IP 和 域限制 控制 IP 的 IP 地址, 并控制 地址范围, 这些地址允许或拒绝访问他们的网站 。 Windows Azure 网站的开发者可以启用/ 禁用该功能, 并使用位于他们网站的 Web. config 文件定制其行为 。
这里的代码是:
<system.webServer>
<security>
<ipSecurity allowUnlisted="false" denyAction="NotFound">
<add allowed="true" ipAddress="123.456.0.0" subnetMask="255.255.0.0"/>
</ipSecurity>
</security>
</system.webServer>