From bb6e6fc2119584df6ec571e7e9335dc509d5faeb Mon Sep 17 00:00:00 2001 From: aapostoliuk Date: Fri, 16 Feb 2024 21:00:59 +0200 Subject: T3722: Fixed L-Time in 'show vpn ike sa' command Fixed L-Time in 'show vpn ike sa' command --- src/op_mode/vpn_ike_sa.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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)) -- cgit v1.2.3