aboutsummaryrefslogtreecommitdiffstats
path: root/GPL/traffic_profiles/trex/trex-astf-ethip4udp-4096h-pps.py
diff options
context:
space:
mode:
authorVratko Polak <vrpolak@cisco.com>2021-01-14 16:23:05 +0100
committerVratko Polak <vrpolak@cisco.com>2021-02-03 16:04:44 +0000
commit2ef820ee52ec7176d0923dbb1f675e0576ddf56b (patch)
tree4bae67a945524748306744bf792d87a9b8bbd612 /GPL/traffic_profiles/trex/trex-astf-ethip4udp-4096h-pps.py
parent38b98cea69a149ac5b1be23f0dbad79e7e1cb01c (diff)
UDP_PPS: Ensure keepalive is long enough
Previously, it was long enough for the current performance, but not long enough for the theoretical worst case. See https://gerrit.fd.io/r/c/csit/+/29803/9/docs/report/introduction/methodology_nat44.rst#293 Change-Id: I3f57a834c77d93b38bca81fdbb714a6374b81bae Signed-off-by: Vratko Polak <vrpolak@cisco.com>
Diffstat (limited to 'GPL/traffic_profiles/trex/trex-astf-ethip4udp-4096h-pps.py')
-rw-r--r--GPL/traffic_profiles/trex/trex-astf-ethip4udp-4096h-pps.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/GPL/traffic_profiles/trex/trex-astf-ethip4udp-4096h-pps.py b/GPL/traffic_profiles/trex/trex-astf-ethip4udp-4096h-pps.py
index 018bb7fa2a..00dbeee308 100644
--- a/GPL/traffic_profiles/trex/trex-astf-ethip4udp-4096h-pps.py
+++ b/GPL/traffic_profiles/trex/trex-astf-ethip4udp-4096h-pps.py
@@ -62,8 +62,8 @@ class TrafficProfile(TrafficProfileBaseClass):
self.udp_data = u""
self.n_data = 32 # TODO: set via input parameter
- self.m_delay = 1200000 # delay 1200s (1,200,000 ms)
- self.u_delay = 1000 * self.m_delay # delay 1200s (1,200,000,000 us)
+ self.m_delay = 2000000 # delay 2000s (2,000,000 ms)
+ self.u_delay = 1000 * self.m_delay # delay 2000s (2,000,000,000 us)
self.limit = 258048
def define_profile(self):