summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test_gbp.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/test_gbp.py b/test/test_gbp.py
index 4d8328474b9..3fddde01fe6 100644
--- a/test/test_gbp.py
+++ b/test/test_gbp.py
@@ -3240,6 +3240,16 @@ class TestGBP(VppTestCase):
rep.add_vpp_config()
#
+ # ARP packet from External EPs are accpeted and replied to
+ #
+ p_arp = (Ether(src=eep1.mac, dst="ff:ff:ff:ff:ff:ff") /
+ Dot1Q(vlan=100) /
+ ARP(op="who-has",
+ psrc=eep1.ip4.address, pdst="10.0.0.128",
+ hwsrc=eep1.mac, hwdst="ff:ff:ff:ff:ff:ff"))
+ rxs = self.send_and_expect(self.pg0, p_arp * 1, self.pg0)
+
+ #
# packets destined to unknown addresses in the BVI's subnet
# are ARP'd for
#