diff options
author | Daniel Pro <43214013+daniel-pro@users.noreply.github.com> | 2019-02-21 15:13:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-21 15:13:17 +0100 |
commit | de59b9aeef4e89788d260007830c5ea2987b519f (patch) | |
tree | bde91a9e0941bb1b5518d5eecb063bbf29e52c0c /src/op_mode | |
parent | c815cfe3e075d9ff118813e67ad36dded31213af (diff) | |
download | vyos-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-x | src/op_mode/show_ipsec_sa.py | 2 |
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: |