diff options
Diffstat (limited to 'samples/vnf_samples/traffic_profiles/ipv4_throughput-scale-up.yaml')
-rw-r--r-- | samples/vnf_samples/traffic_profiles/ipv4_throughput-scale-up.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/vnf_samples/traffic_profiles/ipv4_throughput-scale-up.yaml b/samples/vnf_samples/traffic_profiles/ipv4_throughput-scale-up.yaml index fbfbbeb26..d0be9f4c0 100644 --- a/samples/vnf_samples/traffic_profiles/ipv4_throughput-scale-up.yaml +++ b/samples/vnf_samples/traffic_profiles/ipv4_throughput-scale-up.yaml @@ -33,7 +33,7 @@ # the profile defines a public and private side to make limited traffic correlation # between private and public side same way as it is made by IXIA solution. # -{% set vports = get(extra_args, 'vports', 2)|int / 2 %} +{% set vports = get(extra_args, 'vports', 2) %} --- schema: "nsb:traffic_profile:0.1" @@ -46,7 +46,7 @@ traffic_profile: frame_rate: 100 # pc of linerate duration: {{ duration }} -{% for vport in range(vports|int) %} +{% for vport in range((vports / 2)|int) %} uplink_{{vport}}: ipv4: id: {{ (vport * 2) + 1 }} |