summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2022-12-09 16:08:57 -0600
committerJohn Estabrook <jestabro@vyos.io>2022-12-09 16:08:57 -0600
commit779f4001a4828f1af39a5b0b861d62635fcb3726 (patch)
tree5e5c14926b627e4b275c323432b77ed7b230411b
parent810be56a7c74cc6ef09550cf8b85acc1b8408cc2 (diff)
downloadvyos-1x-779f4001a4828f1af39a5b0b861d62635fcb3726.tar.gz
vyos-1x-779f4001a4828f1af39a5b0b861d62635fcb3726.zip
openvpn: T4872: fix parsing of tunnel IP in 'show openvpn server'
-rwxr-xr-xsrc/op_mode/show_openvpn.py6
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