summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2024-02-17 12:04:59 +0200
committerGitHub <noreply@github.com>2024-02-17 12:04:59 +0200
commitaf2b0f7504f25f9ac3cbefe5e9b5e25de48dd10d (patch)
tree22e7b4e562c6cc77881b5837164ba5e06b5e4e41
parentdb8b115301d5476151e7d0910ba674a683683122 (diff)
parent3504c908ccf0256fad37179cf98d1db2aabe581e (diff)
downloadvyos-1x-af2b0f7504f25f9ac3cbefe5e9b5e25de48dd10d.tar.gz
vyos-1x-af2b0f7504f25f9ac3cbefe5e9b5e25de48dd10d.zip
Merge pull request #3022 from vyos/mergify/bp/sagitta/pr-3021
T3722: Fixed L-Time in 'show vpn ike sa' command (backport #3021)
-rwxr-xr-xsrc/op_mode/vpn_ike_sa.py4
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))