Remove IPv6 address on the VPP interface.
(self)
| 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. |
no outgoing calls