Skip to content

Release v0.0.1-4124

Compare
Choose a tag to compare
@biplamal biplamal released this 16 Jun 06:30
· 329 commits to main since this release
f375fef

About

This build includes new features.

Build Details

Component Version
Open Traffic Generator API 0.11.9
snappi 0.11.15
gosnappi 0.11.15
ixia-c-controller 0.0.1-4124
ixia-c-traffic-engine 1.6.0.35
ixia-c-app-usage-reporter 0.0.1-37
ixia-c-protocol-engine 1.00.0.310
ixia-c-ixhw-server 0.11.9-6
ixia-c-operator 0.3.1
ixia-c-gnmi-server 1.11.14
ixia-c-one 0.0.1-4124

Release Features(s)

  • Support added for weighted pairs for packet size distribution in traffic flows.
    • predefined packet size distributions supported are imix, ipsec_imix, ipv6_imix, standard_imix, tcp_imix. It can be configured as follows:
        myFlow.Size().WeightPairs().SetPredefined(gosnappi.FlowSizeWeightPairsPredefined.IMIX)
    • Custom packet size distribution is also supported. It can configured as follows,
        customWeightPairs := myFlow.Size().WeightPairs().Custom()
        customWeightPairs.Add().SetSize(64).SetWeight(7)
        customWeightPairs.Add().SetSize(570).SetWeight(4)
        customWeightPairs.Add().SetSize(1518).SetWeight(1)
  • Support is added for egress tracking based on IPv4 total length.

Known Issues

  • Supported value for flows[i].metrics.latency.mode is cut_through.
  • The metric loss in flow metrics is currently not supported.
  • When flow transmit is started, transmission will be restarted on any existing flows already transmitting packets.
  • #118