All Apps and Add-ons

How to write regex for sourceip and des ip?

agnes1015
New Member

how to separate source and destination ips on firewall statement such as below:

date time firewall: access-list network_in permitted udp source/d.d.d.d(p) -> des/d.d.d.d(p) hit-cnt 1 first hit

Tags (2)
0 Karma
1 Solution

musskopf
Builder

You can start like this:

.+source\/(?P<source_ip>(\d{1,3}\.){3}\d{1,3})\((?P<source_port>\d+)\) -> des\/(?P<des_ip>(\d{1,3}\.){3}\d{1,3})\((?P<des_port>\d+)\)

I used some very simple expression to match the IP, feel free to change it... I also identified the port, if you wish to use

View solution in original post

0 Karma

agnes1015
New Member

it works!!! super thanks! 😄

0 Karma

musskopf
Builder

You can start like this:

.+source\/(?P<source_ip>(\d{1,3}\.){3}\d{1,3})\((?P<source_port>\d+)\) -> des\/(?P<des_ip>(\d{1,3}\.){3}\d{1,3})\((?P<des_port>\d+)\)

I used some very simple expression to match the IP, feel free to change it... I also identified the port, if you wish to use

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...