Filter over 100 CIDR

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Announcements

Filter over 100 CIDR

L1 Bithead

Hello,

 

I have an XQL query and I need IPs to be displayed if they are in some CIDR.

I know about the incidr command and the documentation says we can use it with multiple CIDR if we use coma to separate them.

Example : 

filter incidr(ip_address, "192.168.0.0/24, 1.168.0.0/24") = true

It doesn't work at all (I tried with 2 CIDR, I have an empty result and I should have at least one result).

 

Using multiple lines with alter is not an option since I have over 100 CIDR (and 100 lines with alter to create) and the command will take forever to run.

 

I was wondering if using a custom dataset will work.

If it does, how can I use it?

 

Regards,

Rémi.

3 REPLIES 3

L5 Sessionator

Hello,

 

Thanks for reaching us using the Live Community.

Please try below:

dataset = endpoints
| arrayexpand ip_address
| filter incidr(ip_address, "192.168.0.0/24, 1.168.0.0/24")
| fields ip_address

 

If this post answers your question, please mark it as the solution. 

Ashutosh Patil

L1 Bithead

Hello,

 

I tried the exact query and the result is empty.

I have IP addresses in 192.168.0.0/24.

 

If i run the query below, it's working but it's not an option since I have over 100 CIDR:

dataset = endpoints
| arrayexpand ip_address
| alter srcType = if(incidr(ip_address, "192.168.0.0/24") = true, "local", if(incidr(ip_address, "1.168.0.0/24") = true, "local", "remote"))
| filter srcType = "local"
| fields ip_address

 

Regards,

Hello @RemiLiquete ,

 

We have helped you with template. You have to check how to include 100 CIDR, incase if you need assistance you can check with Accounts Team for Professional services.

 

Hope this helps!

 

 

Ashutosh Patil
  • 328 Views
  • 3 replies
  • 0 Likes
Like what you see?

Show your appreciation!

Click Like if a post is helpful to you or if you just want to show your support.

Click Accept as Solution to acknowledge that the answer to your question has been provided.

The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!

These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!

The LIVEcommunity thanks you for your participation!