23 lines
675 B
Python
23 lines
675 B
Python
|
from vpp_object import VppObject
|
||
|
from vpp_interface import VppInterface
|
||
|
|
||
|
|
||
|
class VppBviInterface(VppInterface, VppObject):
|
||
|
"""VPP bvi interface."""
|
||
|
|
||
|
def __init__(self, test):
|
||
|
""" Create VPP BVI interface """
|
||
|
super(VppBviInterface, self).__init__(test)
|
||
|
self.add_vpp_config()
|
||
|
|
||
|
def add_vpp_config(self):
|
||
|
r = self.test.vapi.bvi_create(user_instance=0xffffffff,
|
||
|
mac="00:00:00:00:00:00")
|
||
|
self.set_sw_if_index(r.sw_if_index)
|
||
|
|
||
|
def remove_vpp_config(self):
|
||
|
self.test.vapi.bvi_delete(sw_if_index=self.sw_if_index)
|
||
|
|
||
|
def object_id(self):
|
||
|
return "bvi-%d" % self._sw_if_index
|