diff options
Diffstat (limited to 'resources')
-rw-r--r-- | resources/libraries/python/IPv6Util.py | 19 | ||||
-rw-r--r-- | resources/libraries/robot/crypto/ipsec.robot | 2 | ||||
-rw-r--r-- | resources/libraries/robot/ip/ip6.robot | 8 | ||||
-rw-r--r-- | resources/libraries/robot/overlay/lisp.robot | 6 | ||||
-rw-r--r-- | resources/libraries/robot/overlay/srv6.robot | 4 | ||||
-rw-r--r-- | resources/templates/vm/vppip6_2vhostvr1024.exec | 2 | ||||
-rw-r--r-- | resources/templates/vm/vppip6_2virtiovr1024.exec | 3 |
7 files changed, 25 insertions, 19 deletions
diff --git a/resources/libraries/python/IPv6Util.py b/resources/libraries/python/IPv6Util.py index 683f892f62..883304487d 100644 --- a/resources/libraries/python/IPv6Util.py +++ b/resources/libraries/python/IPv6Util.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019 Cisco and/or its affiliates. +# Copyright (c) 2020 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -23,8 +23,9 @@ class IPv6Util: """IPv6 utilities""" @staticmethod - def vpp_ra_suppress_link_layer(node, interface): - """Suppress ICMPv6 router advertisement message for link scope address. + def vpp_interface_ra_suppress(node, interface): + """Disable sending ICMPv6 router-advertisement messages on + an interface on a VPP node. :param node: VPP node. :param interface: Interface name. @@ -36,8 +37,8 @@ class IPv6Util: sw_if_index=InterfaceUtil.get_interface_index(node, interface), suppress=1 ) - err_msg = f"Failed to suppress ICMPv6 router advertisement message " \ - f"on interface {interface}" + err_msg = f"Failed to disable sending ICMPv6 router-advertisement " \ + f"messages on interface {interface}" with PapiSocketExecutor(node) as papi_exec: papi_exec.add(cmd, **args).get_reply(err_msg) @@ -66,9 +67,9 @@ class IPv6Util: papi_exec.add(cmd, **args).get_reply(err_msg) @staticmethod - def vpp_all_ra_suppress_link_layer(nodes): - """Suppress ICMPv6 router advertisement message for link scope address - on all VPP nodes in the topology. + def vpp_interfaces_ra_suppress_on_all_nodes(nodes): + """Disable sending ICMPv6 router-advertisement messages on all + IPv6 enabled interfaces on all VPP nodes in the topology. :param nodes: Nodes of the test topology. :type nodes: dict @@ -81,4 +82,4 @@ class IPv6Util: node, port_k, u"ipv6" ) if ip6_addr_list: - IPv6Util.vpp_ra_suppress_link_layer(node, port_k) + IPv6Util.vpp_interface_ra_suppress(node, port_k) diff --git a/resources/libraries/robot/crypto/ipsec.robot b/resources/libraries/robot/crypto/ipsec.robot index ec5884daa6..666b36277a 100644 --- a/resources/libraries/robot/crypto/ipsec.robot +++ b/resources/libraries/robot/crypto/ipsec.robot @@ -96,7 +96,7 @@ | | ... | ${dut1} | ${DUT1_${int}1}[0] | ${tg_if1_ip6} | ${TG_pf1_mac}[0] | | VPP Add IP Neighbor | | ... | ${dut1} | ${DUT1_${int}2}[0] | ${tg_if2_ip6} | ${TG_pf2_mac}[0] -| | Vpp All RA Suppress Link Layer | ${nodes} +| | Vpp Interfaces RA Suppress On All Nodes | ${nodes} | | Vpp Route Add | | ... | ${dut1} | ${tg_host_ip6} | ${ip6_plen_rt} | gateway=${tg_if1_ip6} | | ... | interface=${DUT1_${int}1}[0] diff --git a/resources/libraries/robot/ip/ip6.robot b/resources/libraries/robot/ip/ip6.robot index ea004e5278..8ba0689dc9 100644 --- a/resources/libraries/robot/ip/ip6.robot +++ b/resources/libraries/robot/ip/ip6.robot @@ -75,7 +75,7 @@ | | VPP Interface Set IP Address | | ... | ${dut} | ${dut_if2} | 2001:2::1 | 64 | | -| | Vpp All Ra Suppress Link Layer | ${nodes} +| | Vpp Interfaces RA Suppress On All Nodes | ${nodes} | | | | Run Keyword If | '${dut2_status}' == 'PASS' | | ... | Vpp Route Add | ${dut1} | 2001:2::0 | 64 | gateway=2001:3::2 @@ -140,7 +140,7 @@ | | ... | ELSE | Set Variable | ${DUT1_${int}2}[0] | | VPP Interface Set IP Address | | ... | ${dut} | ${dut_if2} | 2001:5::1 | ${prefix} -| | Vpp All Ra Suppress Link Layer | ${nodes} +| | Vpp Interfaces RA Suppress On All Nodes | ${nodes} | | VPP Add IP Neighbor | | ... | ${dut1} | ${DUT1_${int}1}[0] | 2001:3::2 | ${TG_pf1_mac}[0] | | Run Keyword If | '${dut2_status}' == 'PASS' @@ -188,7 +188,7 @@ | | | | [Arguments] | ${nf_nodes}=${1} | | -| | Vpp All Ra Suppress Link Layer | ${nodes} +| | Vpp Interfaces RA Suppress On All Nodes | ${nodes} | | Set interfaces in path up | | ${prefix}= | Set Variable | 64 | | ${fib_table_1}= | Set Variable | ${101} @@ -317,7 +317,7 @@ | | ... | VPP Interface Set IP Address | ${dut2} | ${subif_index_2} | 2002:2::2 | | ... | ${prefix} | | VPP Interface Set IP Address | ${dut} | ${dut_if2} | 2002:3::2 | ${prefix} -| | Vpp All Ra Suppress Link Layer | ${nodes} +| | Vpp Interfaces RA Suppress On All Nodes | ${nodes} | | Vpp Route Add | ${dut1} | ${tg_if1_net} | ${host_prefix} | | ... | gateway=2002:1::1 | interface=${DUT1_${int}1}[0] | | Run Keyword If | '${dut2_status}' == 'PASS' diff --git a/resources/libraries/robot/overlay/lisp.robot b/resources/libraries/robot/overlay/lisp.robot index 6ca75b4570..21036dc0c0 100644 --- a/resources/libraries/robot/overlay/lisp.robot +++ b/resources/libraries/robot/overlay/lisp.robot @@ -335,7 +335,7 @@ | | ... | ${dut2} | ${DUT2_${int}1}[0] | ${dut2_dut1_address} | ${prefix} | | VPP Interface Set IP Address | | ... | ${dut2} | ${DUT2_${int}2}[0] | ${dut2_tg_address} | ${prefix} -| | Vpp All Ra Suppress Link Layer | ${nodes} +| | Vpp Interfaces RA Suppress On All Nodes | ${nodes} | | VPP Add IP Neighbor | | ... | ${dut1} | ${DUT1_${int}1}[0] | 2001:1::2 | ${TG_pf1_mac}[0] | | VPP Add IP Neighbor @@ -383,7 +383,7 @@ | | ... | ${dut2} | ${DUT2_${int}1}[0] | ${dut2_dut1_ip6_address} | ${prefix6} | | VPP Interface Set IP Address | | ... | ${dut2} | ${DUT2_${int}2}[0] | ${dut2_tg_ip4_address} | ${prefix4} -| | Vpp All Ra Suppress Link Layer | ${nodes} +| | Vpp Interfaces RA Suppress On All Nodes | ${nodes} | | VPP Add IP Neighbor | | ... | ${dut1} | ${DUT1_${int}1}[0] | 10.10.10.2 | ${TG_pf1_mac}[0] | | VPP Add IP Neighbor @@ -431,7 +431,7 @@ | | ... | ${dut2} | ${DUT2_${int}1}[0] | ${dut2_dut1_ip4_address} | ${prefix4} | | VPP Interface Set IP Address | | ... | ${dut2} | ${DUT2_${int}2}[0] | ${dut2_tg_ip6_address} | ${prefix6} -| | Vpp All Ra Suppress Link Layer | ${nodes} +| | Vpp Interfaces RA Suppress On All Nodes | ${nodes} | | VPP Add IP Neighbor | | ... | ${dut1} | ${DUT1_${int}1}[0] | 2001:1::2 | ${TG_pf1_mac}[0] | | VPP Add IP Neighbor diff --git a/resources/libraries/robot/overlay/srv6.robot b/resources/libraries/robot/overlay/srv6.robot index 11a625d65f..92c8220cb7 100644 --- a/resources/libraries/robot/overlay/srv6.robot +++ b/resources/libraries/robot/overlay/srv6.robot @@ -248,7 +248,7 @@ | | Run Keyword If | ${dut2_status} | | ... | VPP Interface Set IP Address | | ... | ${dut2} | ${DUT2_${int}2}[0] | ${dut2_if2_ip6} | ${prefix} -| | Vpp All Ra Suppress Link Layer | ${nodes} +| | Vpp Interfaces RA Suppress On All Nodes | ${nodes} | | FOR | ${number} | IN RANGE | 2 | ${dst_addr_nr}+2 | | | ${hexa_nr}= | Convert To Hex | ${number} | | | VPP Add IP Neighbor @@ -400,7 +400,7 @@ | | Run Keyword If | ${dut2_status} | | ... | VPP Interface Set IP Address | ${dut2} | ${dut2-memif-1-if2} | | ... | ${dut2-memif-1-if2_ip6} | ${mem_prefix} -| | Vpp All Ra Suppress Link Layer | ${nodes} +| | Vpp Interfaces RA Suppress On All Nodes | ${nodes} | | Run Keyword If | ${dut2_status} | | ... | VPP Add IP Neighbor | | ... | ${dut1} | ${DUT1_${int}2}[0] | ${dut2_if1_ip6} diff --git a/resources/templates/vm/vppip6_2vhostvr1024.exec b/resources/templates/vm/vppip6_2vhostvr1024.exec index 8545d77761..3ceefbb58f 100644 --- a/resources/templates/vm/vppip6_2vhostvr1024.exec +++ b/resources/templates/vm/vppip6_2vhostvr1024.exec @@ -1,7 +1,9 @@ set interface ip address GigabitEthernet0/6/0 1:1::1/64 +ip6 nd GigabitEthernet0/6/0 ra-suppress set interface state GigabitEthernet0/6/0 up set interface ip address GigabitEthernet0/7/0 1:2::1/64 +ip6 nd GigabitEthernet0/7/0 ra-suppress set interface state GigabitEthernet0/7/0 up ip route add 2001:1::/64 via 1:1::2 GigabitEthernet0/6/0 diff --git a/resources/templates/vm/vppip6_2virtiovr1024.exec b/resources/templates/vm/vppip6_2virtiovr1024.exec index fd31d40f56..71f2e3db7f 100644 --- a/resources/templates/vm/vppip6_2virtiovr1024.exec +++ b/resources/templates/vm/vppip6_2virtiovr1024.exec @@ -3,6 +3,9 @@ set logging class virtio level debug create interface virtio 0000:00:06.0 create interface virtio 0000:00:07.0 +ip6 nd virtio-0/0/6/0 ra-suppress +ip6 nd virtio-0/0/7/0 ra-suppress + set interface state virtio-0/0/6/0 up set interface state virtio-0/0/7/0 up |