国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

IP黑名單校驗(yàn)

2019-11-09 19:15:03
字體:
供稿:網(wǎng)友

1.原理

ip區(qū)間 0.0.0.0-255.255.255.255 即16進(jìn)制的0.0.0.0-FF.FF.FF.FF 最大最小值區(qū)間:可按位與為00000~FFFFFFFF

比較的時(shí)候:把需要進(jìn)行判斷的IP,和需要比較的區(qū)間轉(zhuǎn)化為16進(jìn)制,再與做大小比較

2.具體實(shí)現(xiàn):

// 例: 黑名單:10.102.49.1-10.102.49.3// 當(dāng)前IP:10.102.49.37 String dicCont = dicEntity2.getDicCont(); String[] dicIps = dicCont.split("-"); String[] ips = ip.split("http://."); //解析網(wǎng)段黑名單 String[][] ipWhite = {dicIps[0].split("http://."), dicIps[1].split("http://.")};// 黑名單網(wǎng)段的上行 int _3DicUp = Integer.parseInt(ipWhite[1][0]); int _6DicUp = Integer.parseInt(ipWhite[1][1]); int _9DicUp = Integer.parseInt(ipWhite[1][2]); int _12DicUp = Integer.parseInt(ipWhite[1][3]);// 黑名單網(wǎng)段的下行 int _3DicDown = Integer.parseInt(ipWhite[0][0]); int _6DicDown = Integer.parseInt(ipWhite[0][1]); int _9DicDown = Integer.parseInt(ipWhite[0][2]); int _12DicDown = Integer.parseInt(ipWhite[0][3]);// 黑名單當(dāng)前ip int _3loc = Integer.parseInt(ips[0]); int _6loc = Integer.parseInt(ips[1]); int _9loc = Integer.parseInt(ips[2]); int _12loc = Integer.parseInt(ips[3]); //按位與拼接上行 long upIp = 0xff & _3DicUp << 24 | _6DicUp << 16 | _9DicUp << 8 | _12DicUp; //按位與拼接下行 long downIp = 0xff & _3DicDown << 24 | _6DicDown << 16 | _9DicDown << 8 | _12DicDown; long locIp = 0xff & _3loc << 24 | _6loc << 16 | _9loc << 8 | _12loc; // 當(dāng)前IP與上行IP、下行IP比較 if (locIp >= downIp && locIp <= upIp) { //返回1表示,當(dāng)前IP處于黑名單區(qū)間 return 1; }
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 义马市| 哈尔滨市| 元江| 泊头市| 平塘县| 侯马市| 罗山县| 中江县| 麟游县| 迁西县| 郧西县| 萝北县| 介休市| 舒城县| 张北县| 正阳县| 平利县| 寿阳县| 巴彦县| 鲜城| 江门市| 黑水县| 灵丘县| 裕民县| 潮州市| 汉源县| 阿勒泰市| 井研县| 万荣县| 宁强县| 晴隆县| 平果县| 罗田县| 紫金县| 安仁县| 营山县| 嘉鱼县| 大英县| 朝阳县| 古丈县| 芜湖县|