Unconfigure IPv6 and IPv4 address on the VPP interface.
(self)
| 320 | self.test.vapi.ip_neighbor_add_del(self.sw_if_index, host.mac, host.ip6) |
| 321 | |
| 322 | def unconfig(self): |
| 323 | """Unconfigure IPv6 and IPv4 address on the VPP interface.""" |
| 324 | self.unconfig_ip4() |
| 325 | self.unconfig_ip6() |
| 326 | return self |
| 327 | |
| 328 | def set_table_ip4(self, table_id): |
| 329 | """Set the interface in a IPv4 Table. |