Reported-by: Laura Garcia <[email protected]>
Signed-off-by: Pablo Neira Ayuso <[email protected]>
---
tests/shell/testcases/transactions/0048helpers_0 | 15 +++++++++++++++
1 file changed, 15 insertions(+)
create mode 100755 tests/shell/testcases/transactions/0048helpers_0
diff --git a/tests/shell/testcases/transactions/0048helpers_0
b/tests/shell/testcases/transactions/0048helpers_0
new file mode 100755
index 000000000000..675a977ef4a1
--- /dev/null
+++ b/tests/shell/testcases/transactions/0048helpers_0
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+RULESET='add table ip filter
+add chain ip filter filter { type filter hook prerouting priority mangle;
policy accept; }
+add ct helper ip filter ftp { type "ftp" protocol tcp; };
+add rule ip filter filter tcp dport 33 ct helper set "ftp"'
+
+set -e
+$NFT -f - <<< "$RULESET"
+
+RULESET='flush chain ip filter filter
+delete chain filter filter
+delete ct helper ip filter ftp'
+
+$NFT -f - <<< "$RULESET"
--
2.11.0