################################################################################ # # # 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: # # The script creates and configures 2 DHCP stacks. # # Set/Get multivalue parameters. # # Start/Stop protocols. # # Module: # # The sample was tested on an FlexAP10G16S module. # ################################################################################ ################################################################################ # Import the ixnetwork library # First add the library to Ruby's $LOAD_PATH: $:.unshift ################################################################################ require 'ixnetwork' # create an instance of the IxNet class @ixNet = IxNetwork.new # create absolute path for the config and load it puts("Connecting to server: localhost") @ixNet.connect('10.200.115.203', '-port', 8009, '-version', '7.30') puts("Cleaning up IxNetwork...") @ixNet.execute('newConfig') # all objects are under root root = @ixNet.getRoot() puts("\nAdd virtual ports to configuration...") vports = [] vports.push(@ixNet.add(root, 'vport')) vports.push(@ixNet.add(root, 'vport')) @ixNet.commit() # get virtual ports vports = @ixNet.getList(@ixNet.getRoot(), 'vport') puts('Add chassis in IxNetwork...') chassis = '10.200.115.151' availableHardwareId = @ixNet.getRoot()+'availableHardware' @ixNet.add(availableHardwareId, 'chassis', '-hostname', chassis) @ixNet.commit() puts("Assigning ports from " + chassis + " to "+ vports.to_s + " ...") @ixNet.setAttribute(vports[0], '-connectedTo', '/availableHardware/chassis:"10.200.115.151"/card:4/port:2') @ixNet.setAttribute(vports[1], '-connectedTo', '/availableHardware/chassis:"10.200.115.151"/card:4/port:10') @ixNet.commit() puts("Rebooting ports...") jobs = Array.new for vp in vports do jobs.push(@ixNet.setAsync().execute('resetPortCpu', vp)) end for j in jobs puts j + ' ' + @ixNet.getResult(j) end puts("Done... Ports are rebooted...") sleep(5) @ixNet.execute('clearStats') # ######################## Add DHCP DGs ####################################### # # adding topology with dhcp server puts('# \n######## HOW TO create a topology with DGs and various layers ##### #') puts('\n\nCreate first topology with DHCPServer...') puts('\nAdd topology...') @ixNet.add(root, 'topology') puts('\nUse @ixNet.commit() to commit added child under root.') @ixNet.commit() puts('\nUse @ixNet.getList to get newly added child under root.') topS = @ixNet.getList(root, 'topology')[0] puts('Add virtual port to topology and change its name...') @ixNet.setMultiAttribute(topS, '-vports', vports[0], '-name', 'DHCPserver') @ixNet.commit() puts('Add DeviceGroup for DHCPserver...') @ixNet.add(topS, 'deviceGroup') @ixNet.commit() DG1 = @ixNet.getList(topS, 'deviceGroup')[0] puts('Create the DHCPserver stack in this DeviceGroup...') puts('Add Ethernet layer...') @ixNet.add(DG1, 'ethernet') @ixNet.commit() eth1 = @ixNet.getList(DG1, 'ethernet')[0] puts('Add IPv4 layer...') @ixNet.add(eth1, 'ipv6') @ixNet.commit() ip1 = @ixNet.getList(eth1, 'ipv6')[0] puts('Add DHCPServer layer...') @ixNet.add(ip1, 'dhcpv6server') @ixNet.commit() dhcpServer = @ixNet.getList(ip1, 'dhcpv6server')[0] puts('Change each Device Group multipliers on server topology...') @ixNet.setAttribute(DG1, '-multiplier', 2) @ixNet.commit() # adding topology with dhcp client puts('\n\nCreate first topology with DHCPclient...') puts('Add topology...') @ixNet.add(root, 'topology') @ixNet.commit() # the newly added topology is the second 'topology' object type under root topC = @ixNet.getList(root, 'topology')[1] puts('Add virtual port to topology and change its name...') @ixNet.setMultiAttribute(topC, '-vports', vports[1], '-name', 'DHCP client') @ixNet.commit() puts('Add DeviceGroup for DHCPclient...') @ixNet.add(topC, 'deviceGroup') @ixNet.commit() DG2 = @ixNet.getList(topC, 'deviceGroup')[0] puts('Create the client stack in this DeviceGroup...') puts('Add Ethernet layer...') @ixNet.add(DG2, 'ethernet') @ixNet.commit() eth2 = @ixNet.getList(DG2, 'ethernet')[0] puts('Add DHCPclient layer...') @ixNet.add(eth2, 'dhcpv6client') @ixNet.commit() dhcpClient = @ixNet.getList(eth2, 'dhcpv6client')[0] puts('Change each Device Group multipliers on server topology...') @ixNet.setAttribute(DG2, '-multiplier', 10) @ixNet.commit() # ###################### Configure parameters ################################ # # ###################### Configure parameters ################################ # # ###################### Configure parameters ################################ # # ######################## Configure pool of addresses ####################### # puts('# ######################## HOW TO set a multivalue attribute ########## #') puts('\n\nChange Start Pool Address for DHCP Server...') # puts @ixNet.help(dhcpServer) # desired attribute is not found on dhcpServer serverSess = @ixNet.getList(dhcpServer, 'dhcp6ServerSessions')[0] # puts @ixNet.help(serverSess) # desired attribute is '-ipAddressPD' # IP address parameter is a multivalue object add_mv = @ixNet.getAttribute(serverSess, '-ipAddressPD') puts('\nTo see childs and attributes of an object just type: "@ixNet.help(current_object)". The output should be like this:') puts @ixNet.help(add_mv) puts('\nAvailable patterns for this multivalue can be found out by using getAttribute on the "-availablePatterns" attribute.') puts("Output for: @ixNet.getAttribute(add_mv, '-availablePatterns')") puts @ixNet.getAttribute(add_mv, '-availablePatterns') puts('\nSelected pattern: counter. Set this pattern under "-pattern" attribute with setAttribute.') puts("@ixNet.setAttribute(add_mv, '-pattern', 'counter')") @ixNet.setAttribute(add_mv, '-pattern', 'counter') puts('\nUse @ixNet.commit() to commit changes made with setAttribute.') @ixNet.commit() add_counter = @ixNet.getList(add_mv, 'counter')[0] puts('Use setMultiAttribute to set more attributes at once.') @ixNet.setMultiAttribute(add_counter, '-direction', 'increment', '-start', 'cd::0', '-step', '0:1::') @ixNet.commit() # ######################## Configure pool of addresses ####################### # # ######################## Configure Pool size ############################### # puts('\n\nChange Pool size...') size_mv = @ixNet.getAttribute(serverSess, '-poolPrefixSize') @ixNet.setAttribute(size_mv, '-pattern', 'singleValue') @ixNet.commit() size_mv_singleValue = @ixNet.getList(size_mv, 'singleValue')[0] @ixNet.setMultiAttribute(size_mv_singleValue, '-value', '20') @ixNet.commit() # ######################## Configure Pool size ############################### # # #################### Disabling IP gateway resolution ###################### # puts("\n\nDisabling Gw resolution...") res_mv=@ixNet.getAttribute(ip1, '-resolveGateway') @ixNet.setAttribute(res_mv, '-pattern', 'counter') @ixNet.commit() res_counter = @ixNet.getList(res_mv, 'counter')[0] @ixNet.setMultiAttribute(res_counter, '-direction', 'increment', '-start', 'false', '-step', '0') @ixNet.commit() # ################### Disabled IP gateway resolution ######################### # # ################################### Dynamics ############################### # puts('# \n####################### HOW TO start/stop/restart protocols ####### #') #starting topologies puts("\n\nStarting the topologies using @ixNet.execute('start', topS)") @ixNet.execute('start', topS) sleep(0.5) @ixNet.execute('start', topC) # wait for all sessions to start while ((@ixNet.getAttribute(dhcpServer, '-stateCounts')[1]).to_i + (@ixNet.getAttribute(dhcpClient, '-stateCounts')[1]).to_i) > 0 do puts('\ndhcpServer layer: Sessions TOTAL/ NOT STARTED/ DOWN/ UP: ' + @ixNet.getAttribute(dhcpServer, '-stateCounts').to_s) puts('dhcpClient layer: Sessions TOTAL/ NOT STARTED/ DOWN/ UP: ' + @ixNet.getAttribute(dhcpClient, '-stateCounts').to_s) puts('Waiting for all sessions to be started...') sleep(3) end puts('dhcpServer layer: Sessions TOTAL/ NOT STARTED/ DOWN/ UP: ' + @ixNet.getAttribute(dhcpServer, '-stateCounts').to_s) puts('dhcpClient layer: Sessions TOTAL/ NOT STARTED/ DOWN/ UP: ' + @ixNet.getAttribute(dhcpClient, '-stateCounts').to_s) puts('All sessions started...') sleep(15) puts('Learned information - Negotiated client addresses:') puts(@ixNet.getAttribute(dhcpClient, '-discoveredPrefix').to_s) puts("\n\nRenewing the client leases using @ixNet.execute('renew', dhcpClient)") @ixNet.execute('renew', dhcpClient) #reading stats sleep(20) puts("\n\nRefreshing NGPF statistics views can be done from API using the following exec command: @ixNet.execute('refresh', '__allNextGenViews')") @ixNet.execute('refresh', '__allNextGenViews') sleep(3) mv = @ixNet.getList(@ixNet.getRoot(), 'statistics')[0] view_list = @ixNet.getList(mv, 'view') puts('\n\nAvailable statistics views are :\n ' + view_list.to_s) #stopping per topology puts('\n\nStop topologies...') @ixNet.execute('stop',topC) sleep(10) @ixNet.execute('stop',topS) puts("\n\nCleaning up IxNetwork...") @ixNet.execute('newConfig') @ixNet.disconnect() puts("Done: IxNetwork session is closed...")