summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/nft-f/dumps/0017ct_timeout_obj_0.nft
blob: c5d9649e40381913315adc0cab274ee5400f5e90 (plain)
1
2
3
4
5
6
7
8
9
10
11
table ip filter {
	ct timeout cttime {
		protocol tcp
		l3proto ip
		policy = { established : 2m3s, close : 12s }
	}

	chain c {
		ct timeout set "cttime"
	}
}