From 938af5e2710a789da2e7a5eb26ecdedcb68c508e Mon Sep 17 00:00:00 2001 From: Stanislav Zaikin Date: Thu, 3 Dec 2020 19:09:53 +0000 Subject: pppoe: fix VLIB_RX into the pppoe-input node Previously, RX interface for PPPoE packets was set as the original interface. Now it is set as corresponding PPPoE interface in the "pppoe-input" node. We need to do it because otherwise IP or other settings won't be working onto the PPPoE interface (only on original rx interface). Type: fix Signed-off-by: Stanislav Zaikin Change-Id: If9cc37608aa5fe685b8278dd99b819b7eddc6c38 --- src/plugins/pppoe/test/vpp_pppoe_interface.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/plugins/pppoe/test/vpp_pppoe_interface.py') diff --git a/src/plugins/pppoe/test/vpp_pppoe_interface.py b/src/plugins/pppoe/test/vpp_pppoe_interface.py index 3767aa1d086..505ac4c6425 100644 --- a/src/plugins/pppoe/test/vpp_pppoe_interface.py +++ b/src/plugins/pppoe/test/vpp_pppoe_interface.py @@ -17,6 +17,7 @@ class VppPppoeInterface(VppInterface): self.client_mac = client_mac self.session_id = session_id self.decap_vrf_id = decap_vrf_id + self.vpp_sw_if_index = -1 def add_vpp_config(self): r = self.test.vapi.pppoe_add_del_session( @@ -24,6 +25,7 @@ class VppPppoeInterface(VppInterface): session_id=self.session_id, decap_vrf_id=self.decap_vrf_id) self.set_sw_if_index(r.sw_if_index) + self.vpp_sw_if_index = r.sw_if_index self.generate_remote_hosts() def remove_vpp_config(self): @@ -33,3 +35,8 @@ class VppPppoeInterface(VppInterface): session_id=self.session_id, decap_vrf_id=self.decap_vrf_id, is_add=0) + + def set_unnumbered(self, swif_iface): + self.test.vapi.sw_interface_set_unnumbered( + swif_iface, + self.vpp_sw_if_index) -- cgit 1.2.3-korg