summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorNataliia Solomko <natalirs1985@gmail.com>2026-03-02 11:42:17 +0200
committerNataliia Solomko <natalirs1985@gmail.com>2026-03-02 19:27:55 +0200
commit99f617c88e57453315ee97cba88d3de1a24a5f01 (patch)
tree9101e996fd134a83cb2708e104bcdd7a85caa197 /python
parentc5c5021aed8ac1baaaf0896193e1c89f125c2103 (diff)
downloadvyos-1x-99f617c88e57453315ee97cba88d3de1a24a5f01.tar.gz
vyos-1x-99f617c88e57453315ee97cba88d3de1a24a5f01.zip
vpp: T8327: Remove support for GRE "point-to-multipoint" mode
Disabled "point-to-multipoint" mode for GRE interfaces, along with related "mode" node. This mode relies on the 'teib' feature, which is not implemented yet.
Diffstat (limited to 'python')
-rw-r--r--python/vyos/ifconfig/vpp/gre.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/vyos/ifconfig/vpp/gre.py b/python/vyos/ifconfig/vpp/gre.py
index e281574a2..7ab600998 100644
--- a/python/vyos/ifconfig/vpp/gre.py
+++ b/python/vyos/ifconfig/vpp/gre.py
@@ -34,7 +34,7 @@ class VPPGREInterface(Interface, VPPInterface):
MODE_MAP = {
'point-to-point': 0,
- 'point-to-multipoint': 1,
+ # 'point-to-multipoint': 1,
}
def __init__(self, ifname, config):
@@ -51,7 +51,7 @@ class VPPGREInterface(Interface, VPPInterface):
self.src_address = config.get('source_address')
self.dst_address = config.get('remote')
self.tunnel_type = self.TUNNEL_TYPE_MAP.get(config.get('tunnel_type'), 0)
- self.mode = self.MODE_MAP.get(config.get('mode'), 0)
+ self.mode = self.MODE_MAP['point-to-point']
def _create(self):
pass