X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=tests%2F05_ipsets%2F01_declaration;h=88f6171ef679916846335771b302ac106bb97686;hb=22c53921c11115e5437385719b6e73800a68cd33;hp=cebb33739c78af70a0342f013cdb4c7f8e92764a;hpb=785798c8fd72ff3c4c8940922173290bb25bc18e;p=project%2Ffirewall4.git diff --git a/tests/05_ipsets/01_declaration b/tests/05_ipsets/01_declaration index cebb337..88f6171 100644 --- a/tests/05_ipsets/01_declaration +++ b/tests/05_ipsets/01_declaration @@ -88,13 +88,13 @@ 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" } 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" } chain output { @@ -102,7 +102,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" } chain prerouting {