如何在Web.config中限制IP地址IIS 10 Windows Server 2016

ykejflvf  于 2022-11-24  发布在  Windows
关注(0)|答案(1)|浏览(226)

Windows Server 2016服务器配置文件
我在web.config中有这个

<security>
    <ipSecurity allowUnlisted="true">
        <clear />
        <add ipAddress="xx.xx.x.x" />
    </ipSecurity>
</security>

我还在ApplicationHost.config中设置了

section name="ipSecurity" overrideModeDefault="Allow"

我还为IIS安装了IP和域限制角色
然而,它仍然不起作用。
我是不是错过了什么?

vql8enpb

vql8enpb1#

添加被拒绝的IP地址后,单击Edit Feature Settings...并为Access for unspecified clients选择Allow。单击OK

相关问题