diff options
author | Christian Breunig <christian@breunig.cc> | 2023-09-19 18:48:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-19 18:48:19 +0200 |
commit | 89f650f3db2dc41750ea15813269416ac5def2e4 (patch) | |
tree | fd294e0212f31c3567a014708f3727bf0c61e2ca | |
parent | 8f79a5cb4ee9b6eb5e825304702558fd5db791df (diff) | |
parent | 967751b12c9851e4a379e781c6c22099b89e4ce3 (diff) | |
download | vyos-1x-89f650f3db2dc41750ea15813269416ac5def2e4.tar.gz vyos-1x-89f650f3db2dc41750ea15813269416ac5def2e4.zip |
Merge pull request #2287 from vyos/mergify/bp/sagitta/pr-2281
T5594: vrrp: extend function is_ipv6_tentative (backport #2281)
-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 c96ee4eed..157530cc1 100644 --- a/python/vyos/utils/network.py +++ b/python/vyos/utils/network.py @@ -135,7 +135,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 |