IP白名单

package com.ecreditpal.common.util;

import lombok.extern.slf4j.Slf4j;

import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.regex.Pattern;

/**
 * @ Author     :sunpz
 * @ Date       :Created in 15:20 2019-06-04
 * @ Description:ip 对比检查
 *            1.设置单个IP的白名单, 2.设置ip通配符,对一个ip段进行匹配 3.设置一个IP范围(*和-不能组合使用,只能有一组 *)
 *            如: 192.168.**.1 ; 如果 192.168.**.* ,则会匹配错误
 * @ Modified By:
 * @ Version    : 1.0
 */
@Slf4j
public class IpFIlterUtils {

    /**
     * IP的正则校验
     */
    private static final  Pattern PATTERN = Pattern.compile("(1\\d{1,2}|2[0-4]\\d|25[0-5]|\\d{1,2})\\."
                    + "(1\\d{1,2}|2[0-4]\\d|25[0-5]|\\d{1,2})\\."
                    + "(1\\d{1,2}|2[0-4]\\d|25[0-5]|\\d{1,2})\\."
                    + "(1\\d{1,2}|2[0-4]\\d|25[0-5]|\\d{1,2})");

    /**
     * 分割符号
     */
    private static final String SPLICT = ";";
    /**
     * ip 连接范围符号
     */
    private static final String CONNECT_SYMBOL = "-";
    /**
     * 单个ip分割最大值
     */
    private static final int MAX_IP_SPLICT = 255;

    /**
     * @Auther sunpz
     * @DateTime 2019-06-04 15:31
     * @Description: 根据IP白名单设置获取可用的IP列表
     * @Param allowIp
     * @Return: java.util.Set<java.lang.String>
     */
    private static Set<String> getAvaliIpList(String allowIp) {

        Set<String> ipList = new HashSet<>();
        for (String allow : allowIp.replaceAll("\\s", "").split(SPLICT)) {
            //如果带有 * 需要特殊处理
            if (allow.contains("*")) {
                String[] ips = allow.split("\\.");
                String[] from = new String[] { "0", "0", "0", "0" };
                String[] end = new String[] { "255", "255", "255", "255" };
                List<String> tem = new ArrayList<>();
                for (int i = 0; i < ips.length; i++){
                    if (ips[i].contains("*")) {
                        tem = complete(ips[i]);
                        from[i] = null;
                        end[i] = null;
                    } else {
                        from[i] = ips[i];
                        end[i] = ips[i];
                    }
                }
                StringBuilder fromIP = new StringBuilder();
                StringBuilder endIP = new StringBuilder();
                for (int i = 0; i < 4; i++){
                    if (from[i] != null) {
                        fromIP.append(from[i]).append(".");
                        endIP.append(end[i]).append(".");
                    } else {
                        fromIP.append("[*].");
                        endIP.append("[*].");
                    }
                }
                fromIP.deleteCharAt(fromIP.length() - 1);
                endIP.deleteCharAt(endIP.length() - 1);

                for (String s : tem) {
                    String ip = fromIP.toString().replace("[*]", s.split(SPLICT)[0])
                            + CONNECT_SYMBOL
                            + endIP.toString().replace("[*]", s.split(SPLICT)[1]);
                    if (validate(ip)) {
                        ipList.add(ip);
                    }
                }
            } else {
                if (validate(allow)) {
                    ipList.add(allow);
                }
            }

        }

        return ipList;
    }

   /**
    * @Auther sunpz
    * @DateTime 2019-06-04 17:13
    * @Description: 对单个IP节点进行范围限定
    * @Param null
    * @Return: 回限定后的IP范围,格式为List[10;19, 100;199]
    */
    private static List<String> complete(String arg) {
        List<String> com = new ArrayList<>();
        if (arg.length() == 1) {
            com.add("0;255");
        } else if (arg.length() == 2) {
            String s1 = complete(arg, 1);
            if (s1 != null){
                com.add(s1);
            }
            String s2 = complete(arg, 2);
            if (s2 != null){
                com.add(s2);
            }
        } else {
            String s1 = complete(arg, 1);
            if (s1 != null){
                com.add(s1);
            }
        }
        return com;
    }

    /**
     * @Auther sunpz
     * @DateTime 2019-06-04 17:13
     * @Description: 获取 ip范围
     * @Param arg
     * @Param length
     * @Return: java.lang.String
     */
    private static String complete(String arg, int length) {
        String from;
        String end;
        if (length == 1) {
            from = arg.replace("*", "0");
            end = arg.replace("*", "9");
        } else {
            from = arg.replace("*", "00");
            end = arg.replace("*", "99");
        }
        if (Integer.valueOf(from) > MAX_IP_SPLICT){
            return null;
        }
        if (Integer.valueOf(end) > MAX_IP_SPLICT){
            end = "255";
        }
        return from + SPLICT + end;
    }

    /**
     * @Auther sunpz
     * @DateTime 2019-06-04 17:13
     * @Description: 对ip进行格式校验
     * @Param ip
     * @Return: boolean
     */
    private static boolean validate(String ip) {
        for (String s : ip.split(CONNECT_SYMBOL)){
            if (!PATTERN.matcher(s).matches()) {
                return false;
            }
        }
        return true;
    }

     /**
      * @Auther sunpz
      * @DateTime 2019-06-04 15:33
      * @Description: 根据IP,及可用Ip列表来判断ip是否包含在白名单之中
      * @Param ip
      * @Param ipList
      * @Return: boolean: boolean
      */
    private static boolean checkLoginIP(String ip, Set<String> ipList) {
        log.info("[检查IP] 处理后 : {} ,list {}", ip, ipList);
        if (ipList.isEmpty() || ipList.contains(ip)){
            return true;
        }
        //如果含有 "-" 则需要逐段比较
        else {
            for (String allow : ipList) {
                if (allow.contains(CONNECT_SYMBOL)) {
                    String[] from = allow.split(CONNECT_SYMBOL)[0].split("\\.");
                    String[] end = allow.split(CONNECT_SYMBOL)[1].split("\\.");
                    String[] tag = ip.split("\\.");

                    // 对IP从左到右进行逐段匹配
                    boolean check = true;
                    for (int i = 0; i < 4; i++) {
                        int s = Integer.valueOf(from[i]);
                        int t = Integer.valueOf(tag[i]);
                        int e = Integer.valueOf(end[i]);
                        if (!(s <= t && t <= e)) {
                            check = false;
                            break;
                        }
                    }
                    if (check) {
                        return true;
                    }
                }
            }
        }
        return false;
    }

    /**
     *
     * checkLoginIP:(根据IP地址,及IP白名单设置规则判断IP是否包含在白名单).
     * @date 2017-4-17 下午03:01:37
     * @param ip
     * @param ipWhiteConfig
     * @return
     */
    public static boolean checkLoginIP(String ip,String ipWhiteConfig){
        log.info("[检查IP] {} ,list {}", ip, ipWhiteConfig);
        Set<String> ipList = getAvaliIpList(ipWhiteConfig);
        return checkLoginIP(ip, ipList);
    }

    public static void main(String[] args) {
        //
        String ipWhilte = "192.168.1.1;" +
                "192.168.2.*;" +
                "192.168.3.17-192.168.3.38";

        System.out.println(checkLoginIP("192.168.1.3", ipWhilte));
    }
}

代码部分来自网络,有修改 http://www.itdaan.com/blog/2017/01/23/973ee9c4c156ddcbd1992fc7bd2edb79.html

原文地址:https://www.cnblogs.com/mlfz/p/10974727.html

时间: 2024-11-10 09:37:26

IP白名单的相关文章

利用CentOS系统IPtables防火墙添加网站IP白名单

参考博文: 利用CentOS系统IPtables防火墙添加360网站卫士节点IP白名单 centos6.5添加白名单如下: 在防火墙 配置文件中加入白名单  ip -A INPUT -s 183.136.133.0/24 -j ACCEPT 批量添加  参考博文 如上! 查看iptables规则是否生效 [[email protected] ~]# iptables -nL centos7添加白名单参考博文: centOS7 下利用iptables配置IP地址白名单

ip白名单 通过* ? 检测IP匹配 轻量级

? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86

通过网站不能跳转登录的案例来看IP白名单的设置

最近在公司遇到一个问题,进入公司的游戏产品官网注册一个普通用户账号,登录官网 然后点击进入该游戏产品的论坛,不能自动跳转到论坛实现自动登录 于是自己去官网注册了一个普通用户账号,登录官网,测试看看,发现确实不能自动跳转到论坛 登录论坛的服务器数据库,查看到数据库里已经有刚刚注册的用户数据了,但密码没有同步过来 经过和开发的一起分析和故障排查,发现一个报错程序 com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communicatio

Windows Azure Web Site (14) Azure Web Site IP白名单

<Windows Azure Platform 系列文章目录> 我们知道,在Azure Cloud Service和Virtual Machine,可以通过Endpoint ACL (Access Control List)访问控制列表.来设置IP白名单规则. 具体请参考:Windows Azure Virtual Network (10) 使用Azure Access Control List(ACL)设置客户端访问权限 在默认情况下,Azure Web Site是没有IP白名单的.也就是说

Java IP白名单相关工具类

关于设置IP白名单相关的一些方法,整理,记录了一下. package com.tools.iptool; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; import java.util.regex.Pattern; /** * @ClassName:IPWhiteList * @Function: IP 白名单. * @Reason:关于IP白名

Centos防火墙添加IP白名单

Centos iptables防火墙添加IP白名单,指定IP可访问端口 vi /etc/sysconfig/iptables 以下为我虚拟机的防火墙为例(Centos 7) # sample configuration for iptables service # you can edit this manually or use system-config-firewall # please do not ask us to add additional ports/services to t

微信公众平台IP白名单问题

在开发使用微信公众平台时,目前遇到有三处需要配置IP白名单. 1.微信公众平台,“获取access_token”接口新增IP白名单保护,官网:https://mp.weixin.qq.com/cgi-bin/announce?action=getannouncement&key=1495617578&version=1&lang=zh_CN&platform=2 2.微信商户平台,开通企业付款到零钱时,需要设置IP白名单 3.微信开放平台中,第三方平台开发调用相关接口时,需

PHP 限制访问ip白名单

一  上代码 config.php //ip白名单配置 'ipWlist'=>[ 'ifFilter'=>true, //是否开启白名单功能 'wlist'=>[ '10.0.0.19', ], 'warea1'=>'10.8.0.0/16', //白名单网段1 'warea2'=>'10.12.0.0/16', //白名单网段1 ], commonfunc.php private function checkIp(){ $user_IP = ($_SERVER["

在Linux服务器上添加ip白名单允许ssh登录访问

vi /etc/hosts.allow # hosts.allow This file contains access rules which are used to # allow or deny connections to network services that # either use the tcp_wrappers library or that have been # started through a tcp_wrappers-enabled xinetd. # # See