MongoDB网络子网CIDR过滤器

时间:2017-06-29 10:00:20

标签: mongodb

有一个 tag 集合,其中包含ip cidr / tag。

/* 1 */
{
    "tag" : "office",
    "ip" : [ 
        "172.200.0.0/16", 
        "172.201.0.0/16", 
        "172.202.0.0/16", 
        "172.203.128.0/17", 
        "172.240.0.0/16", 
        "10.99.0.0/16"
    ]
}

/* 2 */
{
    "tag" : "server",
    "ip" : [ 
        "10.83.0.0/16", 
        "10.84.0.0/16"
    ]
}

有没有办法搜索ip tag 172.202.1.5 ?例如:

> db.getCollection("tag").find({ --how-to-filter-ip-tag-- }, {tag: 1})

0 个答案:

没有答案