Revert "ruleset: dispatch ct states using verdict map"
[project/firewall4.git] / tests / 03_rules / 01_direction
index 4a7ba42a3276b9f1f96335a102ca893dd66767d8..7751a2328839073ad92245f0268e5a0950341b4e 100644 (file)
@@ -71,14 +71,14 @@ table inet fw4 {
 
                iifname "lo" accept comment "!fw4: Accept traffic from loopback"
 
-               ct state vmap { established : accept, related : accept } comment "!fw4: Handle inbound flows"
+               ct state established,related accept comment "!fw4: Allow inbound established and related flows"
                counter comment "!fw4: @rule[1]"
        }
 
        chain forward {
                type filter hook forward priority filter; policy drop;
 
-               ct state vmap { established : accept, related : accept } comment "!fw4: Handle forwarded flows"
+               ct state established,related accept comment "!fw4: Allow forwarded established and related flows"
                counter comment "!fw4: @rule[3]"
        }
 
@@ -87,7 +87,7 @@ table inet fw4 {
 
                oifname "lo" accept comment "!fw4: Accept traffic towards loopback"
 
-               ct state vmap { established : accept, related : accept } comment "!fw4: Handle outbound flows"
+               ct state established,related accept comment "!fw4: Allow outbound established and related flows"
                counter comment "!fw4: @rule[0]"
                counter comment "!fw4: @rule[2]"
        }