diff options
| author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2025-01-22 15:01:05 +0000 |
|---|---|---|
| committer | Viacheslav Hletenko <v.gletenko@vyos.io> | 2025-01-24 09:58:15 +0000 |
| commit | 20ecb6d4ccaf903bcaaf658b1a655dd8d79b989c (patch) | |
| tree | fb210001772e274dc79320c7d430ad0dea4d4839 /smoketest/scripts/cli/test_vpp.py | |
| parent | 63bd816bdfcc041d10941dab51a9a0792218ef42 (diff) | |
| download | vyos-1x-20ecb6d4ccaf903bcaaf658b1a655dd8d79b989c.tar.gz vyos-1x-20ecb6d4ccaf903bcaaf658b1a655dd8d79b989c.zip | |
GRE: Add tunnel-type erspan, l3 and teb
Add tunnel type
- erspan
- l3
- teb (Transparent Ethernet Bridge)
By default L3 GRE interfaces cannot be bridged to a bridge interface.
Add the ability to change tunnel type.
set vpp interfaces gre gre2 tunnel-type 'teb'
Diffstat (limited to 'smoketest/scripts/cli/test_vpp.py')
| -rwxr-xr-x | smoketest/scripts/cli/test_vpp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/test_vpp.py b/smoketest/scripts/cli/test_vpp.py index 582c41c68..ba0d0d728 100755 --- a/smoketest/scripts/cli/test_vpp.py +++ b/smoketest/scripts/cli/test_vpp.py @@ -552,7 +552,7 @@ class TestVPP(VyOSUnitTestSHIM.TestCase): self.assertRegex( normalized_out, r'BondEthernet23\s+\d+\s+up', - "Interface BondEthernet23 is not in the expected state 'up'." + "Interface BondEthernet23 is not in the expected state 'up'.", ) # set kernel interface @@ -617,7 +617,7 @@ class TestVPP(VyOSUnitTestSHIM.TestCase): self.assertRegex( normalized_out, r'BondEthernet23\s+\d+\s+up', - "Interface BondEthernet23 is not in the expected state 'up'." + "Interface BondEthernet23 is not in the expected state 'up'.", ) # delete vpp kernel-interface vlan |
