Splunk Search

How can i get ip address from postfix logs

saito0910
Engager

Hi,

How can i get ip address from like under log??

---
Sep 13 23:55:42 mailhost1 postfix/smtpd[15824]: [ID 197553 mail.info] connect from example.com[1.1.1.1]
---

I use search command "host=mailhost1 | top limit=100 client ",
and result is "example.com[1.1.1.1]".(source type is postfix_syslog)

I need only ip address to use geoip.

thanks

Tags (2)
0 Karma
1 Solution

MuS
Legend

Hi saito0910,

try something like this:

host=mailhost1 | rex field=client "(?<myIP>(\d+\.){3}\d+)]$" | top limit=100 myIP

this will get the IP form the client field and returns it as new field myIP

hope this helps ...

cheers, MuS

View solution in original post

MuS
Legend

Hi saito0910,

try something like this:

host=mailhost1 | rex field=client "(?<myIP>(\d+\.){3}\d+)]$" | top limit=100 myIP

this will get the IP form the client field and returns it as new field myIP

hope this helps ...

cheers, MuS

saito0910
Engager

Thanks MuS! That worked well! 🙂

0 Karma
Get Updates on the Splunk Community!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

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 ...