diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-09-15 08:41:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-15 08:41:31 +0200 |
commit | 9562dd1081adc934d27d01e8fd5c8311934a6563 (patch) | |
tree | 32c75b1fe422c7c0682bf8b004505006a40c4b18 /smoketest/scripts | |
parent | 3ed4341db4b30df7b06b8ef393c3afa2e5422aff (diff) | |
download | vyos-1x-9562dd1081adc934d27d01e8fd5c8311934a6563.tar.gz vyos-1x-9562dd1081adc934d27d01e8fd5c8311934a6563.zip |
smoketest: conntrack: T4691: lower test value for nf_conntrack_tcp_max_retrans
The old value of 1024 is no longer supported by the most recent Kernel
Diffstat (limited to 'smoketest/scripts')
-rwxr-xr-x | smoketest/scripts/cli/test_system_conntrack.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_system_conntrack.py b/smoketest/scripts/cli/test_system_conntrack.py index 95c2a6c55..fd16146b1 100755 --- a/smoketest/scripts/cli/test_system_conntrack.py +++ b/smoketest/scripts/cli/test_system_conntrack.py @@ -59,7 +59,7 @@ class TestSystemConntrack(VyOSUnitTestSHIM.TestCase): }, 'net.netfilter.nf_conntrack_tcp_max_retrans' :{ 'cli' : ['tcp', 'max-retrans'], - 'test_value' : '1024', + 'test_value' : '128', 'default_value' : '3', }, 'net.netfilter.nf_conntrack_icmp_timeout' :{ |