Splunk Search

How to search and only return results for users with more than one recorded IP address (src_ip) against their username?

domenico_perre
Path Finder

Hi All,

Having issues with trying to get a search to work. Below is the sample data after I write the following query

index=index sourcetype=sourcetype | stats values(src_ip) by user

Data:

>user src_ip
>_________________
>testuser 1.1.1.1
> 1.1.1.2
>_________________
>testuser1 2.2.2.2
>_________________
>testuser2 3.3.3.3

What I am trying to get out a search is, if a person has two recorded IP addresses against their name, return the result to me. So in the above data sample I am only interested in testuser, not the rest. Just imagine that 1.1.1.1 and 1.1.1.2 are aligned in the same field ;).

Look forward to your responses and thanks in advance 🙂

Tags (4)
0 Karma
1 Solution

vganjare
Builder

Hi,

You can try using dc command. Try following query:

index=index sourcetype=sourcetype | stats dc(src_ip) as UniqueIPCount by user | where UniqueIPCount > 1

Thanks!!!

View solution in original post

vganjare
Builder

Hi,

You can try using dc command. Try following query:

index=index sourcetype=sourcetype | stats dc(src_ip) as UniqueIPCount by user | where UniqueIPCount > 1

Thanks!!!

domenico_perre
Path Finder

Omg so simple. Thank you 🙂

Get Updates on the Splunk Community!

What the End of Support for Splunk Add-on Builder Means for You

Hello Splunk Community! We want to share an important update regarding the future of the Splunk Add-on Builder ...

Solve, Learn, Repeat: New Puzzle Channel Now Live

Welcome to the Splunk Puzzle PlaygroundIf you are anything like me, you love to solve problems, and what ...

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...