################################################################################ # # # Copyright 1997 - 2020 by IXIA Keysight # # All Rights Reserved. # # # ################################################################################ ################################################################################ # # # LEGAL NOTICE: # # ============== # # The following code and documentation (hereinafter "the script") is an # # example script for demonstration purposes only. # # The script is not a standard commercial product offered by Ixia and have # # been developed and is being provided for use only as indicated herein. The # # script [and all modifications, enhancements and updates thereto (whether # # made by Ixia and/or by the user and/or by a third party)] shall at all times # # remain the property of Ixia. # # # # Ixia does not warrant (i) that the functions contained in the script will # # meet the user's requirements or (ii) that the script will be without # # omissions or error-free. # # THE SCRIPT IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, AND IXIA # # DISCLAIMS ALL WARRANTIES, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, # # INCLUDING BUT NOT LIMITED TO ANY WARRANTY OF MERCHANTABILITY AND FITNESS FOR # # A PARTICULAR PURPOSE OR OF NON-INFRINGEMENT. # # THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SCRIPT IS WITH THE # # USER. # # IN NO EVENT SHALL IXIA BE LIABLE FOR ANY DAMAGES RESULTING FROM OR ARISING # # OUT OF THE USE OF, OR THE INABILITY TO USE THE SCRIPT OR ANY PART THEREOF, # # INCLUDING BUT NOT LIMITED TO ANY LOST PROFITS, LOST BUSINESS, LOST OR # # DAMAGED DATA OR SOFTWARE OR ANY INDIRECT, INCIDENTAL, PUNITIVE OR # # CONSEQUENTIAL DAMAGES, EVEN IF IXIA HAS BEEN ADVISED OF THE POSSIBILITY OF # # SUCH DAMAGES IN ADVANCE. # # Ixia will not be required to provide any software maintenance or support # # services of any kind (e.g., any error corrections) in connection with the # # script or any part thereof. The user acknowledges that although Ixia may # # from time to time and in its sole discretion provide maintenance or support # # services for the script, any such services are subject to the warranty and # # damages limitations set forth herein and will not obligate Ixia to provide # # any additional maintenance or support services. # # # ################################################################################ ################################################################################ # # # Description: # # This sample configures 10 IPv4 sessions on each of the two ports # # - Adds a Quick Flow Group # # - Edit some settings for the Quick Flow Group like: frameSize, frameRate # # - Generate Traffic # # - Apply Traffic # # - Start Traffic # # # ################################################################################ namespace eval ::py { set ixTclServer 10.212.111.211 set ixTclPort 8009 set ports {{10.212.111.180 3 1} {10.212.111.180 4 1}} } ################################################################################ # Source the IxNet library ################################################################################ package req IxTclNetwork ################################################################################ # Connect to IxNet client ################################################################################ ixNet connect $::py::ixTclServer -port $::py::ixTclPort -version 7.40 ################################################################################ # Cleaning up IxNetwork ################################################################################ puts "Cleaning up IxNetwork..." ixNet exec newConfig ################################################################################ # Adding ports to configuration ################################################################################ puts "Adding ports to configuration" set root [ixNet getRoot] ixNet add [ixNet getRoot] vport ixNet add [ixNet getRoot] vport ixNet commit set vPorts [ixNet getList [ixNet getRoot] vport] set vport1 [lindex $vPorts 0] set vport2 [lindex $vPorts 1] ################################################################################ # Configuring IPv4 ################################################################################ puts "Add topologies" ixNet add [ixNet getRoot] topology ixNet add [ixNet getRoot] topology ixNet commit set topo1 [lindex [ixNet getList [ixNet getRoot] topology] 0] set topo2 [lindex [ixNet getList [ixNet getRoot] topology] 1] puts "Add ports to topologies" ixNet setA $topo1 -vports $vport1 ixNet setA $topo2 -vports $vport2 ixNet commit puts "Add device groups to topologies" ixNet add $topo1 deviceGroup ixNet add $topo2 deviceGroup ixNet commit set dg1 [ixNet getList $topo1 deviceGroup] set dg2 [ixNet getList $topo2 deviceGroup] puts "Add Ethernet stacks to device groups" ixNet add $dg1 ethernet ixNet add $dg2 ethernet ixNet commit set mac1 [ixNet getList $dg1 ethernet] set mac2 [ixNet getList $dg2 ethernet] puts "Add ipv4 stacks to Ethernets" ixNet add $mac1 ipv4 ixNet add $mac2 ipv4 ixNet commit set ipv4_1 [ixNet getList $mac1 ipv4] set ipv4_2 [ixNet getList $mac2 ipv4] puts "Setting multi values for ipv4 addresses" ixNet setMultiAttribute [ixNet getAttribute $ipv4_1 -address]/counter -start 22.1.1.1 -step 0.0.1.0 ixNet setMultiAttribute [ixNet getAttribute $ipv4_1 -gatewayIp]/counter -start 22.1.1.2 -step 0.0.1.0 ixNet setMultiAttribute [ixNet getAttribute $ipv4_1 -resolveGateway]/singleValue -value true ixNet setMultiAttribute [ixNet getAttribute $ipv4_2 -address]/counter -start 22.1.1.2 -step 0.0.1.0 ixNet setMultiAttribute [ixNet getAttribute $ipv4_2 -gatewayIp]/counter -start 22.1.1.1 -step 0.0.1.0 ixNet setMultiAttribute [ixNet getAttribute $ipv4_2 -resolveGateway]/singleValue -value true ixNet commit ################################################################################ # Assign ports ################################################################################ set vPorts [ixNet getList [ixNet getRoot] vport] puts "Assigning ports to $vPorts" ::ixTclNet::AssignPorts $py::ports {} $vPorts force ################################################################################ # Start All Protocols ################################################################################ puts "Starting All Protocols" ixNet exec startAllProtocols puts "Sleep 30sec for protocols to start" after 30000 ################################################################################ # Create a Basic Quick Flow Group ################################################################################ puts "######################" puts "## Traffic Samples ##" puts "######################" puts "" proc addBasicQuickFlowGroup { srcPort dstPort } { puts "- add quick flow group" set quick_flow_group [ixNet add [ixNet getRoot]/traffic trafficItem] ################################################################################ # Setting the quick flow group attributes ################################################################################ ixNet setMultiAttribute $quick_flow_group \ -name "Quick Flow Groups" \ -trafficItemType quick \ -trafficType raw ixNet commit set quick_flow_group [ixNet remapIds [lindex $quick_flow_group 0]] ################################################################################ # Setting the endpoint set attributes ################################################################################ set endpoint_set [ixNet add $quick_flow_group endpointSet] ixNet setMultiAttribute $endpoint_set \ -destinations $dstPort/protocols \ -sources $srcPort/protocols ixNet commit ################################################################################ # Set the frameSize, frameRate attributes for the first stream in endpoint set 1 ################################################################################ set endpoint_set [ixNet remapIds [lindex $endpoint_set 0]] set highlevelstream1 [lindex [ixNet getList $quick_flow_group highLevelStream] 0] ixNet setAttribute $highlevelstream1/frameSize -fixedSize 120 ixNet setAttribute $highlevelstream1/frameRate -rate 500 ixNet setAttribute $highlevelstream1/frameRate -type framesPerSecond ixNet commit ################################################################################ # setting the Ethernet source and destination mac addresses ################################################################################ foreach stack [ixNet getList $highlevelstream1 stack] { if {[lsearch -regexp -inline $stack "ethernet-"] != ""} { puts $stack foreach field [ixNet getList $stack field] { if {[lsearch -regexp -inline $field "ethernet.header.destinationAddress-"] != ""} { ixNet setAttribute $field -singleValue "33:00:00:00:00:00" } elseif {[lsearch -regexp -inline $field "ethernet.header.sourceAddress-"] != ""} { ixNet setAttribute $field -singleValue "11:00:00:00:00:00" } } } } ixNet commit } ################################################################################ # Add the Quick Flow Group, Generate, Apply and Start the traffic ################################################################################ puts "- Add Quick Flow Group" addBasicQuickFlowGroup $vport1 $vport2 puts "- Generate Traffic" set ti1 [ixNet getList [ixNet getRoot]/traffic trafficItem] ixNet execute generate $ti1 puts "- Apply Traffic" ixNet execute apply [ixNet getRoot]/traffic puts "- Start Traffic" ixNet execute start [ixNet getRoot]/traffic puts "Sleep 30sec then stop traffic" after 30000 puts "- Stop Traffic" ixNet execute stop [ixNet getRoot]/traffic ################################################################################ # Stop All Protocols ################################################################################ puts "Stop All Protocols" ixNet execute stopAllProtocols puts "Sleep 30sec for protocols to stop" after 30000