From: Phil Sutter Date: Tue, 5 Nov 2024 16:17:01 +0000 (+0100) Subject: tests: shell: Test ebtables-restore deleting among matches X-Git-Tag: v1.8.11~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=36d87cd8092edc1f256a0505e260cc8d5ccacb33;p=thirdparty%2Fiptables.git tests: shell: Test ebtables-restore deleting among matches Rules containing among match would spuriously fail to compare if there was a previous rule with larger among match payload. Signed-off-by: Phil Sutter --- diff --git a/iptables/tests/shell/testcases/ebtables/0012-restore-delete-among_0 b/iptables/tests/shell/testcases/ebtables/0012-restore-delete-among_0 new file mode 100755 index 00000000..165745e1 --- /dev/null +++ b/iptables/tests/shell/testcases/ebtables/0012-restore-delete-among_0 @@ -0,0 +1,18 @@ +#!/bin/bash -e + +case "$XT_MULTI" in +*xtables-nft-multi) + ;; +*) + echo "skip $XT_MULTI" + exit 0 + ;; +esac + +RULESET='*filter +-A FORWARD --among-dst de:ad:0:be:ee:ff,c0:ff:ee:0:ba:be +-A FORWARD --among-dst de:ad:0:be:ee:ff' + +$XT_MULTI ebtables-restore <<< "$RULESET" +echo "$RULESET" | sed -e 's/-A/-D/' | $XT_MULTI ebtables-restore --noflush +