Skip to content

Commit

Permalink
defaults: Add expected drop reasons
Browse files Browse the repository at this point in the history
We currently have many packet drops that are more or less expected. Some
like "Authentication required" are expected for specific features and
others like "Stale or unroutable IP" are known and understood even
though we'd prefer to avoid them.

Signed-off-by: Paul Chaignon <[email protected]>
  • Loading branch information
pchaigno committed Dec 8, 2023
1 parent ca0fa23 commit ef13f45
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions defaults/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,5 +194,13 @@ var (
ExpectedDropReasons = []string{
"Policy denied",
"Policy denied by denylist",
"Unsupported L3 protocol",
"Stale or unroutable IP",
"Authentication required",
"Service backend not found",
"Unsupported protocol for NAT masquerade",
"Invalid source ip",
"Unknown L3 target address",
"No tunnel/encapsulation endpoint (datapath BUG!)",
}
)

0 comments on commit ef13f45

Please sign in to comment.