2018-07-04 12:15 PM
Hello!
How I can exclude a subnet in a ESA Rule? Example: ip_src IS NOT "10.0.0.0/8", i try this option and substituting the octets with "x,*,%" and not work, can you help me?
2018-07-04 12:27 PM
Try:
ip_src NOT REGEXP “10\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}”
Please put that in notepad first as the quotes in email may be “smart quotes”.
Sent from my iPhone
2018-07-04 12:27 PM
Try:
ip_src NOT REGEXP “10\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}”
Please put that in notepad first as the quotes in email may be “smart quotes”.
Sent from my iPhone
2018-07-04 12:53 PM
Done! Thanks Naushad
2018-07-04 01:26 PM
Or take the additional load off the ESA system that comes with REGEX and use apprule to create meta tag that can be excluded if possible downstream. Not sure what your rule logic is but that will help the pre-process the data and give you more tags to include or exclude on.
2018-07-04 01:31 PM
You can try this instead:
NOT matchLike(ip_src, "10.0.0.%")
There is also a matchRegex helper function both examples shown in link below in Example 7:
https://community.rsa.com/docs/DOC-80032
Sent from my iPhone