Configure IPv6 address on the VPP interface.
(self)
| 292 | return self |
| 293 | |
| 294 | def config_ip6(self): |
| 295 | """Configure IPv6 address on the VPP interface.""" |
| 296 | self.test.vapi.sw_interface_add_del_address( |
| 297 | sw_if_index=self.sw_if_index, prefix=self.local_ip6_prefix |
| 298 | ) |
| 299 | self.has_ip6_config = True |
| 300 | return self |
| 301 | |
| 302 | def unconfig_ip6(self): |
| 303 | """Remove IPv6 address on the VPP interface.""" |
no outgoing calls