summaryrefslogtreecommitdiff
path: root/src/op_mode
diff options
context:
space:
mode:
authorDaniel Pro <43214013+daniel-pro@users.noreply.github.com>2019-02-21 15:13:17 +0100
committerGitHub <noreply@github.com>2019-02-21 15:13:17 +0100
commitde59b9aeef4e89788d260007830c5ea2987b519f (patch)
treebde91a9e0941bb1b5518d5eecb063bbf29e52c0c /src/op_mode
parentc815cfe3e075d9ff118813e67ad36dded31213af (diff)
downloadvyos-1x-de59b9aeef4e89788d260007830c5ea2987b519f.tar.gz
vyos-1x-de59b9aeef4e89788d260007830c5ea2987b519f.zip
T1256: Execute "show ipsec vpn ipsec sa" returns incorrect results
Not sure it's a normal case scenario, the one highlighted in T1256. To managed it I changed the "if" logic.
Diffstat (limited to 'src/op_mode')
-rwxr-xr-xsrc/op_mode/show_ipsec_sa.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/op_mode/show_ipsec_sa.py b/src/op_mode/show_ipsec_sa.py
index bad4f33f0..d1385f959 100755
--- a/src/op_mode/show_ipsec_sa.py
+++ b/src/op_mode/show_ipsec_sa.py
@@ -67,7 +67,7 @@ status_data = []
for conn in connections:
status = subprocess.check_output("ipsec statusall {0}".format(conn), shell=True).decode()
- if re.search(r'no match|CONNECTING', status):
+ if not re.search(r'ESTABLISHED', status):
status_line = [conn, "down", None, None, None, None, None]
else:
try: