Skip to content

Commit

Permalink
tests: adjust zone log limit testcases
Browse files Browse the repository at this point in the history
Fix testcase failure introduced by a previous commit.

Fixes: a5553da ("ruleset: reduce ksoftirqd load by refering to looopback by numeric id")
Signed-off-by: Jo-Philipp Wich <[email protected]>
  • Loading branch information
jow- committed Nov 3, 2023
1 parent a5553da commit de3483c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/02_zones/08_log_limit
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ table inet fw4 {
chain input {
type filter hook input priority filter; policy drop;

iifname "lo" accept comment "!fw4: Accept traffic from loopback"
iif "lo" accept comment "!fw4: Accept traffic from loopback"

ct state vmap { established : accept, related : accept } comment "!fw4: Handle inbound flows"
tcp dport 1007 counter log prefix "@rule[6]: " comment "!fw4: @rule[6]"
Expand Down Expand Up @@ -267,7 +267,7 @@ table inet fw4 {
chain output {
type filter hook output priority filter; policy drop;

oifname "lo" accept comment "!fw4: Accept traffic towards loopback"
oif "lo" accept comment "!fw4: Accept traffic towards loopback"

ct state vmap { established : accept, related : accept } comment "!fw4: Handle outbound flows"
oifname "br-lan" jump output_lan comment "!fw4: Handle lan IPv4/IPv6 output traffic"
Expand Down

0 comments on commit de3483c

Please sign in to comment.