Beispiel #1
0
def step_configure_lags(sw_list, sw_real_ports, step):
    step('Create LAGs')
    for sw, mode in zip(sw_list, ['active', 'passive']):
        create_lag(sw, LAG_ID, mode)
        for port in sw_real_ports[sw][0:2]:
            associate_interface_to_lag(sw, port, LAG_ID)
        verify_lag_config(
            sw,
            LAG_ID,
            sw_real_ports[sw][0:2],
            mode=mode
        )
    check_func = retry_wrapper(
        'Verify LACP status on both devices',
        'Configuration not yet applied',
        10,
        5
    )(verify_lacp_state)
    check_func(
        sw_list[0],
        sw_list[1],
        sw1_lacp_mode='active',
        sw2_lacp_mode='passive',
        ports=sw_real_ports
    )
def test_remove_interface_from_lag_case_1(topology, step):
    """
    Case 1:
        Verify that an interface is correclty removed from a LAG
    """
    sw1 = topology.get('sw1')
    sw1_lag_id = '10'

    assert sw1 is not None

    step("Mapping interfaces")
    port = sw1.ports['1']

    step("Turning on interface 1 used in this test")
    turn_on_interface(sw1, port)

    step("Verify interface 1 is up")
    verify_turn_on_interfaces(sw1, [port])

    step("Create LAG")
    create_lag(sw1, sw1_lag_id, 'off')

    step("Associate interface [1] to LAG")
    associate_interface_to_lag(sw1, port, sw1_lag_id)

    step("Verify interface 1 is in LAG 1")
    verify_lag_config(sw1, sw1_lag_id, [port])

    step("Remove interface from LAG 1")
    remove_interface_from_lag(sw1, port, sw1_lag_id)

    step("Verify interface is shutdown")
    verify_turn_off_interfaces(sw1, [port])
Beispiel #3
0
def create_destroy_lags(sw, sw_real_ports, step):
    step('Change members of LAGs and compare LAG ports statistics match')
    lag_member_states = [
        [False, False, False],
        [False, False, True],
        [False, True, False],
        [False, True, True],
        [True, False, False],
        [True, False, True],
        [True, True, False],
        [True, True, True],
    ]
    for state in lag_member_states:
        print('Create LAG')
        create_lag(sw, LAG_ID, 'off')
        print('Verify LAG is clean')
        lag_int_stat = sw.libs.vtysh.show_interface('lag{}'.format(LAG_ID))
        compare_lag_interface_basic_settings(
            lag_int_stat,
            LAG_ID,
            []
        )
        compare_lag_to_switches_counters(
            {},
            lag_int_stat,
            []
        )
        print('Changing members')
        current_lag_members = change_member_states(
            sw,
            sw_real_ports,
            lag_member_states[0],
            state
        )
        print('Changed members of LAG to: {}'.format(current_lag_members))
        int_stats = {}
        for port in current_lag_members:
            int_stats[port] = sw.libs.vtysh.show_interface(port)
        print('Verify LAG statistics information')
        lag_int_stat = sw.libs.vtysh.show_interface('lag{}'.format(LAG_ID))
        compare_lag_interface_basic_settings(
            lag_int_stat,
            LAG_ID,
            current_lag_members
        )
        compare_lag_to_switches_counters(
            int_stats,
            lag_int_stat,
            current_lag_members
        )
        print('Delete LAG')
        delete_lag(sw, LAG_ID)
Beispiel #4
0
def test_static_move_interfaces(topology, step):
    sw1 = topology.get('sw1')
    assert sw1 is not None

    lag_id1 = '1'
    lag_id2 = '2'
    interface_id = '1'

    # Create a LAG
    step("Create a LAG with id" + lag_id1)
    create_lag(sw1, lag_id1, 'off')

    # Add an interface to LAG 1
    step("Add and interface to LAG " + lag_id1)
    associate_interface_to_lag(sw1, interface_id, lag_id1)

    # Verify LAG configuration
    step("Verify LAG configuration")
    verify_lag_config(sw1, lag_id1, interface_id)
    map_lacp = sw1.libs.vtysh.show_lacp_interface(interface_id)
    validate_lag_state_static(map_lacp, LOCAL_STATE)

    # Verify if the interface was added to static LAG
    step("Verify if the interface was added to static LAG")
    verify_lag_interface_lag_id(map_lacp, lag_id1)

    # Create a LAG
    step("Create a LAG with id " + lag_id2)
    create_lag(sw1, lag_id2, 'off')

    # Add an interface to LAG 2
    step("Add and interface to LAG 2")
    associate_interface_to_lag(sw1, '1', lag_id2)

    # Verify LAG configuration
    step("Verify LAG configuration")
    verify_lag_config(sw1, lag_id2, interface_id)
    map_lacp = sw1.libs.vtysh.show_lacp_interface(interface_id)
    validate_lag_state_static(map_lacp, LOCAL_STATE)

    # Verify if the interface was added to static LAG
    step("Verify if the interface was added to static LAG")
    verify_lag_interface_lag_id(map_lacp, lag_id2)

    # Verify if the interface is not in LAG 1
    step("Verify if the interface is not in LAG 1")
    validate_interface_not_in_lag(sw1, interface_id, lag_id1)
def configure_lags(sw_list, sw_real_ports, step):
    step('Create LAGs')
    for sw in sw_list:
        create_lag(sw, LAG_ID, 'off')
        # Set LACP rate to fast
        set_lag_rate(sw, LAG_ID, 'fast')
        for port in sw_real_ports[sw][0:2]:
            associate_interface_to_lag(sw, port, LAG_ID)
        verify_lag_config(sw,
                          LAG_ID,
                          sw_real_ports[sw][0:2],
                          heartbeat_rate='fast')
    # Increase max time to compensate for framework delay
    check_func = retry_wrapper('Verify LACP status on both devices',
                               'Configuration not yet applied', 2,
                               6)(verify_lacp_state)
    check_func(sw_list[0],
               sw_list[1],
               sw_real_ports,
               sw1_lacp_mode='off',
               sw2_lacp_mode='off')
Beispiel #6
0
def configure_lags(sw_list, sw_real_ports, step):
    step('Create LAGs')
    for sw in sw_list:
        create_lag(sw, LAG_ID, 'off')
        for port in sw_real_ports[sw][1:]:
            associate_interface_to_lag(sw, port, LAG_ID)
        verify_lag_config(
            sw,
            LAG_ID,
            sw_real_ports[sw][1:]
        )
    check_func = retry_wrapper(
        'Verify LACP status on both devices',
        'Configuration not yet applied',
        2,
        4
    )(verify_lacp_state)
    check_func(
        sw_list[0],
        sw_list[1]
    )
def test_unsupported_names(topology, step):

    sw1 = topology.get('sw1')
    assert sw1 is not None

    invalid_id = ['-1', '2001', 'as&']
    valid_id = ['1', '2000']
    mode_active = "active"
    mode_passive = "passive"

    for lag_id in valid_id:
        step("## Create static LAG with id: " + lag_id + " ##")
        create_lag(sw1, lag_id, 'off')

    for lag_id in invalid_id:
        step("## Create invalid LAG: " + lag_id + " ##")
        with raises(AssertionError):
            create_lag(sw1, lag_id, 'off')
        # Negative test, sending "end" command to exit configuration context
        sw1('end')

    for lag_id in valid_id:
        step("## Delete Static LAG id" + lag_id + " ##")
        delete_lag(sw1, lag_id)

    for lag_id in valid_id:
        step("## Create dynamic (active) LAG with id: " + lag_id + " ##")
        create_lag(sw1, lag_id, mode_active)

    for lag_id in invalid_id:
        step("## Create invalid LAG: " + lag_id + " ##")
        with raises(AssertionError):
            create_lag(sw1, lag_id, mode_active)
        # Negative test, sending "end" command to exit configuration context
        sw1('end')

    for lag_id in valid_id:
        step("## Delete dynamic (active) LAG id" + lag_id + " ##")
        delete_lag(sw1, lag_id)

    for lag_id in valid_id:
        step("## Create dynamic (passive) LAG with id: " + lag_id + " ##")
        create_lag(sw1, lag_id, mode_passive)

    for lag_id in invalid_id:
        step("## Create invalid LAG: " + lag_id + " ##")
        with raises(AssertionError):
            create_lag(sw1, lag_id, mode_passive)
        # Negative test, sending "end" command to exit configuration context
        sw1('end')
def test_static_modify_maximum_members(topology, step):

    sw1 = topology.get('sw1')
    sw2 = topology.get('sw2')
    hs1 = topology.get('hs1')
    hs2 = topology.get('hs2')

    assert sw1 is not None
    assert sw2 is not None
    assert hs1 is not None
    assert hs2 is not None

    ports_sw1 = list()
    ports_sw2 = list()

    port_labels = ['1', '2', '3', '4', '5', '6', '7', '8', '9']

    lag_id = '1'
    vlan_id = '900'

    step("### Mapping interfaces from Docker ###")
    for port in port_labels:
        ports_sw1.append(sw1.ports[port])
        ports_sw2.append(sw2.ports[port])

    step("#### Turning on interfaces in sw1 ###")
    for port in ports_sw1:
        turn_on_interface(sw1, port)

    step("#### Turning on interfaces in sw2 ###")
    for port in ports_sw2:
        turn_on_interface(sw2, port)

    step("#### Validate interfaces are turn on ####")
    verify_turn_on_interfaces(sw1, ports_sw1)
    verify_turn_on_interfaces(sw2, ports_sw2)

    step("##### Create LAGs ####")
    create_lag(sw1, lag_id, 'off')
    create_lag(sw2, lag_id, 'off')

    step("#### Associate Interfaces to LAG ####")
    for intf in ports_sw1[1:9]:
        associate_interface_to_lag(sw1, intf, lag_id)

    for intf in ports_sw2[1:9]:
        associate_interface_to_lag(sw2, intf, lag_id)

    step("#### Verify LAG configuration ####")
    verify_lag_config(sw1, lag_id, ports_sw1[1:9])
    verify_lag_config(sw2, lag_id, ports_sw2[1:9])

    step("#### Configure VLANs on switches ####")
    create_vlan(sw1, vlan_id)
    create_vlan(sw2, vlan_id)

    associate_vlan_to_l2_interface(sw1, vlan_id, ports_sw1[0])
    associate_vlan_to_lag(sw1, vlan_id, lag_id)

    associate_vlan_to_l2_interface(sw2, vlan_id, ports_sw2[0])
    associate_vlan_to_lag(sw2, vlan_id, lag_id)

    step("#### Configure workstations ####")
    hs1.libs.ip.interface('1', addr='140.1.1.10/24', up=True)
    hs2.libs.ip.interface('1', addr='140.1.1.11/24', up=True)

    step("#### Test ping between clients work ####")
    verify_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11')

    step("### Remove one interface from each LAG ###")
    remove_interface_from_lag(sw1, ports_sw1[1], lag_id)
    remove_interface_from_lag(sw2, ports_sw2[1], lag_id)

    step("### Validate if the interface was removed of LAG ###")
    validate_interface_not_in_lag(sw1, ports_sw1[1], lag_id)
    validate_interface_not_in_lag(sw2, ports_sw2[1], lag_id)

    step("#### Test ping between clients work ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11', 5,
                                     True)

    step("### Turning on interface ###")
    turn_on_interface(sw1, ports_sw1[1])
    turn_on_interface(sw2, ports_sw2[1])

    step("### Validate interface is turn on ###")
    verify_turn_on_interfaces(sw1, ports_sw1[1])
    verify_turn_on_interfaces(sw2, ports_sw2[1])

    step("### Associate Interface to LAG ###")
    associate_interface_to_lag(sw1, ports_sw1[1], lag_id)
    associate_interface_to_lag(sw2, ports_sw2[1], lag_id)

    step("#### Test ping between clients work ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11', 5,
                                     True)
def test_lacpd_load_balance(topology, step):
    """Test LAG load balance with l2, l3 and l4 hash algorithms."""
    # VID for testing
    test_vlan = '256'
    # LAG ID for testing
    test_lag = '2'
    # Ports for testing
    test_port_tcp = 778
    test_port_udp = 777
    times_to_send = 150
    # interfaces to be added to LAG
    lag_interfaces = ['2', '3']
    # traffic counters
    lag_intf_counter_b = {}
    lag_intf_counter_a = {}
    delta_tx = {'l2-src-dst': {}, 'l3-src-dst': {}, 'l4-src-dst': {}}

    num_addresses = 10

    mac_list = generate_mac_addresses(num_addresses)
    ip_list = generate_ip_addresses(num_addresses)

    lag_lb_algorithms = ['l2-src-dst', 'l3-src-dst', 'l4-src-dst']
    sw1_host_interfaces = ['1']
    sw2_host_interfaces = ['1', '4']
    host1_addr = '10.0.11.10'
    host2_addr = '10.0.11.11'
    host3_addr = '10.0.11.12'

    sw1 = topology.get('sw1')
    sw2 = topology.get('sw2')
    hs1 = topology.get('hs1')
    hs2 = topology.get('hs2')
    hs3 = topology.get('hs3')

    step('Verifying switches are not None')
    assert sw1 is not None, 'Topology failed getting object sw1'
    assert sw2 is not None, 'Topology failed getting object sw2'

    step('Verifying hosts are not None')
    assert hs1 is not None, 'Topology failed getting object hs1'
    assert hs2 is not None, 'Topology failed getting object hs2'
    assert hs3 is not None, 'Topology failed getting object hs3'

    step('Turning interfaces ON on Switch 1')
    for intf in lag_interfaces + sw1_host_interfaces:
        turn_on_interface(sw1, intf)

    step('Turning interfaces ON on Switch 1')
    for intf in lag_interfaces + sw2_host_interfaces:
        turn_on_interface(sw2, intf)

    step('Verifying interfaces are Up on Switch 1')
    verify_turn_on_interfaces(sw1, lag_interfaces + sw1_host_interfaces)

    step('Verifying interfaces are Up on Switch 1')
    verify_turn_on_interfaces(sw2, lag_interfaces + sw2_host_interfaces)

    # Configure switches
    for switch in [sw1, sw2]:
        step('Creating VLAN %s' % test_vlan)
        create_vlan(switch, test_vlan)

        step('Creating LAG %s' % test_lag)
        create_lag(switch, test_lag, 'off')

        step('Associating VLAN %s to LAG %s' % test_vlan, test_lag)
        associate_vlan_to_lag(switch, test_vlan, test_lag)

        for intf in lag_interfaces:
            step('Associating interface %s to LAG %s' % (intf, test_lag))
            associate_interface_to_lag(switch, intf, test_lag)

    for intf in sw1_host_interfaces:
        step('Associating VLAN %s to interface %s' % (test_vlan, intf))
        associate_vlan_to_l2_interface(sw1, test_vlan, intf)

    for intf in sw2_host_interfaces:
        step('Associating VLAN %s to interface %s' % (test_vlan, intf))
        associate_vlan_to_l2_interface(sw2, test_vlan, intf)

    # Configure host interfaces
    hs1.libs.ip.interface('1',
                          addr='{host1_addr}/24'.format(**locals()),
                          up=True)

    hs2.libs.ip.interface('1',
                          addr='{host2_addr}/24'.format(**locals()),
                          up=True)

    hs3.libs.ip.interface('1',
                          addr='{host3_addr}/24'.format(**locals()),
                          up=True)

    step('Verifying connectivity between Host 1 and Host 2')
    verify_connectivity_between_hosts(hs1, host1_addr, hs2, host2_addr)

    step('Verifying connectivity between Host 1 and Host 3')
    verify_connectivity_between_hosts(hs1, host1_addr, hs3, host3_addr)

    hs2.libs.iperf.server_start(test_port_tcp, 20, False)
    hs2.libs.iperf.server_start(test_port_udp, 20, True)
    hs3.libs.iperf.server_start(test_port_tcp, 20, False)

    old_ip = host1_addr
    for lb_algorithm in lag_lb_algorithms:
        print('========== Testing with {lb_algorithm} =========='.format(
            **locals()))
        for switch in [sw1, sw2]:
            set_lag_lb_hash(switch, test_lag, lb_algorithm)
            # Check that hash is properly set
            check_lag_lb_hash(switch, test_lag, lb_algorithm)

        sleep(10)
        for intf in lag_interfaces:
            intf_info = sw1.libs.vtysh.show_interface(intf)
            lag_intf_counter_b[intf] = intf_info['tx_packets']

        for x in range(0, times_to_send):
            if lb_algorithm == 'l3-src-dst':
                ip = ip_list[x % num_addresses]
                chg_ip_address(hs1, '1', '{ip}/24'.format(**locals()),
                               '{old_ip}/24'.format(**locals()))
                old_ip = ip
            elif lb_algorithm == 'l2-src-dst':
                mac = mac_list[x % num_addresses]
                chg_mac_address(hs1, '1', mac)

            hs1.libs.iperf.client_start(host2_addr, test_port_tcp, 1, 2, False)

            if lb_algorithm == 'l4-src-dst':
                hs1.libs.iperf.client_start(host2_addr, test_port_udp, 1, 2,
                                            True)
            else:
                hs1.libs.iperf.client_start(host3_addr, test_port_tcp, 1, 2,
                                            False)
        sleep(15)
        for intf in lag_interfaces:
            intf_info = sw1.libs.vtysh.show_interface(intf)
            lag_intf_counter_a[intf] = intf_info['tx_packets']
            delta_tx[lb_algorithm][intf] =\
                lag_intf_counter_a[intf] - lag_intf_counter_b[intf]

            assert delta_tx[lb_algorithm][intf] > 0,\
                'Just one interface was used with {lb_algorithm}'\
                .format(**locals())

        if lb_algorithm == 'l3-src-dst':
            chg_ip_address(hs1, '1', '{host1_addr}/24'.format(**locals()),
                           '{old_ip}/24'.format(**locals()))

    # Print a summary of counters
    for lb_algorithm in lag_lb_algorithms:
        print('======== {lb_algorithm} ============'.format(**locals()))
        for intf in lag_interfaces:
            print('Interface: {intf}'.format(**locals()))
            dt = delta_tx[lb_algorithm][intf]
            print('TX packets: {dt}'.format(**locals()))
            print('--')
    print('=================================')
Beispiel #10
0
def test_dynamic_maximum_members(topology, step):

    sw1 = topology.get('sw1')
    sw2 = topology.get('sw2')
    hs1 = topology.get('hs1')
    hs2 = topology.get('hs2')

    assert sw1 is not None
    assert sw2 is not None
    assert hs1 is not None
    assert hs2 is not None

    ports_sw1 = list()
    ports_sw2 = list()
    port_labels = ['1', '2', '3', '4', '5', '6', '7', '8', '9']

    lag_id = '1'
    vlan_id = '900'
    mode_active = 'active'
    mode_passive = 'passive'

    step("### Mapping interfaces from Docker ###")
    for port in port_labels:
        ports_sw1.append(sw1.ports[port])
        ports_sw2.append(sw2.ports[port])

    step("#### Turning on interfaces in sw1 ###")
    for port in ports_sw1:
        turn_on_interface(sw1, port)

    step("#### Turning on interfaces in sw2 ###")
    for port in ports_sw2:
        turn_on_interface(sw2, port)

    step("#### Validate interfaces are turn on ####")
    verify_turn_on_interfaces(sw1, ports_sw1)
    verify_turn_on_interfaces(sw2, ports_sw2)

    step("##### Create LAGs ####")
    create_lag(sw1, lag_id, mode_active)
    create_lag(sw2, lag_id, mode_passive)

    step("#### Associate Interfaces to LAG ####")
    for intf in ports_sw1[1:9]:
        associate_interface_to_lag(sw1, intf, lag_id)

    for intf in ports_sw2[1:9]:
        associate_interface_to_lag(sw2, intf, lag_id)

    step("#### Verify LAG configuration ####")
    verify_lag_config(sw1, lag_id, ports_sw1[1:9], mode=mode_active)
    verify_lag_config(sw2, lag_id, ports_sw2[1:9], mode=mode_passive)

    step("#### Configure VLANs on switches ####")
    create_vlan(sw1, vlan_id)
    create_vlan(sw2, vlan_id)

    associate_vlan_to_l2_interface(sw1, vlan_id, ports_sw1[0])
    associate_vlan_to_lag(sw1, vlan_id, lag_id)

    associate_vlan_to_l2_interface(sw2, vlan_id, ports_sw2[0])
    associate_vlan_to_lag(sw2, vlan_id, lag_id)

    step("#### Configure workstations ####")
    hs1.libs.ip.interface('1', addr='140.1.1.10/24', up=True)
    hs2.libs.ip.interface('1', addr='140.1.1.11/24', up=True)

    step("### Verify if LAG is synchronized")
    verify_state_sync_lag(sw1, ports_sw1[1:9], LOCAL_STATE, mode_active)
    verify_state_sync_lag(sw1, ports_sw1[1:9], REMOTE_STATE, mode_passive)

    step("#### Test ping between clients work ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11', 5,
                                     True)

    step("#### Delete LAG ####")
    delete_lag(sw1, lag_id)
    delete_lag(sw2, lag_id)

    step("#### Negative Test ping between clients ###")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11', 5,
                                     False)
def test_dynamic_tagged_vlan(topology, step):

    sw1 = topology.get('sw1')
    sw2 = topology.get('sw2')
    hs1 = topology.get('hs1')
    hs2 = topology.get('hs2')
    hs3 = topology.get('hs3')

    assert sw1 is not None
    assert sw2 is not None
    assert hs1 is not None
    assert hs2 is not None
    assert hs3 is not None

    ports_sw1 = list()
    ports_sw2 = list()
    port_labels = ['1', '2', '3', '4']

    lag_id = '1'
    vlans_id = ['800', '900']
    mode_active = 'active'
    mode_passive = 'passive'

    step("### Mapping interfaces from Docker ###")
    for port in port_labels[:3]:
        ports_sw1.append(sw1.ports[port])

    for port in port_labels:
        ports_sw2.append(sw2.ports[port])

    step("#### Turning on interfaces in sw1 ###")
    for port in ports_sw1:
        turn_on_interface(sw1, port)

    step("#### Turning on interfaces in sw2 ###")
    for port in ports_sw2:
        turn_on_interface(sw2, port)

    step("#### Validate interfaces are turn on ####")
    verify_turn_on_interfaces(sw1, ports_sw1)
    verify_turn_on_interfaces(sw2, ports_sw2)

    step("##### Create LAGs ####")
    create_lag(sw1, lag_id, mode_active)
    create_lag(sw2, lag_id, mode_passive)

    step("#### Associate Interfaces to LAG ####")
    for intf in ports_sw1[1:3]:
        associate_interface_to_lag(sw1, intf, lag_id)

    for intf in ports_sw2[1:3]:
        associate_interface_to_lag(sw2, intf, lag_id)

    step("#### Verify LAG configuration ####")
    verify_lag_config(sw1, lag_id, ports_sw1[1:3], mode=mode_active)
    verify_lag_config(sw2, lag_id, ports_sw2[1:3], mode=mode_passive)

    step("#### Configure VLANs on switches ####")
    for vlan in vlans_id:
        create_vlan(sw1, vlan)
        create_vlan(sw2, vlan)

    step("### Tagged VLANs on LAG interfaces")
    tagged_vlan_to_lag(sw1, vlans_id, lag_id)
    tagged_vlan_to_lag(sw2, vlans_id, lag_id)

    associate_vlan_to_l2_interface(sw1, vlans_id[0], ports_sw1[0])
    associate_vlan_to_l2_interface(sw2, vlans_id[0], ports_sw2[0])
    associate_vlan_to_l2_interface(sw2, vlans_id[1], ports_sw2[3])

    step("#### Configure workstations ####")
    hs1.libs.ip.interface('1', addr='140.1.1.10/24', up=True)
    hs2.libs.ip.interface('1', addr='140.1.1.11/24', up=True)
    hs3.libs.ip.interface('1', addr='140.1.1.12/24', up=True)

    step("### Verify if LAG is synchronized")
    verify_state_sync_lag(sw1, ports_sw1[1:3], LOCAL_STATE, mode_active)
    verify_state_sync_lag(sw1, ports_sw1[1:3], REMOTE_STATE, mode_passive)

    step("#### Test ping between clients in the same vlan ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11', 5,
                                     True)

    step("#### Test ping between clients in the different vlan ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs3, '140.1.1.12', 5,
                                     False)

    step("### Move one WS to the VLAN with the single workstation ###")
    associate_vlan_to_l2_interface(sw1, vlans_id[1], ports_sw1[0])

    step("#### Test ping between clients in the same vlan ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs3, '140.1.1.12', 5,
                                     True)
Beispiel #12
0
def test_l2_static_lag_ping_case_1(topology):
    """
    Case 1:
        Verify a ping between 2 workstations connected by 2 switches configured
        with L2 static LAGs works properly.
    """
    sw1 = topology.get('sw1')
    sw2 = topology.get('sw2')
    hs1 = topology.get('hs1')
    hs2 = topology.get('hs2')
    hs1_ip_address_with_mask = '10.0.10.1/24'
    hs2_ip_address_with_mask = '10.0.10.2/24'
    hs1_ip_address = '10.0.10.1'
    hs2_ip_address = '10.0.10.2'
    sw1_lag_id = '10'
    sw2_lag_id = '20'
    vlan_identifier = '8'

    assert sw1 is not None
    assert sw2 is not None
    assert hs1 is not None
    assert hs2 is not None

    ports_sw1 = list()
    ports_sw2 = list()
    # Remove unused port 3
    port_labels = ['1', '2', '3']

    step("### Mapping interfaces from Docker ###")
    for port in port_labels:
        ports_sw1.append(sw1.ports[port])
        ports_sw2.append(sw2.ports[port])

    step("Sorting the port list")
    ports_sw1.sort()
    ports_sw2.sort()

    p11 = ports_sw1[0]
    p12 = ports_sw1[1]
    p13 = ports_sw1[2]
    p21 = ports_sw2[0]
    p22 = ports_sw2[1]
    p23 = ports_sw2[2]

    step("Turning on all interfaces used in this test")
    ports_sw1 = [p11, p12, p13]
    for port in ports_sw1:
        turn_on_interface(sw1, port)

    ports_sw2 = [p21, p22, p23]
    for port in ports_sw2:
        turn_on_interface(sw2, port)

    step("#### Validate interfaces are turn on ####")
    verify_turn_on_interfaces(sw1, ports_sw1)
    verify_turn_on_interfaces(sw2, ports_sw2)

    step("Assign an IP address on the same range to each workstation")
    hs1.libs.ip.interface('1', addr=hs1_ip_address_with_mask, up=True)
    hs2.libs.ip.interface('1', addr=hs2_ip_address_with_mask, up=True)

    step('Creating VLAN in both switches')
    create_vlan(sw1, vlan_identifier)
    create_vlan(sw2, vlan_identifier)

    step("Create LAG in both switches")
    create_lag(sw1, sw1_lag_id, 'off')
    create_lag(sw2, sw2_lag_id, 'off')

    step("Associate interfaces [1, 2] to LAG in both switches")
    associate_interface_to_lag(sw1, p11, sw1_lag_id)
    associate_interface_to_lag(sw1, p12, sw1_lag_id)
    associate_interface_to_lag(sw2, p21, sw2_lag_id)
    associate_interface_to_lag(sw2, p22, sw2_lag_id)

    step("Configure LAGs and workstations interfaces with same VLAN")
    associate_vlan_to_lag(sw1, vlan_identifier, sw1_lag_id)
    associate_vlan_to_lag(sw2, vlan_identifier, sw2_lag_id)
    associate_vlan_to_l2_interface(sw1, vlan_identifier, p13)
    associate_vlan_to_l2_interface(sw2, vlan_identifier, p23)

    step("Ping workstation 2 from workstation 1 and viceversa")
    verify_connectivity_between_hosts(hs1, hs1_ip_address, hs2, hs2_ip_address)
Beispiel #13
0
def main_setup(request, topology):
    """Test Case common configuration."""
    sw1 = topology.get('sw1')
    sw2 = topology.get('sw2')
    hs1 = topology.get('hs1')
    hs2 = topology.get('hs2')

    assert sw1 is not None, 'Topology failed getting object sw1'
    assert sw2 is not None, 'Topology failed getting object sw2'
    assert hs1 is not None, 'Topology failed getting object hs1'
    assert hs2 is not None, 'Topology failed getting object hs2'

    lag_id = '1'
    vlan_id = '900'
    mode_active = 'active'
    mode_passive = 'passive'

    p11h = sw1.ports['1']
    p12 = sw1.ports['2']
    p13 = sw1.ports['3']
    p21h = sw2.ports['1']
    p22 = sw2.ports['2']
    p23 = sw2.ports['3']

    ports_sw1 = [p11h, p12, p13]
    ports_sw2 = [p21h, p22, p23]

    print("#### Turning on interfaces in sw1 ###")
    for port in ports_sw1:
        turn_on_interface(sw1, port)

    print("#### Turning on interfaces in sw2 ###")
    for port in ports_sw2:
        turn_on_interface(sw2, port)

    print("#### Validate interfaces are turned on ####")
    verify_turn_on_interfaces(sw1, ports_sw1)
    verify_turn_on_interfaces(sw2, ports_sw2)

    mac_addr_sw1 = sw1.libs.vtysh.show_interface(1)['mac_address']
    mac_addr_sw2 = sw2.libs.vtysh.show_interface(1)['mac_address']
    assert mac_addr_sw1 != mac_addr_sw2,\
        'Mac address of interfaces in sw1 is equal to mac address of ' +\
        'interfaces in sw2. This is a test framework problem. Dynamic ' +\
        'LAGs cannot work properly under this condition. Refer to Taiga ' +\
        'issue #1251.'

    print("##### Create LAGs ####")
    create_lag(sw1, lag_id, mode_active)
    create_lag(sw2, lag_id, mode_passive)

    print("### Set LACP rate to fast ###")
    set_lacp_rate_fast(sw1, lag_id)
    set_lacp_rate_fast(sw2, lag_id)

    print("#### Associate Interfaces to LAG ####")
    for intf in ports_sw1[1:3]:
        associate_interface_to_lag(sw1, intf, lag_id)

    for intf in ports_sw2[1:3]:
        associate_interface_to_lag(sw2, intf, lag_id)

    print("#### Verify LAG configuration ####")
    verify_lag_config(sw1,
                      lag_id,
                      ports_sw1[1:3],
                      heartbeat_rate='fast',
                      mode=mode_active)
    verify_lag_config(sw2,
                      lag_id,
                      ports_sw2[1:3],
                      heartbeat_rate='fast',
                      mode=mode_passive)

    print("### Verify if LAG is synchronized")
    verify_state_sync_lag(sw1, ports_sw1[1:3], LOCAL_STATE, mode_active)
    verify_state_sync_lag(sw1, ports_sw1[1:3], REMOTE_STATE, mode_passive)
    verify_state_sync_lag(sw2, ports_sw2[1:3], LOCAL_STATE, mode_passive)
    verify_state_sync_lag(sw2, ports_sw2[1:3], REMOTE_STATE, mode_active)

    print("#### Configure VLANs on switches ####")
    create_vlan(sw1, vlan_id)
    create_vlan(sw2, vlan_id)

    associate_vlan_to_l2_interface(sw1, vlan_id, p11h)
    associate_vlan_to_lag(sw1, vlan_id, lag_id)

    associate_vlan_to_l2_interface(sw2, vlan_id, p21h)
    associate_vlan_to_lag(sw2, vlan_id, lag_id)

    print("#### Configure workstations ####")
    hs1.libs.ip.interface('1', addr='140.1.1.10/24', up=True)
    hs2.libs.ip.interface('1', addr='140.1.1.11/24', up=True)
def configure_lag(sw, step):
    step('Create LAG on sw1')
    create_lag(sw, LAG_ID, 'off')
    verify_lag_config(sw, LAG_ID, [])
def test_static_minimum_members(topology, step):

    sw1 = topology.get('sw1')
    sw2 = topology.get('sw2')
    hs1 = topology.get('hs1')
    hs2 = topology.get('hs2')

    assert sw1 is not None
    assert sw2 is not None
    assert hs1 is not None
    assert hs2 is not None

    ports_sw1 = list()
    ports_sw2 = list()
    port_labels = ['1', '2', '3']

    lag_id = '1'
    vlan_id = '900'

    step("### Mapping interfaces ###")
    for port in port_labels:
        ports_sw1.append(sw1.ports[port])
        ports_sw2.append(sw2.ports[port])

    step("#### Turning on interfaces in sw1 ###")
    for port in ports_sw1:
        turn_on_interface(sw1, port)

    step("#### Turning on interfaces in sw2 ###")
    for port in ports_sw2:
        turn_on_interface(sw2, port)

    step("#### Validate interfaces are turn on ####")
    verify_turn_on_interfaces(sw1, ports_sw1)
    verify_turn_on_interfaces(sw2, ports_sw2)

    step("##### Create LAGs ####")
    create_lag(sw1, lag_id, 'off')
    create_lag(sw2, lag_id, 'off')

    step("#### Associate Interfaces to LAG ####")
    for intf in ports_sw1[1:3]:
        associate_interface_to_lag(sw1, intf, lag_id)

    for intf in ports_sw2[1:3]:
        associate_interface_to_lag(sw2, intf, lag_id)

    step("#### Verify LAG configuration ####")
    verify_lag_config(sw1, lag_id, ports_sw1[1:3])
    verify_lag_config(sw2, lag_id, ports_sw2[1:3])

    step("#### Configure VLANs on switches ####")
    create_vlan(sw1, vlan_id)
    create_vlan(sw2, vlan_id)

    associate_vlan_to_l2_interface(sw1, vlan_id, ports_sw1[0])
    associate_vlan_to_lag(sw1, vlan_id, lag_id)

    associate_vlan_to_l2_interface(sw2, vlan_id, ports_sw2[0])
    associate_vlan_to_lag(sw2, vlan_id, lag_id)

    step("#### Configure workstations ####")
    hs1.libs.ip.interface('1', addr='140.1.1.10/24', up=True)
    hs2.libs.ip.interface('1', addr='140.1.1.11/24', up=True)

    step("#### Test ping between clients work ####")
    verify_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11')

    step("### Delete LAGs ###")
    delete_lag(sw1, lag_id)
    delete_lag(sw2, lag_id)

    step("#### Negative test ping between clients ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11', 5,
                                     False)

    step("##### Create LAGs ####")
    create_lag(sw1, lag_id, 'off')
    create_lag(sw2, lag_id, 'off')

    step("#### Associate one interface to LAG ####")
    associate_interface_to_lag(sw1, ports_sw1[1], lag_id)
    associate_interface_to_lag(sw2, ports_sw2[1], lag_id)

    step("#### Verify LAG configuration ####")
    verify_lag_config(sw1, lag_id, ports_sw1[1])
    verify_lag_config(sw2, lag_id, ports_sw2[1])

    step("### Associate Vlan to LAG")
    associate_vlan_to_lag(sw1, vlan_id, lag_id)
    associate_vlan_to_lag(sw2, vlan_id, lag_id)

    step("#### Test ping between clients ####")
    verify_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11')

    step("### Delete LAGs ###")
    delete_lag(sw1, lag_id)
    delete_lag(sw2, lag_id)

    step("#### Negative test ping between clients ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11', 5,
                                     False)

    step("##### Create LAGs without interfaces ####")
    create_lag(sw1, lag_id, 'off')
    create_lag(sw2, lag_id, 'off')

    step("#### Negative test ping between clients ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11', 5,
                                     False)

    step("### Delete LAGs ###")
    delete_lag(sw1, lag_id)
    delete_lag(sw2, lag_id)

    step("#### Negative test ping between clients ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11', 5,
                                     False)
Beispiel #16
0
def test_l2_l3_switch_case_1(topology):
    """
    Case 1:
        Verify the correct communication of 2 switches connected first by a
        L2 LAG, then by a L3 LAG and finally connected by a L2 LAG again.
    """
    sw1 = topology.get('sw1')
    sw2 = topology.get('sw2')
    hs1 = topology.get('hs1')
    hs2 = topology.get('hs2')
    ip_address_mask = '24'
    hs1_ip_address = '10.0.10.1'
    hs2_ip_address = '10.0.10.2'
    hs1_ip_address_with_mask = hs1_ip_address + '/' + ip_address_mask
    hs2_ip_address_with_mask = hs2_ip_address + '/' + ip_address_mask
    sw1_lag_ip_address = '10.0.0.1'
    sw2_lag_ip_address = '10.0.0.2'
    sw1_lag_id = '10'
    sw2_lag_id = '20'
    vlan_identifier = '8'
    number_pings = 5

    assert sw1 is not None
    assert sw2 is not None
    assert hs1 is not None
    assert hs2 is not None

    ports_sw1 = list()
    ports_sw2 = list()
    port_labels = ['1', '2', '3']

    step("Mapping interfaces")
    for port in port_labels:
        ports_sw1.append(sw1.ports[port])
        ports_sw2.append(sw2.ports[port])

    step("Sorting the port list")
    ports_sw1.sort()
    ports_sw2.sort()

    step("Turning on all interfaces used in this test")
    for port in ports_sw1:
        turn_on_interface(sw1, port)

    for port in ports_sw2:
        turn_on_interface(sw2, port)

    step("Verify all interface are up")
    verify_turn_on_interfaces(sw1, ports_sw1)
    verify_turn_on_interfaces(sw2, ports_sw2)

    step("Assign an IP address on the same range to each workstation")
    hs1.libs.ip.interface('1', addr=hs1_ip_address_with_mask, up=True)
    hs2.libs.ip.interface('1', addr=hs2_ip_address_with_mask, up=True)

    step('Creating VLAN in both switches')
    create_vlan(sw1, vlan_identifier)
    create_vlan(sw2, vlan_identifier)

    step("Create LAG in both switches")
    create_lag(sw1, sw1_lag_id, 'off')
    create_lag(sw2, sw2_lag_id, 'off')

    step("Associate interfaces [2, 3] to LAG in both switches")
    for intf in ports_sw1[1:3]:
        associate_interface_to_lag(sw1, intf, sw1_lag_id)

    for intf in ports_sw2[1:3]:
        associate_interface_to_lag(sw2, intf, sw2_lag_id)

    step("Configure LAGs and workstations interfaces with same VLAN")
    associate_vlan_to_lag(sw1, vlan_identifier, sw1_lag_id)
    associate_vlan_to_lag(sw2, vlan_identifier, sw2_lag_id)
    associate_vlan_to_l2_interface(sw1, vlan_identifier, ports_sw1[0])
    associate_vlan_to_l2_interface(sw2, vlan_identifier, ports_sw2[0])

    step("Test ping between clients")
    verify_connectivity_between_hosts(hs1, hs1_ip_address, hs2, hs2_ip_address)

    step("Assign IP on the same range to LAG in both switches")
    assign_ip_to_lag(sw1, sw1_lag_id, sw1_lag_ip_address, ip_address_mask)
    assign_ip_to_lag(sw2, sw2_lag_id, sw2_lag_ip_address, ip_address_mask)

    step(" Ping between workstations should fail")
    check_connectivity_between_hosts(hs1, hs1_ip_address, hs2, hs2_ip_address,
                                     number_pings, False)

    step("Ping between switches should succeed")
    check_connectivity_between_switches(sw1, sw1_lag_ip_address, sw2,
                                        sw2_lag_ip_address, number_pings,
                                        True)

    step("Configure LAGs with VLAN")
    associate_vlan_to_lag(sw1, vlan_identifier, sw1_lag_id)
    associate_vlan_to_lag(sw2, vlan_identifier, sw2_lag_id)

    step("Ping between workstations should succeed")
    verify_connectivity_between_hosts(hs1, hs1_ip_address, hs2, hs2_ip_address)

    step("Ping between switches should fail")
    check_connectivity_between_switches(sw1, sw1_lag_ip_address, sw2,
                                        sw2_lag_ip_address, number_pings,
                                        False)
Beispiel #17
0
def test_ip_config_case_1(topology, step):
    """
    Case 1:
        Verify the correct configuration of ip address
    """
    sw1 = topology.get('sw1')
    ip_address_mask = '24'
    ip_address = '10.0.0.1'
    ip_address_complete = '10.0.0.1/24'
    ip_address_secondary = '20.0.0.1'
    ip_address_secondary_complete = '20.0.0.1/24'
    sw1_lag_id = '10'

    assert sw1 is not None

    step("Create LAG in switch 1")
    create_lag(sw1, sw1_lag_id, 'off')

    step("Assign IP to LAG 1")
    assign_ip_to_lag(sw1, sw1_lag_id, ip_address, ip_address_mask)

    step("Assign IP secondaries to LAG 1")
    assign_secondary_ip_to_lag(sw1, sw1_lag_id, ip_address_secondary,
                               ip_address_mask)

    step("Verify IP configuration")
    lag_name = 'lag{sw1_lag_id}'.format(**locals())
    lag_config = sw1.libs.vtysh.show_interface(lag_name)
    assert lag_config['ipv4'] == ip_address_complete,\
        "LAG IP address is not properly configured - Failed"
    assert lag_config['ipv4_secondary'] == ip_address_secondary_complete,\
        "LAG IP secondary address is not properly configured - Failed"

    step("Delete primary IP address")
    not_deleted = False
    try:
        delete_ip_from_lag(sw1, sw1_lag_id, ip_address, ip_address_mask)
    except:
        not_deleted = True

    step("Verify primary IP address is not deleted")
    lag_config = sw1.libs.vtysh.show_interface(lag_name)
    assert not_deleted and lag_config['ipv4'] == ip_address_complete,\
        "LAG IP address is not properly configured - Failed"

    step("Delete secondary IP address")
    delete_secondary_ip_from_lag(sw1, sw1_lag_id, ip_address_secondary,
                                 ip_address_mask)

    step("Verify secondary IP address was deleted")
    lag_config = sw1.libs.vtysh.show_interface(lag_name)
    assert lag_config['ipv4_secondary'] != ip_address_secondary_complete,\
        "LAG IP secondary address was not deleted - Failed"

    step("Delete primary IP address")
    delete_ip_from_lag(sw1, sw1_lag_id, ip_address, ip_address_mask)

    step("Verify primary IP address is deleted")
    lag_config = sw1.libs.vtysh.show_interface(lag_name)
    assert lag_config['ipv4'] != ip_address_complete,\
        "LAG IP primary address was not deleted - Failed"
Beispiel #18
0
def test_show_lacp_events(topology, step):
    """Test output for show events.

    Main objective is to configure two switches with
    dynamic LAG (active/passive)
    Add and remove interfaces and turn off one of the LAGs
    Call show events to see results
    """

    # VID for testing
    test_vlan = '2'

    # LAG ID for testing
    test_lag = '2'
    test_lag_if = 'lag' + test_lag

    # interfaces to be added to LAG
    lag_intfs = ['1', '3']

    # interface connected to host
    host_intf = '4'

    # hosts addresses
    hs1_addr = '10.0.11.10'
    hs2_addr = '10.0.11.11'

    show_event_lacp_cmd = 'show events category lacp'
    removed_intf = '2'

    sw1 = topology.get('sw1')
    sw2 = topology.get('sw2')
    hs1 = topology.get('hs1')
    hs2 = topology.get('hs2')

    step('Verifying switches are not None')
    assert sw1 is not None, 'Topology failed getting object sw1'
    assert sw2 is not None, 'Topology failed getting object sw2'

    step('Verifying hosts are not None')
    assert hs1 is not None, 'Topology failed getting object hs1'
    assert hs2 is not None, 'Topology failed getting object hs2'

    step('Turning on interfaces')
    for switch in [sw1, sw2]:
        for intf in lag_intfs + [removed_intf, host_intf]:
            turn_on_interface(switch, intf)

    step('Verifying interfaces from Switch 1 are Up')
    verify_turn_on_interfaces(sw1, lag_intfs + [removed_intf, host_intf])

    step('Verifying interfaces from Switch 2 are Up')
    verify_turn_on_interfaces(sw1, lag_intfs + [removed_intf, host_intf])

    step('Creating VLAN (%s) on Switch 1' % test_vlan)
    create_vlan(sw1, test_vlan)

    step('Creating VLAN (%s) on Switch 2' % test_vlan)
    create_vlan(sw2, test_vlan)

    step('Creating LAG (%s) on Switch 1' % test_lag)
    create_lag(sw1, test_lag, 'active')
    config_lacp_rate(sw1, test_lag, True)
    associate_vlan_to_lag(sw1, test_vlan, test_lag)

    step('Creating LAG (%s) on Switch 2' % test_lag)
    create_lag(sw2, test_lag, 'passive')
    config_lacp_rate(sw2, test_lag, True)
    associate_vlan_to_lag(sw2, test_vlan, test_lag)

    for switch in [sw1, sw2]:
        for intf in lag_intfs + [removed_intf]:
            step('Assigning interface %s to LAG %s' % (intf, test_lag))
            associate_interface_to_lag(switch, intf, test_lag)

        step('Associating VLAN %s to host interface %s' % (test_vlan,
                                                           host_intf))
        associate_vlan_to_l2_interface(switch, test_vlan, host_intf)

    step('Configuring interface on Host 1')
    hs1.libs.ip.interface('1',
                          addr='{hs1_addr}/24'.format(**locals()),
                          up=True)

    step('Configuring interface on Host 2')
    hs2.libs.ip.interface('1',
                          addr='{hs2_addr}/24'.format(**locals()),
                          up=True)

    step('Verifying connectivity between hosts (Successful)')
    verify_connectivity_between_hosts(hs1, hs1_addr, hs2, hs2_addr, True)

    step('Removing interface (%s) from LAG (%s)' % (removed_intf, test_lag))
    remove_interface_from_lag(sw1, removed_intf, test_lag)

    step('Removing interface (%s) from LAG (%s)' % (removed_intf, test_lag))
    remove_interface_from_lag(sw2, removed_intf, test_lag)

    output = sw1(show_event_lacp_cmd, shell='vtysh')

    assert '|15007|LOG_INFO|LACP system ID set to'\
        and '|15006|LOG_INFO|LACP mode set to active for LAG {test_lag}'\
        .format(**locals())\
        and '|15001|LOG_INFO|Dynamic LAG {test_lag} created'\
        .format(**locals())\
        and '|15008|LOG_INFO|LACP rate set to fast for LAG {test_lag}'\
        .format(**locals())\
        and '|15004|LOG_INFO|Interface {removed_intf} removed from '\
        'LAG {test_lag}'.format(**locals())\
        in output

    for intf in lag_intfs + [removed_intf]:
        assert '|15003|LOG_INFO|Interface {intf} added to LAG {test_lag}'\
            .format(**locals())\
            and '|15009|LOG_INFO|Partner is detected for interface {intf}'\
            ' LAG {test_lag}'.format(**locals())\
            in output

    output = sw2(show_event_lacp_cmd, shell='vtysh')

    assert '|15007|LOG_INFO|LACP system ID set to'\
        and '|15006|LOG_INFO|LACP mode set to passive for LAG {test_lag}'\
        .format(**locals())\
        and '|15001|LOG_INFO|Dynamic LAG {test_lag} created'\
        .format(**locals())\
        and '|15008|LOG_INFO|LACP rate set to fast for LAG {test_lag}'\
        .format(**locals())\
        and '|15004|LOG_INFO|Interface {removed_intf} removed from '\
        'LAG {test_lag}'.format(**locals())\
        in output

    for intf in lag_intfs + [removed_intf]:
        assert '|15003|LOG_INFO|Interface {intf} added to LAG {test_lag}'\
            .format(**locals())\
            and '|15009|LOG_INFO|Partner is detected for interface {intf}'\
            ' LAG {test_lag}'.format(**locals())\
            in output

    with sw2.libs.vtysh.ConfigInterfaceLag(test_lag) as ctx:
        ctx.no_lacp_mode_passive()

    step('Verifying connectivity between hosts (Unsuccessful)')
    verify_connectivity_between_hosts(hs1, hs1_addr, hs2, hs2_addr, False)

    output = sw1(show_event_lacp_cmd, shell='vtysh')

    for intf in lag_intfs:
        assert '|15011|LOG_WARN|Partner is lost (timed out) '\
            'for interface {intf} '.format(**locals())\
            in output

    output = sw2(show_event_lacp_cmd, shell='vtysh')
    assert '|15006|LOG_INFO|LACP mode set to off for '\
        'LAG {test_lag}'.format(**locals())\
        and '|ops-lacpd|15002|LOG_INFO|Dynamic LAG {test_lag} deleted'\
        .format(**locals())\
        in output
Beispiel #19
0
def configure_lag(sw, step):
    step('Create LAG on sw1')
    create_lag(sw, LAG_ID, 'active')
    # Set LACP rate to fast
    set_lag_rate(sw, LAG_ID, 'fast')
    verify_lag_config(sw, LAG_ID, [], heartbeat_rate='fast', mode='active')
def test_show_lacp_interface_case_1(topology, step):
    """
    Case 1:
        Verify the correct output when running the command show lacp
        interface when LAG is changed from dynamic to static
    """
    sw1 = topology.get('sw1')
    sw2 = topology.get('sw2')
    lag_id = '1'
    agg_name = 'lag' + lag_id

    assert sw1 is not None
    assert sw2 is not None

    ports_sw1 = list()
    ports_sw2 = list()
    port_labels = ['1', '2']

    step("Mapping interfaces")
    for port in port_labels:
        ports_sw1.append(sw1.ports[port])
        ports_sw2.append(sw2.ports[port])

    step("Turning on all interfaces used in this test")
    for port in ports_sw1:
        turn_on_interface(sw1, port)

    for port in ports_sw2:
        turn_on_interface(sw2, port)

    step("Verify all interface are up")
    verify_turn_on_interfaces(sw1, ports_sw1)
    verify_turn_on_interfaces(sw2, ports_sw2)

    mac_addr_sw1 = sw1.libs.vtysh.show_interface('1')['mac_address']
    mac_addr_sw2 = sw2.libs.vtysh.show_interface('1')['mac_address']
    assert mac_addr_sw1 != mac_addr_sw2, \
        'Mac address of interfaces in sw1 is equal to mac address of ' + \
        'interfaces in sw2. This is a test framework problem. Dynamic ' + \
        'LAGs cannot work properly under this condition. Refer to Taiga ' + \
        'issue #1251.'

    step("Create LAG in both switches")
    create_lag(sw1, lag_id, 'active')
    create_lag(sw2, lag_id, 'active')

    step("Associate interfaces [1, 2] to LAG in both switches")
    for intf in ports_sw1[0:2]:
        associate_interface_to_lag(sw1, intf, lag_id)

    for intf in ports_sw2[0:2]:
        associate_interface_to_lag(sw2, intf, lag_id)

    step("Verify show lacp interfaces")
    output = sw1.libs.vtysh.show_lacp_interface()
    assert output['actor']['1']['agg_name'] == agg_name,\
        "Interface 1 is not in LAG 10"
    assert output['actor']['2']['agg_name'] == agg_name,\
        "Interface 2 is not in LAG 10"
    assert output['partner']['1']['agg_name'] == agg_name,\
        "Interface 1 is not in LAG 20"
    assert output['partner']['2']['agg_name'] == agg_name,\
        "Interface 2 is not in LAG 20"

    step("Set lacp mode to 'off' on both switches")
    lag_no_active(sw1, lag_id)
    lag_no_active(sw2, lag_id)

    step("Verify show lacp interfaces")
    """
    Only interface and aggregation name should be present
    lacpd state should be erased (false)
    """
    output = sw1.libs.vtysh.show_lacp_interface()
    for actor_partner in output:
        for intf in output[actor_partner]:
            assert output[actor_partner][intf]['intf'] == intf,\
                "Key intf should be 1"
            assert output[actor_partner][intf]['agg_name'] == agg_name,\
                "Key agg_name should be %s" % agg_name
            assert output[actor_partner][intf]['port_id'] == '',\
                "Key port_id should be empty"
            assert output[actor_partner][intf]['port_priority'] == '',\
                "Key port_priority should be empty"
            assert output[actor_partner][intf]['key'] == '',\
                "Key key should be empty"
            assert output[actor_partner][intf]['system_id'] == '',\
                "Key system_id should be empty"
            assert output[actor_partner][intf]['system_priority'] == '',\
                "Key system_priority should be empty"
            for flag in output[actor_partner][intf]['state']:
                assert output[actor_partner][intf]['state'][flag] is False,\
                    "Actor state shoud be false"
def test_l2_dynamic_lag_ping_case_1(topology, step):
    """
    Case 1:
        Verify a ping between 2 workstations connected by 2 switches configured
        with L2 dynamic LAGs works properly.
    """
    sw1 = topology.get('sw1')
    sw2 = topology.get('sw2')
    hs1 = topology.get('hs1')
    hs2 = topology.get('hs2')
    hs1_ip_address_with_mask = '10.0.10.1/24'
    hs2_ip_address_with_mask = '10.0.10.2/24'
    hs1_ip_address = '10.0.10.1'
    hs2_ip_address = '10.0.10.2'
    sw1_lag_id = '10'
    sw2_lag_id = '20'
    vlan_identifier = '8'
    number_pings = 5

    assert sw1 is not None
    assert sw2 is not None
    assert hs1 is not None
    assert hs2 is not None

    ports_sw1 = list()
    ports_sw2 = list()
    port_labels = ['1', '2', '3']

    step("Mapping interfaces")
    for port in port_labels:
        ports_sw1.append(sw1.ports[port])
        ports_sw2.append(sw2.ports[port])

    step("Sorting the port list")
    ports_sw1.sort()
    ports_sw2.sort()

    step("Turning on all interfaces used in this test")
    for port in ports_sw1:
        turn_on_interface(sw1, port)

    for port in ports_sw2:
        turn_on_interface(sw2, port)

    step("Validate interfaces are turn on")
    verify_turn_on_interfaces(sw1, ports_sw1)
    verify_turn_on_interfaces(sw1, ports_sw2)

    step("Assign an IP address on the same range to each workstation")
    hs1.libs.ip.interface('1', addr=hs1_ip_address_with_mask, up=True)
    hs2.libs.ip.interface('1', addr=hs2_ip_address_with_mask, up=True)

    step('Creating VLAN in both switches')
    create_vlan(sw1, vlan_identifier)
    create_vlan(sw2, vlan_identifier)

    step("Create LAG in both switches")
    create_lag(sw1, sw1_lag_id, 'active')
    create_lag(sw2, sw2_lag_id, 'active')

    step("Associate interfaces [2, 3] to LAG in both switches")
    for port in ports_sw1[1:3]:
        associate_interface_to_lag(sw1, port, sw1_lag_id)
    for port in ports_sw2[1:3]:
        associate_interface_to_lag(sw2, port, sw2_lag_id)

    step("Verify LAG configuration")
    verify_lag_config(sw1, sw1_lag_id, ports_sw1[1:3], mode='active')
    verify_lag_config(sw2, sw2_lag_id, ports_sw2[1:3], mode='active')

    step("Configure LAGs and workstations interfaces with same VLAN")
    associate_vlan_to_lag(sw1, vlan_identifier, sw1_lag_id)
    associate_vlan_to_lag(sw2, vlan_identifier, sw2_lag_id)
    associate_vlan_to_l2_interface(sw1, vlan_identifier, ports_sw1[0])
    associate_vlan_to_l2_interface(sw2, vlan_identifier, ports_sw2[0])

    step("Verify if LAG is synchronized")
    verify_state_sync_lag(sw1, ports_sw1[1:3], LOCAL_STATE, 'active')
    verify_state_sync_lag(sw1, ports_sw1[1:3], REMOTE_STATE, 'active')

    step("Get information for LAG in interface 2 with both switches")
    map_lacp_sw1 = sw1.libs.vtysh.show_lacp_interface(
        find_device_label(sw1, ports_sw1[1]))
    map_lacp_sw2 = sw2.libs.vtysh.show_lacp_interface(
        find_device_label(sw2, ports_sw2[1]))

    step("Validate the LAG was created in both switches")
    validate_lag_name(map_lacp_sw1, sw1_lag_id)
    validate_local_key(map_lacp_sw1, sw1_lag_id)
    validate_remote_key(map_lacp_sw1, sw2_lag_id)
    validate_lag_state_sync(map_lacp_sw1, LOCAL_STATE)
    validate_lag_state_sync(map_lacp_sw1, REMOTE_STATE)

    validate_lag_name(map_lacp_sw2, sw2_lag_id)
    validate_local_key(map_lacp_sw2, sw2_lag_id)
    validate_remote_key(map_lacp_sw2, sw1_lag_id)
    validate_lag_state_sync(map_lacp_sw2, LOCAL_STATE)
    validate_lag_state_sync(map_lacp_sw2, REMOTE_STATE)

    step("Ping workstation 2 from workstation 1 and viceversa")
    check_connectivity_between_hosts(hs1, hs1_ip_address, hs2, hs2_ip_address,
                                     number_pings, True)

    # ops-lacpd is stopped so that it produces the gcov coverage data
    #
    # Daemons from both switches will dump the coverage data to the
    # same file but the data write is done on daemon exit only.
    # The systemctl command waits until the process exits to return the
    # prompt and the shell function waits for the command to return,
    # therefore it is safe to stop the ops-lacpd daemons sequentially
    # This ensures that data from both processes is captured.
    sw1("systemctl stop ops-lacpd", shell="bash")
    sw2("systemctl stop ops-lacpd", shell="bash")
Beispiel #22
0
def test_l3_static_lag_ping_case_1(topology, step):
    """
    Case 1:
        Verify a simple ping works properly between 2 switches configured
        with static L3 LAGs. Each LAG having 3 interfaces.
    """
    sw1 = topology.get('sw1')
    sw2 = topology.get('sw2')
    sw1_lag_id = '100'
    sw2_lag_id = '200'
    sw1_lag_ip_address = '10.0.0.1'
    sw2_lag_ip_address = '10.0.0.2'
    ip_address_mask = '24'
    number_pings = 10

    assert sw1 is not None
    assert sw2 is not None

    port_labels = ['1', '2', '3']
    ports_sw1 = list()
    ports_sw2 = list()

    step("Mapping interfaces")
    for port in port_labels:
        ports_sw1.append(sw1.ports[port])
        ports_sw2.append(sw2.ports[port])

    step("Sorting the port list")
    ports_sw1.sort()
    ports_sw2.sort()

    p11 = ports_sw1[0]
    p12 = ports_sw1[1]
    p13 = ports_sw1[2]
    p21 = ports_sw2[0]
    p22 = ports_sw2[1]
    p23 = ports_sw2[2]

    step("Turning on all interfaces used in this test")
    ports_sw1 = [p11, p12, p13]
    for port in ports_sw1:
        turn_on_interface(sw1, port)

    ports_sw2 = [p21, p22, p23]
    for port in ports_sw2:
        turn_on_interface(sw2, port)

    step("Create LAG in both switches")
    create_lag(sw1, sw1_lag_id, 'off')
    create_lag(sw2, sw2_lag_id, 'off')

    step("Associate interfaces [1,2, 3] to lag in both switches")
    associate_interface_to_lag(sw1, p11, sw1_lag_id)
    associate_interface_to_lag(sw1, p12, sw1_lag_id)
    associate_interface_to_lag(sw1, p13, sw1_lag_id)
    associate_interface_to_lag(sw2, p21, sw2_lag_id)
    associate_interface_to_lag(sw2, p22, sw2_lag_id)
    associate_interface_to_lag(sw2, p23, sw2_lag_id)

    step("#### Validate interfaces are turn on ####")
    verify_turn_on_interfaces(sw1, ports_sw1)
    verify_turn_on_interfaces(sw2, ports_sw2)

    step("Assign IP to LAGs")
    assign_ip_to_lag(sw1, sw1_lag_id, sw1_lag_ip_address, ip_address_mask)
    assign_ip_to_lag(sw2, sw2_lag_id, sw2_lag_ip_address, ip_address_mask)

    step("Ping switch2 from switch1 and viceversa")
    check_connectivity_between_switches(sw1, sw1_lag_ip_address, sw2,
                                        sw2_lag_ip_address, number_pings, True)
def test_dynamic_modify_minimum_members(topology, step):

    sw1 = topology.get('sw1')
    sw2 = topology.get('sw2')
    hs1 = topology.get('hs1')
    hs2 = topology.get('hs2')

    assert sw1 is not None
    assert sw2 is not None
    assert hs1 is not None
    assert hs2 is not None

    ports_sw1 = list()
    ports_sw2 = list()
    port_labels = ['1', '2', '3', '4']

    lag_id = '1'
    vlan_id = '900'
    mode_active = 'active'
    mode_passive = 'passive'

    step("### Mapping interfaces ###")
    for port in port_labels:
        ports_sw1.append(sw1.ports[port])
        ports_sw2.append(sw2.ports[port])

    step("#### Turning on interfaces in sw1 ###")
    for port in ports_sw1:
        turn_on_interface(sw1, port)

    step("#### Turning on interfaces in sw2 ###")
    for port in ports_sw2:
        turn_on_interface(sw2, port)

    step("#### Validate interfaces are turn on ####")
    verify_turn_on_interfaces(sw1, ports_sw1)
    verify_turn_on_interfaces(sw2, ports_sw2)

    step("##### Create LAGs ####")
    create_lag(sw1, lag_id, mode_active)
    create_lag(sw2, lag_id, mode_passive)

    step("#### Associate Interfaces to LAG ####")
    for intf in ports_sw1[1:4]:
        associate_interface_to_lag(sw1, intf, lag_id)

    for intf in ports_sw2[1:4]:
        associate_interface_to_lag(sw2, intf, lag_id)

    step("#### Verify LAG configuration ####")
    verify_lag_config(sw1, lag_id, ports_sw1[1:4], mode=mode_active)
    verify_lag_config(sw2, lag_id, ports_sw2[1:4], mode=mode_passive)

    step("#### Configure VLANs on switches ####")
    create_vlan(sw1, vlan_id)
    create_vlan(sw2, vlan_id)

    associate_vlan_to_l2_interface(sw1, vlan_id, ports_sw1[0])
    associate_vlan_to_lag(sw1, vlan_id, lag_id)

    associate_vlan_to_l2_interface(sw2, vlan_id, ports_sw2[0])
    associate_vlan_to_lag(sw2, vlan_id, lag_id)

    step("#### Configure workstations ####")
    hs1.libs.ip.interface('1', addr='140.1.1.10/24', up=True)
    hs2.libs.ip.interface('1', addr='140.1.1.11/24', up=True)

    step("### Verify if LAG is synchronized")
    verify_state_sync_lag(sw1, ports_sw1[1:4], LOCAL_STATE, mode_active)
    verify_state_sync_lag(sw1, ports_sw1[1:4], REMOTE_STATE, mode_passive)

    step("#### Test ping between clients work ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11', 5,
                                     True)

    step("### Remove one interface from each LAG ###")
    remove_interface_from_lag(sw1, ports_sw1[1], lag_id)
    remove_interface_from_lag(sw2, ports_sw2[1], lag_id)

    step("### Validate if the interface was removed of LAG ###")
    validate_interface_not_in_lag(sw1, ports_sw1[1], lag_id)
    validate_interface_not_in_lag(sw2, ports_sw2[1], lag_id)

    step("### Verify if LAG is synchronized")
    verify_state_sync_lag(sw1, ports_sw1[2:4], LOCAL_STATE, mode_active)
    verify_state_sync_lag(sw1, ports_sw1[2:4], REMOTE_STATE, mode_passive)

    step("#### Test ping between clients work ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11', 5,
                                     True)

    step("### Turning on interface ###")
    turn_on_interface(sw1, ports_sw1[1])
    turn_on_interface(sw2, ports_sw2[1])

    step("### Validate interface is turn on ###")
    verify_turn_on_interfaces(sw1, ports_sw1[1])
    verify_turn_on_interfaces(sw2, ports_sw2[1])

    step("### Add back the interface ###")
    associate_interface_to_lag(sw1, ports_sw1[1], lag_id)
    associate_interface_to_lag(sw2, ports_sw2[1], lag_id)

    step("### Verify if LAG is synchronized")
    verify_state_sync_lag(sw1, ports_sw1[1:4], LOCAL_STATE, mode_active)
    verify_state_sync_lag(sw1, ports_sw1[1:4], REMOTE_STATE, mode_passive)

    step("#### Test ping between clients work ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11', 5,
                                     True)

    step("### Remove all the interfaces from the LAGs ###")
    for intf in ports_sw1[1:4]:
        remove_interface_from_lag(sw1, intf, lag_id)

    for intf in ports_sw2[1:4]:
        remove_interface_from_lag(sw2, intf, lag_id)

    step("### Verify if the interfaces were removed from the LAGs ###")
    for intf in ports_sw1[1:4]:
        validate_interface_not_in_lag(sw1, intf, lag_id)

    for intf in ports_sw2[1:4]:
        validate_interface_not_in_lag(sw2, intf, lag_id)

    step("#### Negative test ping between clients ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11', 5,
                                     False)

    step("#### Turning on interfaces in sw1 ###")
    for port in ports_sw1[1:4]:
        turn_on_interface(sw1, port)

    step("#### Turning on interfaces in sw2 ###")
    for port in ports_sw2[1:4]:
        turn_on_interface(sw2, port)

    step("#### Validate interfaces are turn on ####")
    verify_turn_on_interfaces(sw1, ports_sw1)
    verify_turn_on_interfaces(sw2, ports_sw2)

    step("#### Associate Interfaces to LAG ####")
    for intf in ports_sw1[1:4]:
        associate_interface_to_lag(sw1, intf, lag_id)

    for intf in ports_sw2[1:4]:
        associate_interface_to_lag(sw2, intf, lag_id)

    step("### Verify if LAG is synchronized")
    verify_state_sync_lag(sw1, ports_sw1[1:4], LOCAL_STATE, mode_active)
    verify_state_sync_lag(sw1, ports_sw1[1:4], REMOTE_STATE, mode_passive)

    step("#### Test ping between clients work ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11', 5,
                                     True)

    step("### Remove two the interfaces from the LAGs ###")
    for intf in ports_sw1[1:3]:
        remove_interface_from_lag(sw1, intf, lag_id)

    for intf in ports_sw2[1:3]:
        remove_interface_from_lag(sw2, intf, lag_id)

    step("### Verify if the interfaces were removed from the LAGs ###")
    for intf in ports_sw1[1:3]:
        validate_interface_not_in_lag(sw1, intf, lag_id)

    for intf in ports_sw2[1:3]:
        validate_interface_not_in_lag(sw2, intf, lag_id)

    step("### Verify if LAG is synchronized")
    verify_state_sync_lag(sw1, ports_sw1[3], LOCAL_STATE, mode_active)
    verify_state_sync_lag(sw1, ports_sw1[3], REMOTE_STATE, mode_passive)

    step("#### Test ping between clients work ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11', 5,
                                     True)

    step("#### Turning on interfaces in sw1 ###")
    for port in ports_sw1[1:3]:
        turn_on_interface(sw1, port)

    step("#### Turning on interfaces in sw2 ###")
    for port in ports_sw2[1:3]:
        turn_on_interface(sw2, port)

    step("#### Validate interfaces are turn on ####")
    verify_turn_on_interfaces(sw1, ports_sw1)
    verify_turn_on_interfaces(sw2, ports_sw2)

    step("### Add back the interface ###")
    for intf in ports_sw1[1:3]:
        associate_interface_to_lag(sw1, intf, lag_id)

    for intf in ports_sw1[1:3]:
        associate_interface_to_lag(sw2, intf, lag_id)

    step("### Verify if LAG is synchronized")
    verify_state_sync_lag(sw1, ports_sw1[1:4], LOCAL_STATE, mode_active)
    verify_state_sync_lag(sw1, ports_sw1[1:4], REMOTE_STATE, mode_passive)

    step("#### Test ping between clients work ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11', 5,
                                     True)
def test_l2_l3_interface_switch_case_1(topology, step):
    """
    Case 1:
        This test verifies the functionality of 2 LAGs when an interface is
        changed from a L2 LAG to a L3 LAG and viceversa.
    """
    sw1 = topology.get('sw1')
    sw2 = topology.get('sw2')
    hs1 = topology.get('hs1')
    hs2 = topology.get('hs2')

    assert sw1 is not None
    assert sw2 is not None
    assert hs1 is not None
    assert hs2 is not None

    ip_address_mask = '24'
    hs1_ip_address = '10.0.10.1'
    hs2_ip_address = '10.0.10.2'
    hs1_ip_address_with_mask = hs1_ip_address + '/' + ip_address_mask
    hs2_ip_address_with_mask = hs2_ip_address + '/' + ip_address_mask
    sw1_l3_lag_ip_address = '10.0.0.1'
    sw2_l3_lag_ip_address = '10.0.0.2'
    l2_lag_id = '2'
    l3_lag_id = '3'
    vlan_identifier = '8'

    ports_sw1 = list()
    ports_sw2 = list()

    step("Mapping interfaces")
    for port in port_labels:
        ports_sw1.append(sw1.ports[port])
        ports_sw2.append(sw2.ports[port])
    step("Sorting the port list")
    ports_sw1.sort()
    ports_sw2.sort()

    p11 = ports_sw1[0]
    p12 = ports_sw1[1]
    p13 = ports_sw1[2]
    p14 = ports_sw1[3]
    p21 = ports_sw2[0]
    p22 = ports_sw2[1]
    p23 = ports_sw2[2]
    p24 = ports_sw2[3]

    step("Turning on all interfaces used in this test")
    for port in ports_sw1:
        turn_on_interface(sw1, port)

    for port in ports_sw2:
        turn_on_interface(sw2, port)

    step("Verify all interface are up")
    verify_turn_on_interfaces(sw1, ports_sw1)
    verify_turn_on_interfaces(sw2, ports_sw2)

    step("Assign an IP address on the same range to each workstation")
    hs1.libs.ip.interface('1', addr=hs1_ip_address_with_mask, up=True)
    hs2.libs.ip.interface('1', addr=hs2_ip_address_with_mask, up=True)

    step('Creating VLAN in both switches')
    create_vlan(sw1, vlan_identifier)
    create_vlan(sw2, vlan_identifier)

    step("Create L2 LAG in both switches")
    create_lag(sw1, l2_lag_id, 'off')
    create_lag(sw2, l2_lag_id, 'off')

    step("Associate interfaces [1, 2] to L2 LAG in both switches")
    associate_interface_to_lag(sw1, p11, l2_lag_id)
    associate_interface_to_lag(sw1, p12, l2_lag_id)
    associate_interface_to_lag(sw2, p21, l2_lag_id)
    associate_interface_to_lag(sw2, p22, l2_lag_id)

    step("Verify LAG configuration")
    verify_lag_config(sw1, l2_lag_id, [p11, p12])
    verify_lag_config(sw2, l2_lag_id, [p21, p22])

    step("Create L3 LAG in both switches")
    create_lag(sw1, l3_lag_id, 'off')
    create_lag(sw2, l3_lag_id, 'off')

    step("Associate interface 3 to L3 LAG in both switches")
    associate_interface_to_lag(sw1, p13, l3_lag_id)
    associate_interface_to_lag(sw2, p23, l3_lag_id)

    step("Verify LAG configuration")
    verify_lag_config(sw1, l3_lag_id, [p13])
    verify_lag_config(sw2, l3_lag_id, [p23])

    step("Configure LAGs and workstations interfaces with same VLAN")
    associate_vlan_to_lag(sw1, vlan_identifier, l2_lag_id)
    associate_vlan_to_lag(sw2, vlan_identifier, l2_lag_id)
    associate_vlan_to_l2_interface(sw1, vlan_identifier, p14)
    associate_vlan_to_l2_interface(sw2, vlan_identifier, p24)

    step("Assign IP on the same range to LAG in both switches")
    assign_ip_to_lag(sw1, l3_lag_id, sw1_l3_lag_ip_address, ip_address_mask)
    assign_ip_to_lag(sw2, l3_lag_id, sw2_l3_lag_ip_address, ip_address_mask)

    step("Test ping between clients work")
    verify_connectivity_between_hosts(hs1, hs1_ip_address, hs2, hs2_ip_address)
    verify_connectivity_between_switches(sw1, sw1_l3_lag_ip_address, sw2,
                                         sw2_l3_lag_ip_address)

    step("Associate interface 2 to L3 LAG in both switches")
    associate_interface_to_lag(sw1, p12, l3_lag_id)
    associate_interface_to_lag(sw2, p22, l3_lag_id)

    step("Test ping between clients work")
    verify_connectivity_between_hosts(hs1, hs1_ip_address, hs2, hs2_ip_address)
    verify_connectivity_between_switches(sw1, sw1_l3_lag_ip_address, sw2,
                                         sw2_l3_lag_ip_address)

    step("Associate interface 2 to L2 LAG in both switches")
    associate_interface_to_lag(sw1, p12, l2_lag_id)
    associate_interface_to_lag(sw2, p22, l2_lag_id)

    step("Test ping between clients work")
    verify_connectivity_between_hosts(hs1, hs1_ip_address, hs2, hs2_ip_address)
    verify_connectivity_between_switches(sw1, sw1_l3_lag_ip_address, sw2,
                                         sw2_l3_lag_ip_address)

    step("Remove interface 2 from L2 LAG in both switches")
    remove_interface_from_lag(sw1, p12, l2_lag_id)
    remove_interface_from_lag(sw2, p22, l2_lag_id)

    step("Associate interface 2 to L3 LAG in both switches")
    associate_interface_to_lag(sw1, p12, l3_lag_id)
    associate_interface_to_lag(sw2, p22, l3_lag_id)

    step("Test ping between clients work")
    verify_connectivity_between_hosts(hs1, hs1_ip_address, hs2, hs2_ip_address)
    verify_connectivity_between_switches(sw1, sw1_l3_lag_ip_address, sw2,
                                         sw2_l3_lag_ip_address)

    step("Remove interface 2 from L3 LAG in both switches")
    remove_interface_from_lag(sw1, p12, l3_lag_id)
    remove_interface_from_lag(sw2, p22, l3_lag_id)

    step("Associate interface 2 to L2 LAG in both switches")
    associate_interface_to_lag(sw1, p12, l2_lag_id)
    associate_interface_to_lag(sw2, p22, l2_lag_id)

    step("Test ping between clients work")
    verify_connectivity_between_hosts(hs1, hs1_ip_address, hs2, hs2_ip_address)
    verify_connectivity_between_switches(sw1, sw1_l3_lag_ip_address, sw2,
                                         sw2_l3_lag_ip_address)
Beispiel #25
0
def test_l3_dynamic_lag_ping_case_1(topology, step):
    """
    Case 1:
        Verify a simple ping works properly between 2 switches configured
        with L3 dynamic LAGs. Each LAG having 3 interfaces.
    """
    sw1 = topology.get('sw1')
    sw2 = topology.get('sw2')

    step('### Verifying switches are not None ###')
    assert sw1 is not None, 'Topology failed getting object sw1'
    assert sw2 is not None, 'Topology failed getting object sw2'

    lag_id = '1'
    sw1_lag_ip_address = '10.0.0.1'
    sw2_lag_ip_address = '10.0.0.2'
    ip_address_mask = '24'
    mode_active = 'active'
    mode_passive = 'passive'

    ports_sw1 = list()
    ports_sw2 = list()
    # Remove unused port 3
    port_labels = ['1', '2']

    step("### Mapping interfaces from Docker ###")
    for port in port_labels:
        ports_sw1.append(sw1.ports[port])
        ports_sw2.append(sw2.ports[port])

    step("Sorting the port list")
    ports_sw1.sort()
    ports_sw2.sort()

    step("### Turning on all interfaces used in this test ###")
    for port in ports_sw1:
        turn_on_interface(sw1, port)

    for port in ports_sw2:
        turn_on_interface(sw2, port)

    step("#### Validate interfaces are turned on ####")
    verify_turn_on_interfaces(sw1, ports_sw1)
    verify_turn_on_interfaces(sw2, ports_sw2)

    # Modify hardcoded interfaces for dynamic interfaces
    mac_addr_sw1 = sw1.libs.vtysh.show_interface('1')['mac_address']
    mac_addr_sw2 = sw2.libs.vtysh.show_interface('1')['mac_address']
    assert mac_addr_sw1 != mac_addr_sw2,\
        'Mac address of interfaces in sw1 is equal to mac address of ' +\
        'interfaces in sw2. This is a test framework problem. Dynamic ' +\
        'LAGs cannot work properly under this condition. Refer to Taiga ' +\
        'issue #1251.'

    step("### Create LAG in both switches ###")
    create_lag(sw1, lag_id, 'active')
    create_lag(sw2, lag_id, 'passive')

    step("### Set LACP rate to fast ###")
    set_lacp_rate_fast(sw1, lag_id)
    set_lacp_rate_fast(sw2, lag_id)

    step("#### Associate Interfaces to LAG ####")
    for intf in ports_sw1:
        associate_interface_to_lag(sw1, intf, lag_id)

    for intf in ports_sw2:
        associate_interface_to_lag(sw2, intf, lag_id)

    step("### Assign IP to LAGs ###")
    assign_ip_to_lag(sw1, lag_id, sw1_lag_ip_address, ip_address_mask)
    assign_ip_to_lag(sw2, lag_id, sw2_lag_ip_address, ip_address_mask)

    step("#### Verify LAG configuration ####")
    verify_lag_config(sw1,
                      lag_id,
                      ports_sw1,
                      heartbeat_rate='fast',
                      mode=mode_active)
    verify_lag_config(sw2,
                      lag_id,
                      ports_sw2,
                      heartbeat_rate='fast',
                      mode=mode_passive)

    step("### Verify if LAG is synchronized")
    verify_state_sync_lag(sw1, ports_sw1, LOCAL_STATE, mode_active)
    verify_state_sync_lag(sw1, ports_sw1, REMOTE_STATE, mode_passive)
    verify_state_sync_lag(sw2, ports_sw2, LOCAL_STATE, mode_passive)
    verify_state_sync_lag(sw2, ports_sw2, REMOTE_STATE, mode_active)

    step("### Get information for LAG in interface 1 with both switches ###")
    map_lacp_sw1 = sw1.libs.vtysh.show_lacp_interface(ports_sw1[0])
    map_lacp_sw2 = sw2.libs.vtysh.show_lacp_interface(ports_sw2[0])

    step("### Validate the LAG was created in both switches ###")
    validate_local_key(map_lacp_sw1, lag_id)
    validate_remote_key(map_lacp_sw1, lag_id)
    validate_local_key(map_lacp_sw2, lag_id)
    validate_remote_key(map_lacp_sw2, lag_id)

    step("#### Test ping between switches work ####")
    verify_connectivity_between_switches(sw1,
                                         sw1_lag_ip_address,
                                         sw2,
                                         sw2_lag_ip_address,
                                         success=True)
Beispiel #26
0
def test_static_dynamic_tag_vlan(topology, step):

    sw1 = topology.get('sw1')
    sw2 = topology.get('sw2')
    hs1 = topology.get('hs1')
    hs2 = topology.get('hs2')

    assert sw1 is not None
    assert sw2 is not None
    assert hs1 is not None
    assert hs2 is not None

    ports_sw1 = list()
    ports_sw2 = list()
    port_labels = ['1', '2', '3']

    lag_id = '1'
    vlan_id = '10'
    mode_active = 'active'
    mode_passive = 'passive'

    step("### Mapping interfaces ###")
    for port in port_labels[:3]:
        ports_sw1.append(sw1.ports[port])

    for port in port_labels[:3]:
        ports_sw2.append(sw2.ports[port])

    step("#### Turning on interfaces in sw1 ###")
    for port in ports_sw1:
        turn_on_interface(sw1, port)

    step("#### Turning on interfaces in sw2 ###")
    for port in ports_sw2:
        turn_on_interface(sw2, port)

    step("#### Validate interfaces are turn on ####")
    verify_turn_on_interfaces(sw1, ports_sw1)
    verify_turn_on_interfaces(sw2, ports_sw2)

    mac_addr_sw1 = sw1.libs.vtysh.show_interface(1)['mac_address']
    mac_addr_sw2 = sw2.libs.vtysh.show_interface(1)['mac_address']
    assert mac_addr_sw1 != mac_addr_sw2, \
        'Mac address of interfaces in sw1 is equal to mac address of ' + \
        'interfaces in sw2. This is a test framework problem. Dynamic ' + \
        'LAGs cannot work properly under this condition. Refer to Taiga ' + \
        'issue #1251.'

    step("##### Create static LAGs ####")
    create_lag(sw1, lag_id, 'off')
    create_lag(sw2, lag_id, 'off')

    step("#### Associate Interfaces to LAG ####")
    for intf in ports_sw1[0:2]:
        associate_interface_to_lag(sw1, intf, lag_id)

    for intf in ports_sw2[0:2]:
        associate_interface_to_lag(sw2, intf, lag_id)

    step("#### Verify LAG configuration ####")
    verify_lag_config(sw1, lag_id, ports_sw1[0:2])
    verify_lag_config(sw2, lag_id, ports_sw2[0:2])

    step("#### Configure VLANs on switches ####")
    create_vlan(sw1, vlan_id)
    create_vlan(sw2, vlan_id)

    associate_vlan_to_lag(sw1, vlan_id, lag_id)
    associate_vlan_to_lag(sw2, vlan_id, lag_id)

    step("### Associate VLAN to L2 Interface ###")
    associate_vlan_to_l2_interface(sw1, vlan_id, ports_sw1[2])
    associate_vlan_to_l2_interface(sw2, vlan_id, ports_sw2[2])

    step("#### Configure workstations ####")
    hs1.libs.ip.interface('1', addr='192.168.1.10/24', up=True)
    hs2.libs.ip.interface('1', addr='192.168.1.11/24', up=True)

    step("#### Test ping between clients in the same vlan ####")
    verify_connectivity_between_hosts(hs1, '192.168.1.10', hs2, '192.168.1.11')

    step("##### Recreate static LAGs ####")
    create_lag(sw1, lag_id, 'off')
    create_lag(sw2, lag_id, 'off')

    step("#### Test ping between clients in the same vlan ####")
    verify_connectivity_between_hosts(hs1, '192.168.1.10', hs2, '192.168.1.11')

    step("##### Create dynamic LAGs ####")
    create_lag(sw1, lag_id, mode_active)
    create_lag(sw2, lag_id, mode_passive)

    step("#### Verify LAG configuration ####")
    verify_lag_config(sw1, lag_id, ports_sw1[0:2], mode=mode_active)
    verify_lag_config(sw2, lag_id, ports_sw2[0:2], mode=mode_passive)

    step("### Verify if LAG is synchronized")
    verify_state_sync_lag(sw1, ports_sw1[0:2], LOCAL_STATE, mode_active)
    verify_state_sync_lag(sw1, ports_sw1[0:2], REMOTE_STATE, mode_passive)

    check_connectivity_between_hosts(hs1, '192.168.1.10', hs2, '192.168.1.11',
                                     5, True)

    step("##### Recreate dynamic LAGs ####")
    create_lag(sw1, lag_id, mode_active)
    create_lag(sw2, lag_id, mode_passive)

    step("#### Verify LAG configuration ####")
    verify_lag_config(sw1, lag_id, ports_sw1[0:2], mode=mode_active)
    verify_lag_config(sw2, lag_id, ports_sw2[0:2], mode=mode_passive)

    step("### Verify if LAG is synchronized")
    verify_state_sync_lag(sw1, ports_sw1[0:2], LOCAL_STATE, mode_active)
    verify_state_sync_lag(sw1, ports_sw1[0:2], REMOTE_STATE, mode_passive)

    check_connectivity_between_hosts(hs1, '192.168.1.10', hs2, '192.168.1.11',
                                     5, True)
def test_static_negative_tag_untag_vlan(topology, step):

    sw1 = topology.get('sw1')
    sw2 = topology.get('sw2')
    hs1 = topology.get('hs1')
    hs2 = topology.get('hs2')
    hs3 = topology.get('hs3')

    assert sw1 is not None
    assert sw2 is not None
    assert hs1 is not None
    assert hs2 is not None
    assert hs3 is not None

    ports_sw1 = list()
    ports_sw2 = list()
    port_labels = ['1', '2', '3', '4']

    lag_id = '1'
    vlans_id = ['800', '900']

    step("### Mapping interfaces ###")
    for port in port_labels[:3]:
        ports_sw1.append(sw1.ports[port])

    for port in port_labels:
        ports_sw2.append(sw2.ports[port])

    step("#### Turning on interfaces in sw1 ###")
    for port in ports_sw1:
        turn_on_interface(sw1, port)

    step("#### Turning on interfaces in sw2 ###")
    for port in ports_sw2:
        turn_on_interface(sw2, port)

    step("#### Validate interfaces are turn on ####")
    verify_turn_on_interfaces(sw1, ports_sw1)
    verify_turn_on_interfaces(sw2, ports_sw2)

    mac_addr_sw1 = sw1.libs.vtysh.show_interface(1)['mac_address']
    mac_addr_sw2 = sw2.libs.vtysh.show_interface(1)['mac_address']
    assert mac_addr_sw1 != mac_addr_sw2, \
        'Mac address of interfaces in sw1 is equal to mac address of ' + \
        'interfaces in sw2. This is a test framework problem. Dynamic ' + \
        'LAGs cannot work properly under this condition. Refer to Taiga ' + \
        'issue #1251.'

    step("##### Create LAGs ####")
    create_lag(sw1, lag_id, 'off')
    create_lag(sw2, lag_id, 'off')

    step("#### Associate Interfaces to LAG ####")
    for intf in ports_sw1[0:2]:
        associate_interface_to_lag(sw1, intf, lag_id)

    for intf in ports_sw2[0:2]:
        associate_interface_to_lag(sw2, intf, lag_id)

    step("#### Verify LAG configuration ####")
    verify_lag_config(sw1, lag_id, ports_sw1[0:2])
    verify_lag_config(sw2, lag_id, ports_sw2[0:2])

    step("#### Configure VLANs on switches ####")
    for vlan in vlans_id:
        create_vlan(sw1, vlan)
        create_vlan(sw2, vlan)

    step("### Tagged VLANs on LAG interfaces")
    tagged_vlan_to_lag(sw1, vlans_id, lag_id)
    tagged_vlan_to_lag(sw2, vlans_id, lag_id)

    associate_vlan_to_l2_interface(sw1, vlans_id[0], ports_sw1[2])
    associate_vlan_to_l2_interface(sw2, vlans_id[0], ports_sw2[2])
    associate_vlan_to_l2_interface(sw2, vlans_id[1], ports_sw2[3])

    step("#### Configure workstations ####")
    hs1.libs.ip.interface('1', addr='140.1.1.10/24', up=True)
    hs2.libs.ip.interface('1', addr='140.1.1.11/24', up=True)
    hs3.libs.ip.interface('1', addr='140.1.1.12/24', up=True)

    step("#### Test ping between clients in the same vlan ####")
    verify_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11')

    step("#### Test ping between clients in the different vlan ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs3, '140.1.1.12',
                                     5, False)

    step("### Move one WS to the VLAN with the single workstation ###")
    associate_vlan_to_l2_interface(sw1, vlans_id[1], ports_sw1[2])

    step("#### Test ping between clients in the same vlan ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs3, '140.1.1.12',
                                     5, True)

    step("### Untag VLANs on LAG Interfaces ###")
    no_tagged_vlan_to_tag(sw1, vlans_id, lag_id)
    no_tagged_vlan_to_tag(sw2, vlans_id, lag_id)

    step("#### Test ping failed between clients ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11',
                                     5, False)
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs3, '140.1.1.12',
                                     5, False)

    step("### Re Associate VLANs to Lag ###")
    associate_vlan_to_lag(sw1, vlans_id[1], lag_id, no_routing=False)
    associate_vlan_to_lag(sw2, vlans_id[1], lag_id, no_routing=False)

    step("#### Test ping between clients in the same vlan ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs3, '140.1.1.12',
                                     5, True)
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11',
                                     5, False)

    step("### Re Tagged VLANs on LAG interfaces")
    tagged_vlan_to_lag(sw1, vlans_id, lag_id, no_routing=False)
    tagged_vlan_to_lag(sw2, vlans_id, lag_id, no_routing=False)

    step("#### Test ping between clients in the same vlan ####")
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs2, '140.1.1.11',
                                     5, False)
    check_connectivity_between_hosts(hs1, '140.1.1.10', hs3, '140.1.1.12',
                                     5, True)