diff options
author | Christian Breunig <christian@breunig.cc> | 2023-09-18 18:48:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-18 18:48:18 +0200 |
commit | 9620a233c093a494fc36e6ee4341214d0bd3915f (patch) | |
tree | 834273774323771285f11214d30040422365a261 | |
parent | 665523ac1b00f36de0bc09609a29e122a96c5612 (diff) | |
parent | b6ae59354b5d69751cc7ea75e0aa4ac0070afa47 (diff) | |
download | vyos-1x-9620a233c093a494fc36e6ee4341214d0bd3915f.tar.gz vyos-1x-9620a233c093a494fc36e6ee4341214d0bd3915f.zip |
Merge pull request #2281 from nicolas-fort/T5594
T5594: vrrp: extend function is_ipv6_tentative
-rw-r--r-- | python/vyos/utils/network.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/utils/network.py b/python/vyos/utils/network.py index 4c579c760..9354bd495 100644 --- a/python/vyos/utils/network.py +++ b/python/vyos/utils/network.py @@ -139,7 +139,7 @@ def is_ipv6_tentative(iface: str, ipv6_address: str) -> bool: import json from vyos.utils.process import rc_cmd - rc, out = rc_cmd(f'ip -6 --json address show dev {iface} scope global') + rc, out = rc_cmd(f'ip -6 --json address show dev {iface}') if rc: return False |