ASP Limits IP Access

Source: Internet
Author: User
Tags split
Visit <%
"Get the address of the visitor
Ip=request.servervariables ("REMOTE_ADDR")

' The allowed IP address segment is 10.0.0.0~10.68.63.255
allowip1= "10.0.0.0"
Allowip2= "10.68.10.71"
Response.writecheckip (IP,ALLOWIP1,ALLOWIP2)
Functioncheckip (IP,ALLOWIP1,ALLOWIP2)
Dimcheck (4)
Checkip=false
Ipstr=split (IP, ".")
Allow1=split (Allowip1, ".")
Allow2=split (ALLOWIP2, ".")
Ifcint (Allow1 (0)) >cint (allow2 (0)) then ' to determine if the IP address segment is legitimate
Response.Write "No Access"
Exitfunction
endif
Fori=0toubound (IPSTR)
Ifcint (Allow1 (i)) <cint (Allow2 (i)) then
Ifcint (Allow1 (i)) =cint (Ipstr (i)) then
Check (i) =true
Checkip=true
Exitfor
Else
Ifcint (Ipstr (i)) <cint (Allow2 (i)) then
Check (i) =true
Checkip=true
Exitfor
Else
Ifcint (Ipstr (i)) >cint (Allow2 (i)) then
Check (i) =false
Checkip=false
Exitfor
Else
Check (i) =true
Checkip=true
endif
endif
endif
Else
Ifcint (Allow1 (i)) >cint (Ipstr (i)) Orcint (Allow1 (i)) <cint (Ipstr (i)) then
Check (i) =false
Checkip=false
Ifi<>ubound (IPSTR) Then
Exitfor
endif
Else
Check (i) =true
endif
endif
Next
if (check (0) =trueandcheck (1) =trueandcheck (2) =trueandcheck (3) =false) and (CInt (Allow2 (2)) >cint (IPSTR (2)) Then
Checkip=true
endif
Endfunction
%>


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.