diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-03-21 10:21:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-21 10:21:33 +0100 |
commit | 27438a498113d5a35fe83dece5e12c0c0c1b2b17 (patch) | |
tree | 441162593b60335348c84a3638558076b2eac385 /src | |
parent | b09a67b4617efd8f60da0db6e56a7357254c5bd4 (diff) | |
parent | 9eb018c4935235d292d7c693ac15da5761be064a (diff) | |
download | vyos-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 'src')
-rwxr-xr-x | src/etc/ipsec.d/vti-up-down | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/etc/ipsec.d/vti-up-down b/src/etc/ipsec.d/vti-up-down index 441b316c2..01e9543c9 100755 --- a/src/etc/ipsec.d/vti-up-down +++ b/src/etc/ipsec.d/vti-up-down @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2021-2023 VyOS maintainers and contributors +# Copyright (C) 2021-2024 VyOS maintainers and contributors # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 or later as @@ -57,7 +57,9 @@ if __name__ == '__main__': if 'disable' not in vti: tmp = VTIIf(interface) tmp.update(vti) + call(f'sudo ip link set {interface} up') else: + call(f'sudo ip link set {interface} down') syslog(f'Interface {interface} is admin down ...') elif verb in ['down-client', 'down-host']: if vti_link_up: |