Splunk Search

find logs for IP Address

hyahmadi
Explorer

hello,
I want to search proxy logs for 2 different area of ip address ?
(like from x.x.x.x to y.y.y.y and from x1.x2.x3.x4 to y1.y2.y3.y4)
Any help is appreciated
thanks

Tags (1)
0 Karma
1 Solution

pmdba
Builder

I would use the cidrmatch function, assuming an index of "proxy" and an IP address field of "ip_address":

index=proxy | eval isRange1=if(cidrmatch("x.x.x.x/a",ip_address),"true","false") eval isRange2=if(cidrmatch("x1.x2.x3.x4/b",ip_address),"true","false") | search (isRange1=true OR isRange2=true)

Where "a" and "b" and the appropriate CIDR masks (use a network calculator to generate them accurately) to limit your IP ranges, like so:

index=proxy | eval isRange1=if(cidrmatch("192.168.1.0/24",ip_address),"true","false") eval isRange2=if(cidrmatch("172.16.0.0/16",ip_address),"true","false") | search (isRange1=true OR isRange2=true)

View solution in original post

pmdba
Builder

I would use the cidrmatch function, assuming an index of "proxy" and an IP address field of "ip_address":

index=proxy | eval isRange1=if(cidrmatch("x.x.x.x/a",ip_address),"true","false") eval isRange2=if(cidrmatch("x1.x2.x3.x4/b",ip_address),"true","false") | search (isRange1=true OR isRange2=true)

Where "a" and "b" and the appropriate CIDR masks (use a network calculator to generate them accurately) to limit your IP ranges, like so:

index=proxy | eval isRange1=if(cidrmatch("192.168.1.0/24",ip_address),"true","false") eval isRange2=if(cidrmatch("172.16.0.0/16",ip_address),"true","false") | search (isRange1=true OR isRange2=true)

alterdego
Path Finder

The way you have posed the question implies that you are looking for two sets of contiguous IP space.
If true you can use an ORed CIDR notation for your search.
Example: field=10.0.0.0/8 OR field=172.16.0.0/12

Or did I misunderstand the questions?

hyahmadi
Explorer

clarification
I have to extract proxy logs with the following fields(UrlDestHost,ClientIP,Protocol,rules...)
for our partner users in France and Germany.

0 Karma
Get Updates on the Splunk Community!

Detecting Brute Force Account Takeover Fraud with Splunk

This article is the second in a three-part series exploring advanced fraud detection techniques using Splunk. ...

Buttercup Games: Further Dashboarding Techniques (Part 9)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...

Buttercup Games: Further Dashboarding Techniques (Part 8)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...