diff options
author | Stanislav Zaikin <zstaseg@gmail.com> | 2020-12-03 19:09:53 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2020-12-11 23:31:49 +0000 |
commit | 938af5e2710a789da2e7a5eb26ecdedcb68c508e (patch) | |
tree | e30ce54da823ae701a02577403e25f2c1ca198ad /src/plugins/pppoe/test/test_pppoe.py | |
parent | b801cd1b31e44e9e90f4619db0cad4ab661019e5 (diff) |
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 <zstaseg@gmail.com>
Change-Id: If9cc37608aa5fe685b8278dd99b819b7eddc6c38
Diffstat (limited to 'src/plugins/pppoe/test/test_pppoe.py')
-rw-r--r-- | src/plugins/pppoe/test/test_pppoe.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plugins/pppoe/test/test_pppoe.py b/src/plugins/pppoe/test/test_pppoe.py index cce8fe7fc50..99dba01cdc9 100644 --- a/src/plugins/pppoe/test/test_pppoe.py +++ b/src/plugins/pppoe/test/test_pppoe.py @@ -211,6 +211,7 @@ class TestPPPoE(VppTestCase): self.pg0.remote_mac, self.session_id) pppoe_if.add_vpp_config() + pppoe_if.set_unnumbered(self.pg0.sw_if_index) # # Send tunneled packets that match the created tunnel and @@ -274,6 +275,7 @@ class TestPPPoE(VppTestCase): self.pg0.remote_mac, self.session_id) pppoe_if.add_vpp_config() + pppoe_if.set_unnumbered(self.pg0.sw_if_index) # # Send a packet stream that is routed into the session @@ -337,6 +339,7 @@ class TestPPPoE(VppTestCase): self.pg0.remote_mac, self.session_id) pppoe_if.add_vpp_config() + pppoe_if.set_unnumbered(self.pg0.sw_if_index) # # The double create (create the same session twice) should fail, @@ -445,6 +448,7 @@ class TestPPPoE(VppTestCase): self.pg0.remote_mac, self.session_id) pppoe_if1.add_vpp_config() + pppoe_if1.set_unnumbered(self.pg0.sw_if_index) # Send PPPoE Discovery 2 tx3 = self.create_stream_pppoe_discovery(self.pg2, self.pg1, @@ -465,6 +469,7 @@ class TestPPPoE(VppTestCase): self.pg2.remote_mac, self.session_id + 1) pppoe_if2.add_vpp_config() + pppoe_if2.set_unnumbered(self.pg0.sw_if_index) # # Send tunneled packets that match the created tunnel and |