Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

T5817: Fix for show openvpn server #2619

Merged
merged 1 commit into from
Dec 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/op_mode/show_openvpn.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,11 @@ def get_vpn_tunnel_address(peer, interface):
# filter out subnet entries
lst = [l for l in lst[1:] if '/' not in l.split(',')[0]]

tunnel_ip = lst[0].split(',')[0]
if lst:
tunnel_ip = lst[0].split(',')[0]
return tunnel_ip

return tunnel_ip
return 'n/a'

def get_status(mode, interface):
status_file = '/var/run/openvpn/{}.status'.format(interface)
Expand Down