summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/transactions/dumps/table_onoff.nft
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2023-09-15 15:20:05 +0200
committerFlorian Westphal <fw@strlen.de>2023-10-07 20:16:43 +0200
commitbcca2d67656f9bd1ef4159268cb49dbdcf2d811a (patch)
tree7ac389be74818b544e15d3bf01b43830231bb9e6 /tests/shell/testcases/transactions/dumps/table_onoff.nft
parent2e86f45d0260a0dab8fed974853d84d9923bbc55 (diff)
tests: add test for dormant on/off/on bug
Disallow enabling/disabling a table in a single transaction. Make sure we still allow one update, either to dormant, or from active to dormant. Reported-by: "Lee, Cherie-Anne" <cherie.lee@starlabs.sg> Cc: Bing-Jhong Billy Jheng <billy@starlabs.sg> Cc: info@starlabs.sg Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'tests/shell/testcases/transactions/dumps/table_onoff.nft')
-rw-r--r--tests/shell/testcases/transactions/dumps/table_onoff.nft8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/shell/testcases/transactions/dumps/table_onoff.nft b/tests/shell/testcases/transactions/dumps/table_onoff.nft
new file mode 100644
index 00000000..038be1c0
--- /dev/null
+++ b/tests/shell/testcases/transactions/dumps/table_onoff.nft
@@ -0,0 +1,8 @@
+table ip t {
+ flags dormant
+
+ chain c {
+ type filter hook input priority filter; policy accept;
+ ip daddr 127.0.0.42 counter packets 0 bytes 0
+ }
+}