blob: 79660f6c591319bf21955c686b92dd797665ac24 [file] [log] [blame]
Jerome Tollet6cbb1112020-12-15 09:21:45 +01001#!/usr/bin/env python3
2
3import unittest
4import random
5
6from scapy.packet import Raw
7from scapy.layers.l2 import Ether
8from scapy.layers.inet import IP, UDP
9
Klement Sekerab23ffd72021-05-31 16:08:53 +020010from framework import VppTestCase, VppTestRunner
Jerome Tollet6cbb1112020-12-15 09:21:45 +010011from util import Host, ppp
12
13
14class TestL2LearnLimit(VppTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020015 """L2 Learn no limit Test Case"""
Jerome Tollet6cbb1112020-12-15 09:21:45 +010016
17 @classmethod
18 def setUpClass(self):
19 super(TestL2LearnLimit, self).setUpClass()
Jerome Tollet5f93e3b2020-12-18 09:44:24 +010020 self.create_pg_interfaces(range(3))
Jerome Tollet6cbb1112020-12-15 09:21:45 +010021
22 @classmethod
23 def tearDownClass(cls):
24 super(TestL2LearnLimit, cls).tearDownClass()
25
26 def create_hosts(self, pg_if, n_hosts_per_if, subnet):
27 """
28 Create required number of host MAC addresses and distribute them among
29 interfaces. Create host IPv4 address for every host MAC address.
30
31 :param int n_hosts_per_if: Number of per interface hosts to
Dave Wallaced1706812021-08-12 18:36:02 -040032 create MAC/IPv4 addresses for.
Jerome Tollet6cbb1112020-12-15 09:21:45 +010033 """
34
35 hosts = dict()
36 swif = pg_if.sw_if_index
37
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020038 def mac(j):
39 return "00:00:%02x:ff:%02x:%02x" % (subnet, swif, j)
Jerome Tollet6cbb1112020-12-15 09:21:45 +010040
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020041 def ip(j):
42 return "172.%02u.1%02x.%u" % (subnet, swif, j)
Jerome Tollet6cbb1112020-12-15 09:21:45 +010043
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020044 def h(j):
45 return Host(mac(j), ip(j))
46
Jerome Tollet6cbb1112020-12-15 09:21:45 +010047 hosts[swif] = [h(j) for j in range(n_hosts_per_if)]
48
49 return hosts
50
51 def learn_hosts(self, pg_if, bd_id, hosts):
52 """
53 Create and send per interface L2 MAC broadcast packet stream to
54 let the bridge domain learn these MAC addresses.
55
56 :param int bd_id: BD to teach
57 :param dict hosts: dict of hosts per interface
58 """
59
60 self.vapi.bridge_flags(bd_id=bd_id, is_set=1, flags=1)
61
62 swif = pg_if.sw_if_index
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020063 packets = [Ether(dst="ff:ff:ff:ff:ff:ff", src=host.mac) for host in hosts[swif]]
Jerome Tollet6cbb1112020-12-15 09:21:45 +010064 pg_if.add_stream(packets)
65 self.logger.info("Sending broadcast eth frames for MAC learning")
66 self.pg_start()
67
Jerome Tolletb716e382021-01-08 22:52:54 +010068 def test_l2bd_learnlimit(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020069 """L2BD test without learn Limit"""
Jerome Tollet6cbb1112020-12-15 09:21:45 +010070 hosts = self.create_hosts(self.pg_interfaces[0], 20, 1)
71 self.learn_hosts(self.pg_interfaces[0], 1, hosts)
72 lfs = self.vapi.l2_fib_table_dump(1)
73
74 # check that 20 macs are learned.
75 self.assertEqual(len(lfs), 20)
76
Jerome Tollet6cbb1112020-12-15 09:21:45 +010077 def setUp(self):
78 super(TestL2LearnLimit, self).setUp()
79
Laszlo Kiraly0f8f4352022-09-16 13:20:07 +020080 self.vapi.bridge_domain_add_del_v2(
81 bd_id=1, is_add=1, flood=1, forward=1, learn=1, uu_flood=1
82 )
83 self.vapi.bridge_domain_add_del_v2(
84 bd_id=2, is_add=1, flood=1, forward=1, learn=1, uu_flood=1
85 )
Jerome Tollet6cbb1112020-12-15 09:21:45 +010086
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020087 self.vapi.sw_interface_set_l2_bridge(self.pg_interfaces[0].sw_if_index, bd_id=1)
88 self.vapi.sw_interface_set_l2_bridge(self.pg_interfaces[1].sw_if_index, bd_id=2)
Jerome Tollet6cbb1112020-12-15 09:21:45 +010089
90 def tearDown(self):
Jerome Tollet5f93e3b2020-12-18 09:44:24 +010091 super(TestL2LearnLimit, self).tearDown()
92 self.vapi.sw_interface_set_l2_bridge(
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020093 rx_sw_if_index=self.pg_interfaces[0].sw_if_index, bd_id=1, enable=0
94 )
Jerome Tollet5f93e3b2020-12-18 09:44:24 +010095 self.vapi.sw_interface_set_l2_bridge(
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020096 rx_sw_if_index=self.pg_interfaces[1].sw_if_index, bd_id=2, enable=0
97 )
Laszlo Kiraly0f8f4352022-09-16 13:20:07 +020098 self.vapi.bridge_domain_add_del_v2(bd_id=1, is_add=0)
99 self.vapi.bridge_domain_add_del_v2(bd_id=2, is_add=0)
Jerome Tollet6cbb1112020-12-15 09:21:45 +0100100
101
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200102if __name__ == "__main__":
Jerome Tollet6cbb1112020-12-15 09:21:45 +0100103 unittest.main(testRunner=VppTestRunner)