有没有办法在 kusto 中使用 CIDR 范围?下面的代码只有在我删除 /24 时才有效。
let whiteList = dynamic (["192.168.2.0/24", "192.168.1.0/24"]); // setup a whitelist of range IP
OfficeActivity
| where Operation == "MailboxLogin"
| where ClientIP in (whiteList)
| summarize count=count() by UserId
请问有什么解决办法吗?