Splunk Search

Why are tstats search not filtering out local IP ranges?

dmbrcx
Explorer

Hi,

I am using tstats to search the Network Datamodel for outbound SMB traffic (port 445) to external IP address ranges.

Why are local IP ranges still appearing in my search results?

Here is my syntax:

 

 

| tstats summariesonly=t fillnull_value="MISSING" count from datamodel=Network_Traffic.All_Traffic where All_Traffic.dest_port="445" AND NOT All_Traffic.dest IN ("10.0.0.0/8","172.16.0.0/16","192.168.0.0/24") earliest=-15m latest=now
by _time, All_Traffic.dest, All_Traffic.dest_port,All_Traffic.src, All_Traffic.src_port, All_Traffic.action, All_Traffic.bytes, index, sourcetype

 

 

Screenshot:

Splunk Forum Question 2023-03-15_15-01.png

I believe I have filtered them correctly, but hmm...

Labels (1)
0 Karma
1 Solution

yuanliu
SplunkTrust
SplunkTrust

Two things.  First, CIDR match doesn't go with the IN operator.  You have to specify them individually, like

| tstats summariesonly=t fillnull_value="MISSING" count from datamodel=Network_Traffic.All_Traffic where All_Traffic.dest_port="445"
 AND NOT (All_Traffic.dest="10.0.0.0/8" OR All_Traffic.dest="172.16.0.0/16" OR All_Traffic.dest="192.168.0.0/24")
 earliest=-15m latest=now
by _time, All_Traffic.dest, All_Traffic.dest_port,All_Traffic.src, All_Traffic.src_port, All_Traffic.action, All_Traffic.bytes, index, sourcetype

Second, beware of Limitations of CIDR matching with tstats.

View solution in original post

dmbrcx
Explorer

Thank you. Those limitations are interesting. I am surprised I have not noticed this issue before.

0 Karma

yuanliu
SplunkTrust
SplunkTrust

Two things.  First, CIDR match doesn't go with the IN operator.  You have to specify them individually, like

| tstats summariesonly=t fillnull_value="MISSING" count from datamodel=Network_Traffic.All_Traffic where All_Traffic.dest_port="445"
 AND NOT (All_Traffic.dest="10.0.0.0/8" OR All_Traffic.dest="172.16.0.0/16" OR All_Traffic.dest="192.168.0.0/24")
 earliest=-15m latest=now
by _time, All_Traffic.dest, All_Traffic.dest_port,All_Traffic.src, All_Traffic.src_port, All_Traffic.action, All_Traffic.bytes, index, sourcetype

Second, beware of Limitations of CIDR matching with tstats.

Get Updates on the Splunk Community!

Get the T-shirt to Prove You Survived Splunk University Bootcamp

As if Splunk University, in Las Vegas, in-person, with three days of bootcamps and labs weren’t enough, now ...

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...