diff options
Diffstat (limited to 'tests/shell/testcases/nft-f/dumps/0022variables_0.nft')
-rw-r--r-- | tests/shell/testcases/nft-f/dumps/0022variables_0.nft | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/shell/testcases/nft-f/dumps/0022variables_0.nft b/tests/shell/testcases/nft-f/dumps/0022variables_0.nft new file mode 100644 index 0000000..d30f4d5 --- /dev/null +++ b/tests/shell/testcases/nft-f/dumps/0022variables_0.nft @@ -0,0 +1,14 @@ +table ip x { + set y { + type ipv4_addr + size 65535 + flags dynamic,timeout + } + + chain z { + type filter hook input priority filter; policy accept; + add @y { ip saddr } + update @y { ip saddr timeout 30s } + ip saddr @y + } +} |