diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2012-01-23 01:23:41 +0100 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2012-01-23 01:27:29 +0100 |
commit | 1e70249a665aa611b3547233952f8f9bb51369f8 (patch) | |
tree | b136340a7f03ed87314ded2113363a302a44ea25 /qa | |
parent | 451dafe6f5e1add75793597ba9bd0e3fddf2d7f9 (diff) | |
download | conntrack-tools-1e70249a665aa611b3547233952f8f9bb51369f8.tar.gz conntrack-tools-1e70249a665aa611b3547233952f8f9bb51369f8.zip |
conntrack: fix setting fixed-timeout status flag
% conntrack -U -u FIXED_TIMEOUT
conntrack v1.0.1 (conntrack-tools): Operation failed: Device or resource busy
With this patch, you can make indeed make it:
% conntrack -U -u FIXED_TIMEOUT
[...]
conntrack v1.0.1 (conntrack-tools): 8 flow entries have been updated.
This patch also adds the corresponding simple QA tests.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'qa')
-rw-r--r-- | qa/testsuite/06update | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/qa/testsuite/06update b/qa/testsuite/06update new file mode 100644 index 0000000..0408303 --- /dev/null +++ b/qa/testsuite/06update @@ -0,0 +1,8 @@ +# create dummy flow +-I -s 1.1.1.1 -d 2.2.2.2 -p tcp --sport 10 --dport 20 --state SYN_RECV -u SEEN_REPLY,ASSURED -t 50 ; OK +# find it again using mark +-L -s 1.1.1.1 -d 2.2.2.2 -p tcp --sport 10 --dport 20 ; OK +# set fixed timeout +-U -s 1.1.1.1 -d 2.2.2.2 -p tcp --sport 10 --dport 20 -u FIXED_TIMEOUT; OK +# delete it +-D -s 1.1.1.1 -d 2.2.2.2 -p tcp --sport 10 --dport 20; OK |