X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2FIPv6Setup.py;h=25e8c47ec5e820551f87888120ca9e60f22bb028;hp=2c68c338e23a818713c0cc064219ebe18aca89ca;hb=9c8743594ac51c51ac14b6b80c9806a79ada0753;hpb=5d2ce55a8641a030ec6984089c51aa9313f46af1 diff --git a/resources/libraries/python/IPv6Setup.py b/resources/libraries/python/IPv6Setup.py index 2c68c338e2..25e8c47ec5 100644 --- a/resources/libraries/python/IPv6Setup.py +++ b/resources/libraries/python/IPv6Setup.py @@ -212,27 +212,6 @@ class IPv6Setup(object): sw_if_index=sw_if_index, state='admin-down') - - @staticmethod - def vpp_set_ipv6_neighbor(node, interface, ipaddr, macaddr): - """Set IPv6 neighbor. - - :param node: VPP node. - :param interface: Interface name. - :param ip_address: IPv6 address. - :param mac_address: mac address. - :type node: dict - :type interface: str - :type ip_address: str - :type mac_address: str - """ - sw_if_index = Topology.get_interface_sw_index(node, interface) - VatExecutor.cmd_from_template(node, - 'add_ip_neighbor.vat', - sw_if_index=sw_if_index, - ip_address=ipaddr, - mac_address=macaddr) - @staticmethod def vpp_ra_suppress_link_layer(node, interface): """Suppress ICMPv6 router advertisement message for link scope address.