asp實現檢查ip地址是否為內網或者私人ip地址的代碼分享_應用技巧

來源:互聯網
上載者:User

asp檢查ip地址是否為私人/內網ip地址原始碼。

內網/私人IP地址網段如下,還有127開頭的迴環地址:

10.0.0.0-10.255.255.255
172.16.0.0—172.31.255.255
192.168.0.0-192.168.255.255

實現代碼:

<%function IpToNumber(ip)'IP地址轉為數字 arr=split(ip,".") IpToNumber=256*256*256*clng(arr(0))+256*256*clng(arr(1))+256*clng(arr(2))+clng(arr(3))end functionfunction IsPrivateIp(ip)'判斷給定的IP地址是否內網/私人ip地址 if instr(ip,"127.")=1 then'迴環IP地址  IsPrivateIp=true:exit function end if ABegin=IpToNumber("10.0.0.0"):AEnd=IpToNumber("10.255.255.255")'A類私人IP地址 BBegin=IpToNumber("172.16.0.0"):BEnd=IpToNumber("172.31.255.255")'B類私人IP地址 CBegin=IpToNumber("192.168.0.0"):CEnd=IpToNumber("192.168.255.255")'C類私人IP地址 IpNum=IpToNumber(ip) IsPrivateIp=(ABegin<=IpNum and IpNum<=AEnd) or (BBegin<=IpNum and IpNum<=BEnd) or (CBegin<=IpNum and IpNum<=CEnd)end functionResponse.Write IsPrivateIp("11.255.255.255")&"<br>"'falseResponse.Write IsPrivateIp("182.255.255.255")&"<br>"'falseResponse.Write IsPrivateIp("172.30.255.255")&"<br>"'trueResponse.Write IsPrivateIp("192.168.205.2")&"<br>"'trueResponse.Write IsPrivateIp("127.168.205.2")'true %>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.