aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/network_services/traffic_profile
diff options
context:
space:
mode:
authorRodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>2018-08-30 16:13:07 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-08-30 16:13:07 +0000
commit7373f7063e234714fc14e1c59b1b24d018e632c0 (patch)
treee102c11758fdfea9d756b4daeb08a791357691e3 /yardstick/network_services/traffic_profile
parent4e2e9ebce2eb642480af80cdb63d442dfb81cd04 (diff)
parent5dad388ef2822a6d10b06cf724a3270741c6af2c (diff)
Merge "Add source and destination seed value in IXIA RFC2544"
Diffstat (limited to 'yardstick/network_services/traffic_profile')
-rw-r--r--yardstick/network_services/traffic_profile/ixia_rfc2544.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/yardstick/network_services/traffic_profile/ixia_rfc2544.py b/yardstick/network_services/traffic_profile/ixia_rfc2544.py
index 461604fb8..44bf2eafc 100644
--- a/yardstick/network_services/traffic_profile/ixia_rfc2544.py
+++ b/yardstick/network_services/traffic_profile/ixia_rfc2544.py
@@ -96,7 +96,8 @@ class IXIARFC2544Profile(trex_traffic_profile.TrexProfile):
'count': ip['count'],
'dscp': ip['dscp'],
'ttl': ip['ttl'],
- 'seed': ip.get('seed', 1),
+ 'srcseed': ip.get('srcseed', 1),
+ 'dstseed': ip.get('dstseed', 1),
'srcip': srcip,
'dstip': dstip,
'srcmask': srcmask,