午夜视频在线在免费-日本免费一区二区-少妇性bbb搡bbb爽爽爽四川-中文字幕精品一区二区-全婐体艺术照147147-国产亚洲人成网站在线观看-色婷婷com-黄色免费在线观看-香蕉国产在线视频-欧美成年网站-国产精品不卡免费视频,欧美人欧美人与动人物性行为,成年大片免费视频,99精品国产高清一区二区

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>