diff options
author | Christian Breunig <christian@breunig.cc> | 2024-02-17 09:38:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-17 09:38:09 +0100 |
commit | 52aff3b997129dba5dfcfe1c5cbce41e4ee7b50b (patch) | |
tree | 8ff74e37e33f1dd457a431bb35c5a14012edb6ad | |
parent | 8c860fa7c423cc2bd72f9e71a5f8c52f43e02dfa (diff) | |
parent | bb6e6fc2119584df6ec571e7e9335dc509d5faeb (diff) | |
download | vyos-1x-52aff3b997129dba5dfcfe1c5cbce41e4ee7b50b.tar.gz vyos-1x-52aff3b997129dba5dfcfe1c5cbce41e4ee7b50b.zip |
Merge pull request #3021 from aapostoliuk/T3722-circinus
T3722: Fixed L-Time in 'show vpn ike sa' command
-rwxr-xr-x | src/op_mode/vpn_ike_sa.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/op_mode/vpn_ike_sa.py b/src/op_mode/vpn_ike_sa.py index 069c12069..7186bdec2 100755 --- a/src/op_mode/vpn_ike_sa.py +++ b/src/op_mode/vpn_ike_sa.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2021 VyOS maintainers and contributors +# Copyright (C) 2021-2024 VyOS maintainers and contributors # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 or later as @@ -57,7 +57,7 @@ def ike_sa(peer, nat): dh_group = s(sa['dh-group']) if 'dh-group' in sa else 'n/a' natt = 'yes' if 'nat-local' in sa and s(sa['nat-local']) == 'yes' else 'no' atime = s(sa['established']) if 'established' in sa else '0' - ltime = s(sa['rekey-time']) if 'rekey_time' in sa else '0' + ltime = s(sa['rekey-time']) if 'rekey-time' in sa else '0' print(ike_sa_tunnel_prefix) print(' %-6s %-6s %-12s %-13s %-14s %-6s %-7s %-7s\n' % (state, version, encryption, integrity, dh_group, natt, atime, ltime)) |