Window2008通过web.config进行限制ip访问
Posted cannovo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Window2008通过web.config进行限制ip访问相关的知识,希望对你有一定的参考价值。
限制ip 访问 禁止访问的ip或者ip段
<security>
<ipSecurity allowUnlisted="ture">
<clear/>
<add ipAddress="127.0.0.1 allowed="true"/>
<add ipAddress="83.116.19.53 allowed="true"/>
<add ipAddress="83.116.119.0" subnetMask="255.255.255.0" allowed="true"/>
<add ipAddress="83.117.0.0" subnetMask="255.255.0.0" allowed="true"/>
<add ipAddress="83.0.0.0" subnetMask="255.0.0.0" allowed="true"/>
</ipSecurity>
</security>
永许ip访问 可以访问的ip或者ip段
<security>
<ipSecurity allowUnlisted="false">
<clear/>
<add ipAddress="127.0.0.1 allowed="true"/>
<add ipAddress="83.116.19.53 allowed="true"/>
<add ipAddress="83.116.119.0" subnetMask="255.255.255.0" allowed="true"/>
<add ipAddress="83.117.0.0" subnetMask="255.255.0.0" allowed="true"/>
<add ipAddress="83.0.0.0" subnetMask="255.0.0.0" allowed="true"/>
</ipSecurity>
</security>
以上是关于Window2008通过web.config进行限制ip访问的主要内容,如果未能解决你的问题,请参考以下文章
vs2008,原有的项目中添加了新的aspx文件后,怎样在之后生成的网址中添加新的URL