summaryrefslogtreecommitdiff
path: root/smoketest
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-03-16 12:32:44 +0100
committerGitHub <noreply@github.com>2024-03-16 12:32:44 +0100
commit5daebff4a5cc570f22c75e002ded8564b8e22e33 (patch)
treec20d1d171157154d535611c3a281d5df9dbbfa78 /smoketest
parentaea9bfb803c8943d289e939c9ec8185ffcc0985d (diff)
parent3e1e2a3e7b6f5d969819bffda2858a91132d595e (diff)
downloadvyos-1x-5daebff4a5cc570f22c75e002ded8564b8e22e33.tar.gz
vyos-1x-5daebff4a5cc570f22c75e002ded8564b8e22e33.zip
Merge pull request #3112 from Ingramz/add-rtsp-2
conntrack: T4022: add RTSP conntrack helper
Diffstat (limited to 'smoketest')
-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"']
},