mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 14:08:20 +00:00

- Removed the ProtocolViolation notice. I'd like to hear if someone actually used that notice for something. - Folded the dyn-disable functionality into the dpd/base script. - Other small cleanup.
15 lines
No EOL
436 B
Text
15 lines
No EOL
436 B
Text
##! This strives to tune out high volume and less useful data
|
|
##! from the notice log.
|
|
|
|
@load notice
|
|
|
|
# Load the policy scripts where the notices are defined.
|
|
@load frameworks/notice/weird
|
|
|
|
# Remove these notices from logging since they can be too noisy.
|
|
redef Notice::ignored_types += {
|
|
Weird::ContentGap,
|
|
Weird::AckAboveHole,
|
|
Weird::RetransmissionInconsistency,
|
|
Weird::WeirdActivity, # Only allow these to go in the weird log.
|
|
}; |