I have hit a brick wall with this. What I am trying to do is create a filter to match any SNMP messages that contain an IP address int the trap details.
I have tried it in various different formats which seem to work using online regex testers but when I put them into the Trap viewer they don't work.
I have tried things like:
\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b
\b[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\b
(\d+)\.(\d+)\.(\d+)\.(\d+)
Ultimately I want to be able to match All IP addresses but then exclude specific IP ranges which I am not concerned with.
Any help would be appreciated.