有一个 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})