MCPcopy Create free account
hub / github.com/FDio/vpp / unconfig_ip6

Method unconfig_ip6

test/vpp_interface.py:302–312  ·  view source on GitHub ↗

Remove IPv6 address on the VPP interface.

(self)

Source from the content-addressed store, hash-verified

300 return self
301
302 def unconfig_ip6(self):
303 """Remove IPv6 address on the VPP interface."""
304 try:
305 if self.has_ip6_config:
306 self.test.vapi.sw_interface_add_del_address(
307 sw_if_index=self.sw_if_index, prefix=self.local_ip6_prefix, is_add=0
308 )
309 except AttributeError:
310 self.has_ip6_config = False
311 self.has_ip6_config = False
312 return self
313
314 def configure_ipv6_neighbors(self):
315 """For every remote host assign neighbor's MAC to IPv6 addresses.

Callers 15

unconfigMethod · 0.95
tearDownMethod · 0.80
tearDownMethod · 0.80
tearDownClassMethod · 0.80
tearDownMethod · 0.80
tearDownMethod · 0.80
test_greMethod · 0.80
test_gre6Method · 0.80
test_mgre6Method · 0.80
tearDownMethod · 0.80
tearDownMethod · 0.80
test_mpls_v6_ebgp_picMethod · 0.80

Calls

no outgoing calls

Tested by 15

tearDownMethod · 0.64
tearDownMethod · 0.64
tearDownClassMethod · 0.64
tearDownMethod · 0.64
tearDownMethod · 0.64
test_greMethod · 0.64
test_gre6Method · 0.64
test_mgre6Method · 0.64
tearDownMethod · 0.64
tearDownMethod · 0.64
test_mpls_v6_ebgp_picMethod · 0.64
tearDownMethod · 0.64