summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/nft-f/0025empty_dynset_0
blob: 796628a7c69a0faa7a7a04e65312e24b2677b9a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

RULESET="table ip foo {
	        set inflows {
                type ipv4_addr . inet_service . ifname . ipv4_addr . inet_service
                flags dynamic
                elements = { 10.1.0.3 . 39466 . \"veth1\" . 10.3.0.99 . 5201 counter packets 0 bytes 0 }
        }

        set inflows6 {
                type ipv6_addr . inet_service . ifname . ipv6_addr . inet_service
                flags dynamic
        }
}"

$NFT -f - <<< "$RULESET"