diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-07-02 12:45:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-02 12:45:25 +0200 |
commit | 15d8cc3ad93b69bcda98c8644a6e10e02cbeaf44 (patch) | |
tree | 55987b6d51c5fc9ee92689b235176df941a91f95 /src/op_mode/show_ipsec_sa.py | |
parent | c232fdc4c5464858818f1a83c35ed5d0b7fba15a (diff) | |
parent | f480346bb8e934b1ce2e0fc3be23f7168273bba1 (diff) | |
download | vyos-1x-15d8cc3ad93b69bcda98c8644a6e10e02cbeaf44.tar.gz vyos-1x-15d8cc3ad93b69bcda98c8644a6e10e02cbeaf44.zip |
Merge pull request #903 from sarthurdev/T3659_T3656
ipsec: T3656: T3659: Fix passthrough with ipv6. Fix op-mode ipsec commands. Remove python3-crypto dependency.
Diffstat (limited to 'src/op_mode/show_ipsec_sa.py')
-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 a94c7efc6..e491267fd 100755 --- a/src/op_mode/show_ipsec_sa.py +++ b/src/op_mode/show_ipsec_sa.py @@ -26,7 +26,7 @@ import vyos.util def format_output(conns, sas): sa_data = [] - for peer, parent_conn in conn.items(): + for peer, parent_conn in conns.items(): if peer not in sas: continue |