diff options
author | Christian Breunig <christian@breunig.cc> | 2023-11-12 10:10:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-12 10:10:52 +0100 |
commit | 45ac050b914d8fbbc64f3492ec7aed80d710643c (patch) | |
tree | 129ce4d073d74f053c2a810bd23e97f9c34c6f91 /src/op_mode/ping.py | |
parent | e5a53d48cf149facb30410c25e55ab3780205186 (diff) | |
parent | c0de93d37354ec89f44dde7f1b5a4c8af550a019 (diff) | |
download | vyos-1x-45ac050b914d8fbbc64f3492ec7aed80d710643c.tar.gz vyos-1x-45ac050b914d8fbbc64f3492ec7aed80d710643c.zip |
Merge pull request #2435 from bbabich/current
mtr: T5658: Add VRF support for mtr (+ op_mode wrapper)
Diffstat (limited to 'src/op_mode/ping.py')
-rwxr-xr-x | src/op_mode/ping.py | 28 |
1 files changed, 5 insertions, 23 deletions
diff --git a/src/op_mode/ping.py b/src/op_mode/ping.py index f1d87a118..583d8792c 100755 --- a/src/op_mode/ping.py +++ b/src/op_mode/ping.py @@ -1,6 +1,6 @@ #! /usr/bin/env python3 -# Copyright (C) 2020 VyOS maintainers and contributors +# Copyright (C) 2023 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 @@ -14,29 +14,13 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -import os import sys import socket import ipaddress -from vyos.utils.network import get_all_vrfs -from vyos.ifconfig import Section - - -def interface_list() -> list: - """ - Get list of interfaces in system - :rtype: list - """ - return Section.interfaces() - - -def vrf_list() -> list: - """ - Get list of VRFs in system - :rtype: list - """ - return list(get_all_vrfs().keys()) +from vyos.utils.network import interface_list +from vyos.utils.network import vrf_list +from vyos.utils.process import call options = { 'audible': { @@ -295,6 +279,4 @@ if __name__ == '__main__': sys.exit(f'ping: Unknown host: {host}') command = convert(ping[version], args) - - # print(f'{command} {host}') - os.system(f'{command} {host}') + call(f'{command} {host}') |