X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fvpp_sub_interface.py;h=255cfffd827a46a481830562aae37055a9b9e5a1;hb=e88865d;hp=3c726b29d3f0e8e4e312cd8c0177eca558a89da5;hpb=b9ef2739dd1e681143e78ada1ffc342ae2fb89b0;p=vpp.git diff --git a/test/vpp_sub_interface.py b/test/vpp_sub_interface.py index 3c726b29d3f..255cfffd827 100644 --- a/test/vpp_sub_interface.py +++ b/test/vpp_sub_interface.py @@ -1,8 +1,8 @@ from scapy.layers.l2 import Dot1Q from abc import abstractmethod, ABCMeta -from vpp_interface import VppInterface from vpp_pg_interface import VppPGInterface from vpp_papi_provider import L2_VTR_OP +from vpp_interface import VppInterface class VppSubInterface(VppPGInterface): @@ -50,6 +50,12 @@ class VppSubInterface(VppPGInterface): def create_ndp_req(self): pass + def resolve_arp(self): + super(VppSubInterface, self).resolve_arp(self.parent) + + def resolve_ndp(self): + super(VppSubInterface, self).resolve_ndp(self.parent) + @abstractmethod def add_dot1_layer(self, pkt): pass