therkong

Results 4 comments of therkong

Hi, traffic must be stopped when you do Traffic Generate. If you want to modified the tx rate while the traffic is flowing, you should modify HighLevelStream (flowGroup) instead of...

Glad that my suggestion worked! As far as documentation, RestPy API Reference guide (https://openixia.github.io/ixnetwork_restpy/#/reference) under the TrafficItem/ConfigElement and HighLevelStreams mentions about the relationship between these two objects, but it is...

you can simply call session.StatViewAssistant('Traffic Item Statistics'). Below is example code snip on getting Loss % and few other counters: trafficItemStatistics = session.StatViewAssistant('Traffic Item Statistics') for rowNumber,trafItemStat in enumerate(trafficItemStatistics.Rows): ixNetwork.info('\n\nSTATS:...

Hi, For VLAN-ID under DHCP Server, the code snip to set VLAN-ID is: from ixnetwork_restpy import SessionAssistant session_assistant = SessionAssistant(IpAddress='127.0.0.1', LogLevel=SessionAssistant.LOGLEVEL_INFO, ClearConfig=True) ixnetwork = session_assistant.Ixnetwork vlanidinfo = ixnetwork \ .Vport.find()...