IP filtering restriction function in ASP

Source: Internet
Author: User
Tags exit split
Function

<%
' Get the visitor's address
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.Write Checkip (IP,ALLOWIP1,ALLOWIP2)


Function Checkip (ip,allowip1,allowip2)
Dim Check (4)
Checkip=false
Ipstr=split (IP, ".")
Allow1=split (Allowip1, ".")
Allow2=split (ALLOWIP2, ".")
If CInt (Allow1 (0)) >cint (allow2 (0)) Then ' Determine if the IP address segment is legitimate
Response.Write ' IP address segment Error! "
Exit Function
End If
for I=0 to UBound (IPSTR)
If CInt (Allow1 (i)) <cint (Allow2 (i)) then
if CInt ( Allow1 (i)) =cint (Ipstr (i)) then
Check (i) =true
Checkip=true
Exit for
Else
if CInt (Ipstr (i)) <cint ( Allow2 (i)) then
Check (i) =true
Checkip=true
Exit for
Else
if CInt (Ipstr (i)) >cint (Allow2 (i)) then
Check (i) =false
Checkip=false
Exit for
Else
Check (i) =true
checkip=true
End If
End If
End If
Else
if CInt (Allow1 (i)) >cint (Ipstr (i)) or CInt (Allow1 (i)) <cint (Ipstr (i)) then
Check (i) =false
Checkip=false
If I<>ubound (ipstr) then
Exit for
End If
Else
Check (i) =true
End If
End If
Next

if (check (0) =true and check (1) =true and check (2) =true and check (3) =false) and (CInt (Allow2 (2)) >cint (IPSTR (2))) then
Checkip=true
End If

End Function
%>



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.