summaryrefslogtreecommitdiff
path: root/smoketest/scripts/cli/test_system_conntrack.py
diff options
context:
space:
mode:
authorIndrek Ardel <indrek@ardel.eu>2024-03-10 04:00:32 +0200
committerIndrek Ardel <indrek@ardel.eu>2024-03-12 17:19:17 +0200
commit3e1e2a3e7b6f5d969819bffda2858a91132d595e (patch)
treeec2ae87fa057f63b536b8172855f20b844453190 /smoketest/scripts/cli/test_system_conntrack.py
parent46cdd46215844ff99fa50462367d6040d8af10d3 (diff)
downloadvyos-1x-3e1e2a3e7b6f5d969819bffda2858a91132d595e.tar.gz
vyos-1x-3e1e2a3e7b6f5d969819bffda2858a91132d595e.zip
conntrack: T4022: add RTSP conntrack helper
Diffstat (limited to 'smoketest/scripts/cli/test_system_conntrack.py')
-rwxr-xr-xsmoketest/scripts/cli/test_system_conntrack.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/test_system_conntrack.py b/smoketest/scripts/cli/test_system_conntrack.py
index f00626b3d..2d76da145 100755
--- a/smoketest/scripts/cli/test_system_conntrack.py
+++ b/smoketest/scripts/cli/test_system_conntrack.py
@@ -174,12 +174,16 @@ class TestSystemConntrack(VyOSUnitTestSHIM.TestCase):
'pptp': {
'driver': ['nf_nat_pptp', 'nf_conntrack_pptp'],
'nftables': ['ct helper set "pptp_tcp"']
- },
+ },
+ 'rtsp': {
+ 'driver': ['nf_nat_rtsp', 'nf_conntrack_rtsp'],
+ 'nftables': ['ct helper set "rtsp_tcp"']
+ },
'sip': {
'driver': ['nf_nat_sip', 'nf_conntrack_sip'],
'nftables': ['ct helper set "sip_tcp"',
'ct helper set "sip_udp"']
- },
+ },
'sqlnet': {
'nftables': ['ct helper set "tns_tcp"']
},