Splunk Search

Search using lookup

splunkcol
Builder

Hello, I have two indexes to which I need to compare the source ip and if it is the same, show me a message like true or false.

This is what I did, but I know that the lookup is needed and I don't know how to use it well, could you give me a hand?

index=firewall
|eval Type_Cnx = if(dst_port="1446" OR dst_port="1444", "B2B", "B2C")
|stats count by Type_Cnx src
| fields Type_Cnx src
| appendcols
[ search index=linux UserIp description="my message*"]
|eval a= if(src==UserIp, "true", "false")

Labels (3)
0 Karma

splunkcol
Builder

@MuS could you help me?

0 Karma

MuS
Legend

Sorry but no! This post is missing all basic details, informations just to be able to actually recapture what problem you might have encountered. Without further details, informations this can not be solved.

Please provide more details like real world events for both indexes and and what you want to achieve.

MuS

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Given that appendcols merges the results from the first search with the results from the second search and that neither search in your example use any specific sort, it seems that it may well be random as to whether src equals UserIp.

Perhaps you should be using append to get the results from the second search, then using a stats command to join the two sets of results (you would have to rename or copy either src or UserIp (or both) to a field to "join" them by. Or use an outer join on the two searches.

You can then evaluate whether the ip was present in both searches (as src in one and UserIp in the other).

0 Karma

splunkcol
Builder

How would the code that you suggest me be?

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...