diff options
author | John Estabrook <jestabro@vyos.io> | 2022-12-09 16:08:57 -0600 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2022-12-09 16:08:57 -0600 |
commit | 779f4001a4828f1af39a5b0b861d62635fcb3726 (patch) | |
tree | 5e5c14926b627e4b275c323432b77ed7b230411b /src/op_mode | |
parent | 810be56a7c74cc6ef09550cf8b85acc1b8408cc2 (diff) | |
download | vyos-1x-779f4001a4828f1af39a5b0b861d62635fcb3726.tar.gz vyos-1x-779f4001a4828f1af39a5b0b861d62635fcb3726.zip |
openvpn: T4872: fix parsing of tunnel IP in 'show openvpn server'
Diffstat (limited to 'src/op_mode')
-rwxr-xr-x | src/op_mode/show_openvpn.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/op_mode/show_openvpn.py b/src/op_mode/show_openvpn.py index 9a5adcffb..e29e594a5 100755 --- a/src/op_mode/show_openvpn.py +++ b/src/op_mode/show_openvpn.py @@ -59,7 +59,11 @@ def get_vpn_tunnel_address(peer, interface): for line in lines: if peer in line: lst.append(line) - tunnel_ip = lst[1].split(',')[0] + + # filter out subnet entries + lst = [l for l in lst[1:] if '/' not in l.split(',')[0]] + + tunnel_ip = lst[0].split(',')[0] return tunnel_ip |