blob: 028275ccedf9dcb7d14c7097c2666dea043ad38e [file] [log] [blame]
Renato Botelho do Coutoead1e532019-10-31 13:31:07 -05001#!/usr/bin/env python3
Damjan Marionf56b77a2016-10-03 19:44:57 +02002
Eyal Baric4aaee12016-12-20 18:36:46 +02003import socket
Paul Vinciguerra2f156312020-05-02 22:34:40 -04004from util import ip4_range, reassemble4
Damjan Marionf56b77a2016-10-03 19:44:57 +02005import unittest
6from framework import VppTestCase, VppTestRunner
Damjan Marionf56b77a2016-10-03 19:44:57 +02007from template_bd import BridgeDomain
8
snaramre5d4b8912019-12-13 23:39:35 +00009from scapy.layers.l2 import Ether
Artem Glazychev839dcc02020-12-01 02:39:21 +070010from scapy.packet import Raw, bind_layers
Damjan Marionf56b77a2016-10-03 19:44:57 +020011from scapy.layers.inet import IP, UDP
Matej Klottondeb69842016-12-09 15:05:46 +010012from scapy.layers.vxlan import VXLAN
Paul Vinciguerra2f156312020-05-02 22:34:40 -040013
14import util
Neale Ranns097fa662018-05-01 05:17:55 -070015from vpp_ip_route import VppIpRoute, VppRoutePath
Jakub Grajciar7c0eb562020-03-02 13:55:31 +010016from vpp_vxlan_tunnel import VppVxlanTunnel
Neale Ranns097fa662018-05-01 05:17:55 -070017from vpp_ip import INVALID_INDEX
Damjan Marionf56b77a2016-10-03 19:44:57 +020018
19
Klement Sekeraf62ae122016-10-11 11:47:09 +020020class TestVxlan(BridgeDomain, VppTestCase):
Damjan Marionf56b77a2016-10-03 19:44:57 +020021 """ VXLAN Test Case """
22
Damjan Marionf56b77a2016-10-03 19:44:57 +020023 def __init__(self, *args):
24 BridgeDomain.__init__(self)
Damjan Marionf56b77a2016-10-03 19:44:57 +020025 VppTestCase.__init__(self, *args)
26
Eyal Baric4aaee12016-12-20 18:36:46 +020027 def encapsulate(self, pkt, vni):
Klement Sekeraf62ae122016-10-11 11:47:09 +020028 """
29 Encapsulate the original payload frame by adding VXLAN header with its
30 UDP, IP and Ethernet fields
31 """
32 return (Ether(src=self.pg0.remote_mac, dst=self.pg0.local_mac) /
33 IP(src=self.pg0.remote_ip4, dst=self.pg0.local_ip4) /
34 UDP(sport=self.dport, dport=self.dport, chksum=0) /
Eyal Baric4aaee12016-12-20 18:36:46 +020035 VXLAN(vni=vni, flags=self.flags) /
36 pkt)
37
Eyal Baricef1e2a2018-06-18 13:01:59 +030038 def ip_range(self, start, end):
39 """ range of remote ip's """
40 return ip4_range(self.pg0.remote_ip4, start, end)
41
Eyal Baric4aaee12016-12-20 18:36:46 +020042 def encap_mcast(self, pkt, src_ip, src_mac, vni):
43 """
44 Encapsulate the original payload frame by adding VXLAN header with its
45 UDP, IP and Ethernet fields
46 """
Eyal Barid81da8c2017-01-11 13:39:54 +020047 return (Ether(src=src_mac, dst=self.mcast_mac) /
Eyal Baric4aaee12016-12-20 18:36:46 +020048 IP(src=src_ip, dst=self.mcast_ip4) /
49 UDP(sport=self.dport, dport=self.dport, chksum=0) /
50 VXLAN(vni=vni, flags=self.flags) /
Damjan Marionf56b77a2016-10-03 19:44:57 +020051 pkt)
52
Damjan Marionf56b77a2016-10-03 19:44:57 +020053 def decapsulate(self, pkt):
Klement Sekeraf62ae122016-10-11 11:47:09 +020054 """
55 Decapsulate the original payload frame by removing VXLAN header
56 """
Matej Klottondeb69842016-12-09 15:05:46 +010057 # check if is set I flag
58 self.assertEqual(pkt[VXLAN].flags, int('0x8', 16))
Damjan Marionf56b77a2016-10-03 19:44:57 +020059 return pkt[VXLAN].payload
60
Klement Sekeraf62ae122016-10-11 11:47:09 +020061 # Method for checking VXLAN encapsulation.
Damjan Marionf56b77a2016-10-03 19:44:57 +020062 #
Eyal Bari6ae5ee72017-03-23 09:53:51 +020063 def check_encapsulation(self, pkt, vni, local_only=False, mcast_pkt=False):
Damjan Marionf56b77a2016-10-03 19:44:57 +020064 # TODO: add error messages
Klement Sekeraf62ae122016-10-11 11:47:09 +020065 # Verify source MAC is VPP_MAC and destination MAC is MY_MAC resolved
Damjan Marionf56b77a2016-10-03 19:44:57 +020066 # by VPP using ARP.
Klement Sekeraf62ae122016-10-11 11:47:09 +020067 self.assertEqual(pkt[Ether].src, self.pg0.local_mac)
Eyal Baric4aaee12016-12-20 18:36:46 +020068 if not local_only:
Eyal Bari6ae5ee72017-03-23 09:53:51 +020069 if not mcast_pkt:
70 self.assertEqual(pkt[Ether].dst, self.pg0.remote_mac)
71 else:
72 self.assertEqual(pkt[Ether].dst, type(self).mcast_mac)
Klement Sekeraf62ae122016-10-11 11:47:09 +020073 # Verify VXLAN tunnel source IP is VPP_IP and destination IP is MY_IP.
74 self.assertEqual(pkt[IP].src, self.pg0.local_ip4)
Eyal Baric4aaee12016-12-20 18:36:46 +020075 if not local_only:
Eyal Bari6ae5ee72017-03-23 09:53:51 +020076 if not mcast_pkt:
77 self.assertEqual(pkt[IP].dst, self.pg0.remote_ip4)
78 else:
79 self.assertEqual(pkt[IP].dst, type(self).mcast_ip4)
Klement Sekeraf62ae122016-10-11 11:47:09 +020080 # Verify UDP destination port is VXLAN 4789, source UDP port could be
Damjan Marionf56b77a2016-10-03 19:44:57 +020081 # arbitrary.
Artem Glazychev839dcc02020-12-01 02:39:21 +070082 self.assertEqual(pkt[UDP].dport, self.dport)
Vladimir Isaev698eb872020-05-21 16:34:17 +030083 # Verify UDP checksum
84 self.assert_udp_checksum_valid(pkt)
Eyal Baric4aaee12016-12-20 18:36:46 +020085 # Verify VNI
86 self.assertEqual(pkt[VXLAN].vni, vni)
87
Eyal Baric4aaee12016-12-20 18:36:46 +020088 @classmethod
Artem Glazychev839dcc02020-12-01 02:39:21 +070089 def create_vxlan_flood_test_bd(cls, vni, n_ucast_tunnels, port):
Eyal Baric4aaee12016-12-20 18:36:46 +020090 # Create 10 ucast vxlan tunnels under bd
91 ip_range_start = 10
Eyal Barid81da8c2017-01-11 13:39:54 +020092 ip_range_end = ip_range_start + n_ucast_tunnels
Neale Ranns097fa662018-05-01 05:17:55 -070093 next_hop_address = cls.pg0.remote_ip4
94 for dest_ip4 in ip4_range(next_hop_address, ip_range_start,
95 ip_range_end):
Paul Vinciguerra2f156312020-05-02 22:34:40 -040096 # add host route so dest_ip4 will not be resolved
Neale Ranns097fa662018-05-01 05:17:55 -070097 rip = VppIpRoute(cls, dest_ip4, 32,
98 [VppRoutePath(next_hop_address,
99 INVALID_INDEX)],
100 register=False)
101 rip.add_vpp_config()
Neale Ranns097fa662018-05-01 05:17:55 -0700102
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100103 r = VppVxlanTunnel(cls, src=cls.pg0.local_ip4,
Artem Glazychev839dcc02020-12-01 02:39:21 +0700104 src_port=port, dst_port=port,
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100105 dst=dest_ip4, vni=vni)
106 r.add_vpp_config()
Neale Ranns097fa662018-05-01 05:17:55 -0700107 cls.vapi.sw_interface_set_l2_bridge(r.sw_if_index, bd_id=vni)
Eyal Baric4aaee12016-12-20 18:36:46 +0200108
109 @classmethod
Artem Glazychev839dcc02020-12-01 02:39:21 +0700110 def add_del_shared_mcast_dst_load(cls, port, is_add):
Eyal Bari4bce2902017-01-16 12:02:46 +0200111 """
112 add or del tunnels sharing the same mcast dst
113 to test vxlan ref_count mechanism
114 """
Gabriel Ganne7e665d62017-11-17 09:18:53 +0100115 n_shared_dst_tunnels = 20
Eyal Bari4bce2902017-01-16 12:02:46 +0200116 vni_start = 10000
117 vni_end = vni_start + n_shared_dst_tunnels
118 for vni in range(vni_start, vni_end):
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100119 r = VppVxlanTunnel(cls, src=cls.pg0.local_ip4,
Artem Glazychev839dcc02020-12-01 02:39:21 +0700120 src_port=port, dst_port=port,
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100121 dst=cls.mcast_ip4, mcast_sw_if_index=1, vni=vni)
122 if is_add:
123 r.add_vpp_config()
124 if r.sw_if_index == 0xffffffff:
125 raise ValueError("bad sw_if_index: ~0")
126 else:
127 r.remove_vpp_config()
Eyal Bari4bce2902017-01-16 12:02:46 +0200128
129 @classmethod
Artem Glazychev839dcc02020-12-01 02:39:21 +0700130 def add_shared_mcast_dst_load(cls, port):
131 cls.add_del_shared_mcast_dst_load(port=port, is_add=1)
Eyal Bari4bce2902017-01-16 12:02:46 +0200132
133 @classmethod
Artem Glazychev839dcc02020-12-01 02:39:21 +0700134 def del_shared_mcast_dst_load(cls, port):
135 cls.add_del_shared_mcast_dst_load(port=port, is_add=0)
Eyal Bari4bce2902017-01-16 12:02:46 +0200136
137 @classmethod
Artem Glazychev839dcc02020-12-01 02:39:21 +0700138 def add_del_mcast_tunnels_load(cls, port, is_add):
Eyal Bari4bce2902017-01-16 12:02:46 +0200139 """
140 add or del tunnels to test vxlan stability
141 """
142 n_distinct_dst_tunnels = 200
Eyal Baric4aaee12016-12-20 18:36:46 +0200143 ip_range_start = 10
Eyal Bari4bce2902017-01-16 12:02:46 +0200144 ip_range_end = ip_range_start + n_distinct_dst_tunnels
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100145 for dest_ip4 in ip4_range(cls.mcast_ip4, ip_range_start,
146 ip_range_end):
147 vni = bytearray(socket.inet_pton(socket.AF_INET, dest_ip4))[3]
148 r = VppVxlanTunnel(cls, src=cls.pg0.local_ip4,
Artem Glazychev839dcc02020-12-01 02:39:21 +0700149 src_port=port, dst_port=port,
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100150 dst=dest_ip4, mcast_sw_if_index=1, vni=vni)
151 if is_add:
152 r.add_vpp_config()
153 else:
154 r.remove_vpp_config()
Eyal Baric4aaee12016-12-20 18:36:46 +0200155
156 @classmethod
Artem Glazychev839dcc02020-12-01 02:39:21 +0700157 def add_mcast_tunnels_load(cls, port):
158 cls.add_del_mcast_tunnels_load(port=port, is_add=1)
Eyal Baric4aaee12016-12-20 18:36:46 +0200159
160 @classmethod
Artem Glazychev839dcc02020-12-01 02:39:21 +0700161 def del_mcast_tunnels_load(cls, port):
162 cls.add_del_mcast_tunnels_load(port=port, is_add=0)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200163
Klement Sekeraf62ae122016-10-11 11:47:09 +0200164 # Class method to start the VXLAN test case.
Damjan Marionf56b77a2016-10-03 19:44:57 +0200165 # Overrides setUpClass method in VppTestCase class.
166 # Python try..except statement is used to ensure that the tear down of
167 # the class will be executed even if exception is raised.
168 # @param cls The class pointer.
169 @classmethod
170 def setUpClass(cls):
171 super(TestVxlan, cls).setUpClass()
Damjan Marionf56b77a2016-10-03 19:44:57 +0200172
Klement Sekeraf62ae122016-10-11 11:47:09 +0200173 try:
Matej Klottondeb69842016-12-09 15:05:46 +0100174 cls.flags = 0x8
Klement Sekeraf62ae122016-10-11 11:47:09 +0200175
176 # Create 2 pg interfaces.
Eyal Baric4aaee12016-12-20 18:36:46 +0200177 cls.create_pg_interfaces(range(4))
178 for pg in cls.pg_interfaces:
179 pg.admin_up()
Klement Sekeraf62ae122016-10-11 11:47:09 +0200180
181 # Configure IPv4 addresses on VPP pg0.
182 cls.pg0.config_ip4()
183
184 # Resolve MAC address for VPP's IP address on pg0.
185 cls.pg0.resolve_arp()
186
Eyal Baric4aaee12016-12-20 18:36:46 +0200187 # Our Multicast address
188 cls.mcast_ip4 = '239.1.1.1'
Paul Vinciguerra2f156312020-05-02 22:34:40 -0400189 cls.mcast_mac = util.mcast_ip_to_mac(cls.mcast_ip4)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200190 except Exception:
Paul Vinciguerra2f156312020-05-02 22:34:40 -0400191 cls.tearDownClass()
Damjan Marionf56b77a2016-10-03 19:44:57 +0200192 raise
193
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -0700194 @classmethod
195 def tearDownClass(cls):
196 super(TestVxlan, cls).tearDownClass()
197
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100198 def setUp(self):
199 super(TestVxlan, self).setUp()
Artem Glazychev839dcc02020-12-01 02:39:21 +0700200
201 def createVxLANInterfaces(self, port=4789):
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100202 # Create VXLAN VTEP on VPP pg0, and put vxlan_tunnel0 and pg1
203 # into BD.
Artem Glazychev839dcc02020-12-01 02:39:21 +0700204 self.dport = port
205
Neale Ranns91fd9102020-04-03 07:46:28 +0000206 self.single_tunnel_vni = 0x12345
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100207 self.single_tunnel_bd = 1
208 r = VppVxlanTunnel(self, src=self.pg0.local_ip4,
Neale Ranns91fd9102020-04-03 07:46:28 +0000209 dst=self.pg0.remote_ip4,
Artem Glazychev839dcc02020-12-01 02:39:21 +0700210 src_port=self.dport, dst_port=self.dport,
Neale Ranns91fd9102020-04-03 07:46:28 +0000211 vni=self.single_tunnel_vni)
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100212 r.add_vpp_config()
213 self.vapi.sw_interface_set_l2_bridge(rx_sw_if_index=r.sw_if_index,
214 bd_id=self.single_tunnel_bd)
215 self.vapi.sw_interface_set_l2_bridge(
216 rx_sw_if_index=self.pg1.sw_if_index, bd_id=self.single_tunnel_bd)
217
218 # Setup vni 2 to test multicast flooding
219 self.n_ucast_tunnels = 10
220 self.mcast_flood_bd = 2
221 self.create_vxlan_flood_test_bd(self.mcast_flood_bd,
Artem Glazychev839dcc02020-12-01 02:39:21 +0700222 self.n_ucast_tunnels,
223 self.dport)
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100224 r = VppVxlanTunnel(self, src=self.pg0.local_ip4, dst=self.mcast_ip4,
Artem Glazychev839dcc02020-12-01 02:39:21 +0700225 src_port=self.dport, dst_port=self.dport,
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100226 mcast_sw_if_index=1, vni=self.mcast_flood_bd)
227 r.add_vpp_config()
228 self.vapi.sw_interface_set_l2_bridge(rx_sw_if_index=r.sw_if_index,
229 bd_id=self.mcast_flood_bd)
230 self.vapi.sw_interface_set_l2_bridge(
231 rx_sw_if_index=self.pg2.sw_if_index, bd_id=self.mcast_flood_bd)
232
233 # Add and delete mcast tunnels to check stability
Artem Glazychev839dcc02020-12-01 02:39:21 +0700234 self.add_shared_mcast_dst_load(self.dport)
235 self.add_mcast_tunnels_load(self.dport)
236 self.del_shared_mcast_dst_load(self.dport)
237 self.del_mcast_tunnels_load(self.dport)
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100238
239 # Setup vni 3 to test unicast flooding
240 self.ucast_flood_bd = 3
241 self.create_vxlan_flood_test_bd(self.ucast_flood_bd,
Artem Glazychev839dcc02020-12-01 02:39:21 +0700242 self.n_ucast_tunnels,
243 self.dport)
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100244 self.vapi.sw_interface_set_l2_bridge(
245 rx_sw_if_index=self.pg3.sw_if_index, bd_id=self.ucast_flood_bd)
246
Artem Glazychev839dcc02020-12-01 02:39:21 +0700247 # Set scapy listen custom port for VxLAN
248 bind_layers(UDP, VXLAN, dport=self.dport)
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100249
Artem Glazychev839dcc02020-12-01 02:39:21 +0700250 def encap_big_packet(self):
Ole Troanb3655e52018-08-16 22:08:49 +0200251 self.vapi.sw_interface_set_mtu(self.pg0.sw_if_index, [1500, 0, 0, 0])
252
253 frame = (Ether(src='00:00:00:00:00:02', dst='00:00:00:00:00:01') /
254 IP(src='4.3.2.1', dst='1.2.3.4') /
255 UDP(sport=20000, dport=10000) /
Ole Troan770a0de2019-11-07 13:52:21 +0100256 Raw(b'\xa5' * 1450))
Ole Troanb3655e52018-08-16 22:08:49 +0200257
258 self.pg1.add_stream([frame])
259
260 self.pg0.enable_capture()
261
262 self.pg_start()
263
264 # Pick first received frame and check if it's correctly encapsulated.
265 out = self.pg0.get_capture(2)
266 ether = out[0]
Ole Troan7f991832018-12-06 17:35:12 +0100267 pkt = reassemble4(out)
Ole Troanb3655e52018-08-16 22:08:49 +0200268 pkt = ether / pkt
Neale Ranns91fd9102020-04-03 07:46:28 +0000269 self.check_encapsulation(pkt, self.single_tunnel_vni)
Ole Troanb3655e52018-08-16 22:08:49 +0200270
271 payload = self.decapsulate(pkt)
272 # TODO: Scapy bug?
273 # self.assert_eq_pkts(payload, frame)
274
Artem Glazychev839dcc02020-12-01 02:39:21 +0700275 """
276 Tests with default port (4789)
277 """
278 def test_decap(self):
279 """ Decapsulation test
280 from BridgeDoman
281 """
282 self.createVxLANInterfaces()
283 super(TestVxlan, self).test_decap()
284
285 def test_encap(self):
286 """ Encapsulation test
287 from BridgeDoman
288 """
289 self.createVxLANInterfaces()
290 super(TestVxlan, self).test_encap()
291
292 def test_encap_big_packet(self):
293 """ Encapsulation test send big frame from pg1
294 Verify receipt of encapsulated frames on pg0
295 """
296 self.createVxLANInterfaces()
297 self.encap_big_packet()
298
299 def test_ucast_flood(self):
300 """ Unicast flood test
301 from BridgeDoman
302 """
303 self.createVxLANInterfaces()
304 super(TestVxlan, self).test_ucast_flood()
305
306 def test_mcast_flood(self):
307 """ Multicast flood test
308 from BridgeDoman
309 """
310 self.createVxLANInterfaces()
311 super(TestVxlan, self).test_mcast_flood()
312
313 def test_mcast_rcv(self):
314 """ Multicast receive test
315 from BridgeDoman
316 """
317 self.createVxLANInterfaces()
318 super(TestVxlan, self).test_mcast_rcv()
319
320 """
321 Tests with custom port
322 """
323 def test_decap_custom_port(self):
324 """ Decapsulation test custom port
325 from BridgeDoman
326 """
327 self.createVxLANInterfaces(1111)
328 super(TestVxlan, self).test_decap()
329
330 def test_encap_custom_port(self):
331 """ Encapsulation test custom port
332 from BridgeDoman
333 """
334 self.createVxLANInterfaces(1111)
335 super(TestVxlan, self).test_encap()
336
337 def test_ucast_flood_custom_port(self):
338 """ Unicast flood test custom port
339 from BridgeDoman
340 """
341 self.createVxLANInterfaces(1111)
342 super(TestVxlan, self).test_ucast_flood()
343
344 def test_mcast_flood_custom_port(self):
345 """ Multicast flood test custom port
346 from BridgeDoman
347 """
348 self.createVxLANInterfaces(1111)
349 super(TestVxlan, self).test_mcast_flood()
350
351 def test_mcast_rcv_custom_port(self):
352 """ Multicast receive test custom port
353 from BridgeDoman
354 """
355 self.createVxLANInterfaces(1111)
356 super(TestVxlan, self).test_mcast_rcv()
357
Klement Sekeraf62ae122016-10-11 11:47:09 +0200358 # Method to define VPP actions before tear down of the test case.
Damjan Marionf56b77a2016-10-03 19:44:57 +0200359 # Overrides tearDown method in VppTestCase class.
360 # @param self The object pointer.
Artem Glazychev839dcc02020-12-01 02:39:21 +0700361
Damjan Marionf56b77a2016-10-03 19:44:57 +0200362 def tearDown(self):
363 super(TestVxlan, self).tearDown()
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -0700364
365 def show_commands_at_teardown(self):
366 self.logger.info(self.vapi.cli("show bridge-domain 1 detail"))
367 self.logger.info(self.vapi.cli("show bridge-domain 2 detail"))
368 self.logger.info(self.vapi.cli("show bridge-domain 3 detail"))
369 self.logger.info(self.vapi.cli("show vxlan tunnel"))
Damjan Marionf56b77a2016-10-03 19:44:57 +0200370
Matej Klottondeb69842016-12-09 15:05:46 +0100371
Neale Ranns1b5ca982020-12-16 13:06:58 +0000372class TestVxlan2(VppTestCase):
373 """ VXLAN Test Case """
374 def setUp(self):
375 super(TestVxlan2, self).setUp()
376
377 # Create 2 pg interfaces.
378 self.create_pg_interfaces(range(4))
379 for pg in self.pg_interfaces:
380 pg.admin_up()
381
382 # Configure IPv4 addresses on VPP pg0.
383 self.pg0.config_ip4()
384 self.pg0.resolve_arp()
385
386 def tearDown(self):
387 super(TestVxlan2, self).tearDown()
388
389 def test_xconnect(self):
390 """ VXLAN source address not local """
391
392 #
393 # test the broken configuration of a VXLAN tunnel whose
394 # source address is not local ot the box. packets sent
395 # through the tunnel should be dropped
396 #
397 t = VppVxlanTunnel(self,
398 src="10.0.0.5",
399 dst=self.pg0.local_ip4,
400 vni=1000)
401 t.add_vpp_config()
402 t.admin_up()
403
404 self.vapi.sw_interface_set_l2_xconnect(t.sw_if_index,
405 self.pg1.sw_if_index,
406 enable=1)
407 self.vapi.sw_interface_set_l2_xconnect(self.pg1.sw_if_index,
408 t.sw_if_index,
409 enable=1)
410
411 p = (Ether(src="00:11:22:33:44:55",
412 dst="00:00:00:11:22:33") /
413 IP(src="4.3.2.1", dst="1.2.3.4") /
414 UDP(sport=20000, dport=10000) /
415 Raw(b'\xa5' * 1450))
416
417 rx = self.send_and_assert_no_replies(self.pg1, [p])
418
419
Damjan Marionf56b77a2016-10-03 19:44:57 +0200420if __name__ == '__main__':
421 unittest.main(testRunner=VppTestRunner)