summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@vyos.io>2024-03-21 10:21:33 +0100
committerGitHub <noreply@github.com>2024-03-21 10:21:33 +0100
commit27438a498113d5a35fe83dece5e12c0c0c1b2b17 (patch)
tree441162593b60335348c84a3638558076b2eac385 /python
parentb09a67b4617efd8f60da0db6e56a7357254c5bd4 (diff)
parent9eb018c4935235d292d7c693ac15da5761be064a (diff)
downloadvyos-1x-27438a498113d5a35fe83dece5e12c0c0c1b2b17.tar.gz
vyos-1x-27438a498113d5a35fe83dece5e12c0c0c1b2b17.zip
Merge pull request #3157 from c-po/vti-T6085
vti: T6085: interface is always down and only enabled by IPSec daemon
Diffstat (limited to 'python')
-rw-r--r--python/vyos/ifconfig/vti.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/python/vyos/ifconfig/vti.py b/python/vyos/ifconfig/vti.py
index 9ebbeb9ed..9511386f4 100644
--- a/python/vyos/ifconfig/vti.py
+++ b/python/vyos/ifconfig/vti.py
@@ -1,4 +1,4 @@
-# Copyright 2021-2022 VyOS maintainers and contributors <maintainers@vyos.io>
+# Copyright 2021-2024 VyOS maintainers and contributors <maintainers@vyos.io>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
@@ -52,8 +52,14 @@ class VTIIf(Interface):
cmd += f' {iproute2_key} {tmp}'
self._cmd(cmd.format(**self.config))
+
+ # interface is always A/D down. It needs to be enabled explicitly
self.set_interface('admin_state', 'down')
+ def set_admin_state(self, state):
+ """ Handled outside by /etc/ipsec.d/vti-up-down """
+ pass
+
def get_mac(self):
""" Get a synthetic MAC address. """
return self.get_mac_synthetic()