summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/nft-f/0017ct_timeout_obj_0
blob: 448a8207bac7dbc27e4d0c4f2d62f9af3388f61c (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