Age | Commit message (Expand) | Author | Files | Lines |
---|---|---|---|---|
2017-10-25 | L3 proxy FIB source for container networking | 1 | -0/+1 | |
2016-12-28 | Reorganize source tree to use single autotools instance | 1 | -0/+285 |
![]() |
index : vpp | |
Vector Packet Processing | Grokmirror user |
aboutsummaryrefslogtreecommitdiffstats |
Age | Commit message (Expand) | Author | Files | Lines |
---|---|---|---|---|
2017-10-25 | L3 proxy FIB source for container networking | 1 | -0/+1 | |
2016-12-28 | Reorganize source tree to use single autotools instance | 1 | -0/+285 |
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