summaryrefslogtreecommitdiff
path: root/qa/testsuite/02filter
diff options
context:
space:
mode:
authorAlex Harpin <development@landsofshadow.co.uk>2015-10-02 07:43:42 +0100
committerAlex Harpin <development@landsofshadow.co.uk>2015-10-02 07:43:42 +0100
commitef5ae91676c8ada2a12ea72f889a54452dd94981 (patch)
tree0a962905ab9d0c2322f627928521a10c4cb5e20f /qa/testsuite/02filter
parent9f9a63cecdc6ac4f449d3eacda6c591f0de9fbf3 (diff)
parent8845f3db20c951fcf1db3229a818cfd185f17f2e (diff)
downloadconntrack-tools-upstream.tar.gz
conntrack-tools-upstream.zip
Merge remote-tracking branch 'source/master' into upstreamupstream
Diffstat (limited to 'qa/testsuite/02filter')
-rw-r--r--qa/testsuite/02filter23
1 files changed, 0 insertions, 23 deletions
diff --git a/qa/testsuite/02filter b/qa/testsuite/02filter
deleted file mode 100644
index 204c4e8..0000000
--- a/qa/testsuite/02filter
+++ /dev/null
@@ -1,23 +0,0 @@
-# create dummy
-conntrack -I -s 1.1.1.1 -d 2.2.2.2 -p tcp --sport 10 --dport 20 --state LISTEN -u SEEN_REPLY -t 50 ; OK
-# filter by source
-conntrack -L -s 1.1.1.1 ; OK
-# filter by destination
-conntrack -L -d 2.2.2.2 ; OK
-# filter by protocol
-conntrack -L -p tcp ; OK
-# filter by status
-conntrack -L -u SEEN_REPLY ; OK
-# filter by TCP protocol state
-conntrack -L -p tcp --state LISTEN ; OK
-# update mark of dummy conntrack
-conntrack -U -s 1.1.1.1 -m 1 ; OK
-# filter by mark
-conntrack -L -m 1 ; OK
-# filter by layer 3 protocol
-conntrack -L -f ipv4 ; OK
-# filter by mark
-conntrack -L --mark 0 ; OK
-conntrack -L --mark 0/0xffffffff; OK
-# delete dummy
-conntrack -D -d 2.2.2.2 ; OK