summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/nft-f/0017ct_timeout_obj_0
blob: 1d03dbfc838e41767f80cfe0655c27a7f95fcf64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

EXPECTED='table ip filter {
	ct timeout cttime{
		protocol tcp;
		l3proto ip
		policy = {established: 123, close: 12}
	}

	chain c {
		ct timeout set "cttime"
	}
}'

set -e
$NFT -f - <<< $EXPECTED