# -*- coding: cp1252 -*- ################################################################################ # # # 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 users 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 : # # 1. This scripts shows how we should configure PCInitiated RSVP-TE LSPs PCE.# # RSVP-TE and PCC will be running on same device and When PCE starts, PCE # # sends PCInitiate with these LSPs with PCE. # # PCReport from PCE side is sent for those matching PCInitiate. # # 2. Assign ports. # # 3. Start all protocols. # # 4. Retrieve PCE Sessions Per Port statistics. # # 5. Retrieve PCC Per port statistics. # # 6. Send PCUpdate over PCInitiated RSVP LSPs. # # 7. Retrieve protocol statistics. (PCE Sessions Per Port) # # 8. Retrieve protocol statistics. (PCC Per Port) # # 9. Stop all protocols. # ################################################################################ import time import sys #------------------------------------------------------------------------------- # import IxNetwork #------------------------------------------------------------------------------- IX_NETWORK_LIBRARY_PATH = 'C:/Program Files (x86)/Ixia/IxNetwork/8.30-EA/API/Python' sys.path.append(IX_NETWORK_LIBRARY_PATH) import IxNetwork # START HARNESS VARS ********************************************************** if 'py' not in dir(): class Py: pass py = Py() py.ports = (('10.216.108.96','2','1'),('10.216.108.96','2','2')) py.ixTclServer = "10.216.108.113" py.ixTclPort = 8081 # END HARNESS VARS ************************************************************ ################################################################################ # Connect to IxNet client ################################################################################ ixNet = IxNetwork.IxNet() ixNet.connect(py.ixTclServer, '-port', py.ixTclPort, '-version', '8.30') ################################################################################ # Cleaning up IxNetwork ################################################################################ print ("Cleaning up IxNetwork...") ixNet.execute('newConfig') print("Get IxNetwork root object") root = ixNet.getRoot() ################################################################################ # Adding virtual ports ################################################################################ print("Adding virtual port 1") vport1 = ixNet.add(root, 'vport') ixNet.commit() vport1 = ixNet.remapIds(vport1)[0] ixNet.setAttribute(vport1, '-name', '10GE LAN - 001') ixNet.commit() print("Adding virtual port 2") vport2 = ixNet.add(root, 'vport') ixNet.commit() vport2 = ixNet.remapIds(vport2)[0] ixNet.setAttribute(vport2, '-name', '10GE LAN - 002') ixNet.commit() ################################################################################ # Adding topology ################################################################################ print("Adding topology 1") topology1 = ixNet.add(root, 'topology') ixNet.commit() topology1 = ixNet.remapIds(topology1)[0] ixNet.setAttribute(topology1, '-name', 'Topology 1') ixNet.setAttribute(topology1, '-vports', vport1) ixNet.commit() ################################################################################ # Adding device group ################################################################################ print("Adding device group 1") device1 = ixNet.add(topology1, 'deviceGroup') ixNet.commit() device1 = ixNet.remapIds(device1)[0] ixNet.setAttribute(device1, '-name', 'Device Group 1') ixNet.setAttribute(device1, '-multiplier', '1') ixNet.commit() ################################################################################ # Adding ethernet layer ################################################################################ print("Adding ethernet 1") ethernet1 = ixNet.add(device1, 'ethernet') ixNet.commit() ethernet1 = ixNet.remapIds(ethernet1)[0] macMv = ixNet.getAttribute(ethernet1, '-mac') ixNet.add(macMv, 'counter') ixNet.setMultiAttribute(macMv + '/counter', '-direction', 'increment', '-start' , '00:11:01:00:00:01', '-step' , '00:00:00:00:00:01') ixNet.commit() ################################################################################ # Adding IPv4 layer ################################################################################ print("Adding ipv4 1") ipv4Addr1 = ixNet.add(ethernet1, 'ipv4') ixNet.commit() ipv4Addr1 = ixNet.remapIds(ipv4Addr1)[0] addressMv = ixNet.getAttribute(ipv4Addr1, '-address') ixNet.add(addressMv, 'singleValue') ixNet.setMultiAttribute(addressMv + '/singleValue', '-value', '1.1.1.1') ixNet.commit() gatewayIpMv = ixNet.getAttribute(ipv4Addr1, '-gatewayIp') ixNet.add(gatewayIpMv, 'singleValue') ixNet.setMultiAttribute(gatewayIpMv + '/singleValue', '-value', '1.1.1.2') ixNet.commit() ################################################################################ # Adding PCE layer ################################################################################ print("Adding PCE 1") pce1 = ixNet.add(ipv4Addr1, 'pce') ixNet.commit() pce1 = ixNet.remapIds(pce1)[0] ################################################################################ # Adding PCC Group # Configured parameters : # -pccIpv4Address # -multiplier # -pceInitiatedLspsPerPcc # -pcReplyLspsPerPcc ################################################################################ print("Adding PCC Group1") pccGroup1 = ixNet.add(pce1, 'pccGroup') ixNet.commit() pccGroup1 = ixNet.remapIds(pccGroup1)[0] pccIpv4AddressMv = ixNet.getAttribute(pccGroup1, '-pccIpv4Address') ixNet.add(pccIpv4AddressMv, 'singleValue') ixNet.setMultiAttribute(pccIpv4AddressMv + '/singleValue', '-value', '1.1.1.2') ixNet.commit() ixNet.setAttribute(pccGroup1, '-multiplier', '1') ixNet.commit() ixNet.setAttribute(pccGroup1, '-pceInitiatedLspsPerPcc', '1') ixNet.commit() ixNet.setAttribute(pccGroup1, '-pcReplyLspsPerPcc', '0') ixNet.commit() ################################################################################ # Adding PCInitiate LSP Parameter # Configured parameters : # -pathSetupType # -srcEndPointIpv4 # -destEndPointIpv4 # -symbolicPathName ################################################################################ pceInitiateLSPParameters1 = pccGroup1 + '/pceInitiateLSPParameters:1' pathSetupTypeMv = ixNet.getAttribute(pceInitiateLSPParameters1, '-pathSetupType') ixNet.add(pathSetupTypeMv, 'singleValue') ixNet.setMultiAttribute(pathSetupTypeMv + '/singleValue', '-value', 'rsvpte') ixNet.commit() sourceIpv4AddressMv = ixNet.getAttribute(pceInitiateLSPParameters1, '-srcEndPointIpv4') ixNet.add(sourceIpv4AddressMv, 'counter') ixNet.setMultiAttribute(sourceIpv4AddressMv + '/counter', '-direction', 'increment', '-start', '1.1.1.2') ixNet.commit() destinationIpv4AddressMv = ixNet.getAttribute(pceInitiateLSPParameters1, '-destEndPointIpv4') ixNet.add(destinationIpv4AddressMv, 'counter') ixNet.setMultiAttribute(destinationIpv4AddressMv + '/counter', '-direction', 'increment', '-start', '1.1.1.1') ixNet.commit() symbolicPathNameMv = ixNet.getAttribute(pceInitiateLSPParameters1, '-symbolicPathName') ixNet.add(symbolicPathNameMv, 'singleValue') ixNet.setMultiAttribute(symbolicPathNameMv + '/singleValue', '-value', 'PCE Initiated RSVP-TE LSP 1') ixNet.commit() ################################################################################ # Adding RSVP layer # Configured parameters : # -dutIp ################################################################################ print("Adding rsvp 1") rsvpIf1 = ixNet.add(ipv4Addr1, 'rsvpteIf') ixNet.commit() rsvpIf1 = ixNet.remapIds(rsvpIf1)[0] dutIpMv = ixNet.getAttribute(rsvpIf1, '-dutIp') ixNet.add(dutIpMv, 'singleValue') ixNet.setMultiAttribute(dutIpMv + '/singleValue', '-value', '1.1.1.2') ################################################################################ # Adding RSVP LSP # Configured parameters : # -ingressP2PLsps ################################################################################ print("Adding rsvp 1") rsvpteLsps1 = ixNet.add(ipv4Addr1, 'rsvpteLsps') ixNet.commit() rsvpteLsps1 = ixNet.remapIds(rsvpteLsps1)[0] ixNet.setAttribute(rsvpteLsps1, '-ingressP2PLsps', '0') ################################################################################ # Adding topology ################################################################################ print("Adding topology 2") topology2 = ixNet.add(root, 'topology') ixNet.commit() topology2 = ixNet.remapIds(topology2)[0] ixNet.setAttribute(topology2, '-name', 'Topology 2') ixNet.setAttribute(topology2, '-vports', vport2) ixNet.commit() ################################################################################ # Adding device group ################################################################################ print("Adding device group 2") device2 = ixNet.add(topology2, 'deviceGroup') ixNet.commit() device2 = ixNet.remapIds(device2)[0] ixNet.setAttribute(device2, '-name', 'Device Group 2') ixNet.setAttribute(device2, '-multiplier', '1') ixNet.commit() ################################################################################ # Adding ethernet layer ################################################################################ print("Adding ethernet 2") ethernet2 = ixNet.add(device2, 'ethernet') ixNet.commit() ethernet2 = ixNet.remapIds(ethernet2)[0] macMv = ixNet.getAttribute(ethernet2, '-mac') ixNet.add(macMv, 'counter') ixNet.setMultiAttribute(macMv + '/counter', '-direction', 'increment', '-start' , '00:12:01:00:00:01', '-step' , '00:00:00:00:00:01') ixNet.commit() ################################################################################ # Adding IPv4 layer ################################################################################ print("Adding ipv4 2") ipv4Addr2 = ixNet.add(ethernet2, 'ipv4') ixNet.commit() ipv4Addr2 = ixNet.remapIds(ipv4Addr2)[0] addressMv = ixNet.getAttribute(ipv4Addr2, '-address') ixNet.add(addressMv, 'singleValue') ixNet.setMultiAttribute(addressMv + '/singleValue', '-value', '1.1.1.2') ixNet.commit() gatewayIpMv = ixNet.getAttribute(ipv4Addr2, '-gatewayIp') ixNet.add(gatewayIpMv, 'singleValue') ixNet.setMultiAttribute(gatewayIpMv + '/singleValue', '-value', '1.1.1.1') ixNet.commit() ################################################################################ # Adding PCC layer # Configured parameters : # -pceIpv4Address # -expectedInitiatedLspsForTraffic # -preEstablishedSrLspsPerPcc # -requestedLspsPerPcc ################################################################################ print("Adding PCC 2") pcc2 = ixNet.add(ipv4Addr2, 'pcc') ixNet.commit() pcc2 = ixNet.remapIds(pcc2)[0] pceIpv4AddressMv = ixNet.getAttribute(pcc2, '-pceIpv4Address') ixNet.add(pceIpv4AddressMv, 'singleValue') ixNet.setMultiAttribute(pceIpv4AddressMv + '/singleValue', '-value', '1.1.1.1') ixNet.commit() ixNet.setAttribute(pcc2, '-expectedInitiatedLspsForTraffic', '0') ixNet.commit() ixNet.setAttribute(pcc2, '-preEstablishedSrLspsPerPcc', '0') ixNet.commit() ixNet.setAttribute(pcc2, '-requestedLspsPerPcc', '0') ixNet.commit() ################################################################################ # Adding RSVP layer # Configured parameters : # -dutIp ################################################################################ print("Adding rsvp 2") rsvpIf2 = ixNet.add(ipv4Addr2, 'rsvpteIf') ixNet.commit() rsvpIf2 = ixNet.remapIds(rsvpIf2)[0] dutIpMv = ixNet.getAttribute(rsvpIf2, '-dutIp') ixNet.add(dutIpMv, 'singleValue') ixNet.setMultiAttribute(dutIpMv + '/singleValue', '-value', '1.1.1.1') ################################################################################ # Adding RSVP LSP # Configured parameters : # -ingressP2PLsps # -enableP2PEgress # -expectedPceInitiatedLspsCount ################################################################################ print("Adding rsvp 2") rsvpteLsps2 = ixNet.add(ipv4Addr2, 'rsvpteLsps') ixNet.commit() rsvpteLsps2 = ixNet.remapIds(rsvpteLsps2)[0] ixNet.setAttribute(rsvpteLsps2, '-ingressP2PLsps', '0') ixNet.commit() ixNet.setAttribute(rsvpteLsps2, '-enableP2PEgress', 'False') ixNet.commit() ixNet.setAttribute(rsvpteLsps2, '-expectedPceInitiatedLspsCount', '1') ixNet.commit() ################################################################################ # 2. Assign ports ################################################################################ print("Assigning ports") chassisIp = py.ports[0][0] card1 = py.ports[0][1] port1 = py.ports[0][2] card2 = py.ports[1][1] port2 = py.ports[1][2] chassis = ixNet.add(root + '/availableHardware', 'chassis') ixNet.setMultiAttribute(chassis, '-hostname', chassisIp) ixNet.commit() ixNet.setAttribute(vport1, '-connectedTo', '%s/card:%s/port:%s' % (chassis, card1, port1)) ixNet.commit() ixNet.setAttribute(vport2, '-connectedTo', '%s/card:%s/port:%s' % (chassis, card2, port2)) ixNet.commit() time.sleep(5) ################################################################################ # 3. Start all protocols ################################################################################ print("Starting all protocols") ixNet.execute('startAllProtocols') print("Wait for 1 minute") time.sleep(60) ################################################################################ # 4. Retrieve protocol statistics (PCE Sessions Per Port) # ################################################################################ print ("Fetching all Protocol Summary Stats\n") viewPage = '::ixNet::OBJ-/statistics/view:"PCE Sessions Per Port"/page' statcap = ixNet.getAttribute(viewPage, '-columnCaptions') for statValList in ixNet.getAttribute(viewPage, '-rowValues') : for statVal in statValList : print("***************************************************") index = 0 for satIndv in statVal : print("%-40s:%s" % (statcap[index], satIndv)) index = index + 1 # end for # end for # end for print("***************************************************") ################################################################################ # 5. Retrieve protocol statistics (PCC Per Port) # ################################################################################ print ("Fetching all Protocol Summary Stats\n") viewPage = '::ixNet::OBJ-/statistics/view:"PCC Per Port"/page' statcap = ixNet.getAttribute(viewPage, '-columnCaptions') for statValList in ixNet.getAttribute(viewPage, '-rowValues') : for statVal in statValList : print("***************************************************") index = 0 for satIndv in statVal : print("%-40s:%s" % (statcap[index], satIndv)) index = index + 1 # end for # end for # end for print("***************************************************") ################################################################################ # 6. Trigger PCUpdate from PCE side PCInitiate LSPs # ################################################################################ includeBandwidth = ixNet.getAttribute(pceInitiateLSPParameters1, '-includeBandwidth') ixNet.add(includeBandwidth, 'singleValue') ixNet.setMultiAttribute(includeBandwidth + '/singleValue', '-value', 'true') ixNet.commit() globals = root+'/globals' topology = globals+'/topology' print("Applying OTF for sending PCUpd message....") ixNet.execute('applyOnTheFly', topology) print("***************************************************") print("Wait for 30 Seconds") time.sleep(30) print("Checking statistics after PCUpdate") ################################################################################ # 7. Retrieve protocol statistics (PCE Sessions Per Port) # ################################################################################ print ("Fetching all PCE Sessions Per Port Stats\n") viewPage = '::ixNet::OBJ-/statistics/view:"PCE Sessions Per Port"/page' statcap = ixNet.getAttribute(viewPage, '-columnCaptions') for statValList in ixNet.getAttribute(viewPage, '-rowValues') : for statVal in statValList : print("***************************************************") index = 0 for satIndv in statVal : print("%-40s:%s" % (statcap[index], satIndv)) index = index + 1 # end for # end for # end for print("***************************************************") ################################################################################ # 8. Retrieve protocol statistics (PCC Per Port) # ################################################################################ print ("Fetching all PCC Per Port Stats\n") viewPage = '::ixNet::OBJ-/statistics/view:"PCC Per Port"/page' statcap = ixNet.getAttribute(viewPage, '-columnCaptions') for statValList in ixNet.getAttribute(viewPage, '-rowValues') : for statVal in statValList : print("***************************************************") index = 0 for satIndv in statVal : print("%-40s:%s" % (statcap[index], satIndv)) index = index + 1 # end for # end for # end for print("***************************************************") ################################################################################ # 9. Trigger Return Delegation from PCE side PCInitiate LSPs # ################################################################################ ixNet.execute('returnDelegation', pceInitiateLSPParameters1, 0) print ("Performing Return Delegation on PCInitiated LSPS...") time.sleep(15) ################################################################################ # 10. Stop all protocols # ################################################################################ print ("Stop all protocols") ixNet.execute('stopAllProtocols')