Splunk Search

How to write query to exclude the logs having src_ip starting with either 10 or 172?

biswa2112
Engager

I have this query in Splunk which gets me the src_ip  along with different fields  for the particular UserId. But i want to exclude the logs having src_ip starting with either 10 or 172 . Could someone please help  

 

index=wineventlog $UserId sourcetype="WinEvt:ADFS" EventCode=120* | rex "IpAddress\W(?<src_ip>\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3})" | rex "Activity\sID\W(?<Activity_ID>\s.*)" | table src_ip, Activity_ID, _time, UserAgent | sort _time | reverse

Labels (3)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust
index=wineventlog $UserId sourcetype="WinEvt:ADFS" EventCode=120* 
| rex "IpAddress\W(?<src_ip>\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3})" 
| regex src_ip!="^10\.|^172\."
| rex "Activity\sID\W(?<Activity_ID>\s.*)" 
| table src_ip, Activity_ID, _time, UserAgent 
| sort 0 - _time

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust
index=wineventlog $UserId sourcetype="WinEvt:ADFS" EventCode=120* 
| rex "IpAddress\W(?<src_ip>\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3})" 
| regex src_ip!="^10\.|^172\."
| rex "Activity\sID\W(?<Activity_ID>\s.*)" 
| table src_ip, Activity_ID, _time, UserAgent 
| sort 0 - _time
Get Updates on the Splunk Community!

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...