summaryrefslogtreecommitdiff
path: root/src/op_mode/show_openvpn.py
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2019-09-15 01:36:06 +0200
committerGitHub <noreply@github.com>2019-09-15 01:36:06 +0200
commit277c1c7741416314f958c5edc085193ba48aace1 (patch)
treead1a49332073f939b920a66e09aad7653ce314e9 /src/op_mode/show_openvpn.py
parent00d4b8ed90d23181352871a4593d866d9aba0f06 (diff)
parentcf9ff0e3ee803dd868f5d3d29d8184a13cf745f9 (diff)
downloadvyos-1x-277c1c7741416314f958c5edc085193ba48aace1.tar.gz
vyos-1x-277c1c7741416314f958c5edc085193ba48aace1.zip
Merge pull request #129 from DmitriyEshenko/openvpn-fix
[openvpn] T1661 Fixing returned value on check function
Diffstat (limited to 'src/op_mode/show_openvpn.py')
-rwxr-xr-xsrc/op_mode/show_openvpn.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/op_mode/show_openvpn.py b/src/op_mode/show_openvpn.py
index eafb645de..577ed7eb7 100755
--- a/src/op_mode/show_openvpn.py
+++ b/src/op_mode/show_openvpn.py
@@ -162,6 +162,10 @@ if __name__ == '__main__':
remote_host = config.return_effective_values('interfaces openvpn {} remote-host'.format(intf))
remote_port = config.return_effective_value('interfaces openvpn {} remote-port'.format(intf))
+
+ if not remote_port:
+ remote_port = '1194'
+
if len(remote_host) >= 1:
client['remote'] = str(remote_host[0]) + ':' + remote_port