Thx in advance for any help given.
suppress track by_src, ip 10.1.160.245
Hi
There are ups and downs for both suggestions. Suppressions will suppress alerts but still log the traffic.
BPF filters will ignore traffic from the scanners and not log anything.
So depending your ability to "control" your scanners from being compromised, choose the method that suits you best.
/Lysemose
Hi Jeremy
As standard all the different types of tools have their own BPF filters which are linked to the master BPF file.
You can break the symbolic link to make it more granular.
See, https://code.google.com/p/security-onion/wiki/BPF
Regards,
Lysemose
I have looked through the examples of modifying the bpf.conf file but still have a few questions regarding adding entries. It shows how to add a host, but what about a subnet? I want to exclude traffic from all our workstations to a single server. Would the below line be valid? Or bpf.conf doesn't support specifying subnets?
And lastly, want to confirm that after each line in bpf.conf, we have to && ( or do we specify 'or' if trying to match any rules but the last line in the file should not have the &&
!(src host 192.168.x.x/24 && dst host xxx.xxx.xxx.xxx && dst port 80)
Does anyone have a good bpf.conf file sanitized that shows a lot of variations of rules that could post here would be greatly appreciated.
Thx.
!(src host 192.168.x.x/24 && dst host xxx.xxx.xxx.xxx && dst port 80)
--
( not host ( 192.168.a.aa or 192.168.a.bb or 192.168.a.cc or 192.168.a.dd or 192.168.a.ee ) )
so above it's ignoring traffic from 2 of my nas's that are used for storing backups and my backup exec main server (a.aa, a.bb, and a.dd), a gateway to our test subnet (a.cc), and lastly the DVR for our IP cameras (a.ee)
Thanks for the responses. I think I got it now.