summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoraapostoliuk <a.apostoliuk@vyos.io>2024-02-16 21:00:59 +0200
committeraapostoliuk <a.apostoliuk@vyos.io>2024-02-16 21:00:59 +0200
commitbb6e6fc2119584df6ec571e7e9335dc509d5faeb (patch)
tree8ff74e37e33f1dd457a431bb35c5a14012edb6ad /src
parent8c860fa7c423cc2bd72f9e71a5f8c52f43e02dfa (diff)
downloadvyos-1x-bb6e6fc2119584df6ec571e7e9335dc509d5faeb.tar.gz
vyos-1x-bb6e6fc2119584df6ec571e7e9335dc509d5faeb.zip
T3722: Fixed L-Time in 'show vpn ike sa' command
Fixed L-Time in 'show vpn ike sa' command
Diffstat (limited to 'src')
-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))