diff options
author | Viacheslav <v.gletenko@vyos.io> | 2021-10-28 16:08:29 +0000 |
---|---|---|
committer | Viacheslav <v.gletenko@vyos.io> | 2021-10-28 16:08:34 +0000 |
commit | 494f1f3473d07947e3e03ce410ac0690eaeb9ed9 (patch) | |
tree | 994f620a3049b73915cf084ca79e16fe24735055 /src/op_mode | |
parent | 2c82c9acbde2ccca9c7bb5e646a45fd646463afe (diff) | |
download | vyos-1x-494f1f3473d07947e3e03ce410ac0690eaeb9ed9.tar.gz vyos-1x-494f1f3473d07947e3e03ce410ac0690eaeb9ed9.zip |
IPSec: T3941: Fix uptime for tunnels sa op-mode
The current uptime for tunnels is getting from parent SA
That incorrect as we should get value from child SA
Diffstat (limited to 'src/op_mode')
-rwxr-xr-x | src/op_mode/show_ipsec_sa.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/op_mode/show_ipsec_sa.py b/src/op_mode/show_ipsec_sa.py index c964caaeb..e72f0f965 100755 --- a/src/op_mode/show_ipsec_sa.py +++ b/src/op_mode/show_ipsec_sa.py @@ -46,7 +46,6 @@ def format_output(conns, sas): if parent_sa["state"] == b"ESTABLISHED" and installed_sas: state = "up" - uptime = vyos.util.seconds_to_human(parent_sa["established"].decode()) remote_host = parent_sa["remote-host"].decode() remote_id = parent_sa["remote-id"].decode() @@ -75,6 +74,8 @@ def format_output(conns, sas): # Remove B from <1K values pkts_str = re.sub(r'B', r'', pkts_str) + uptime = vyos.util.seconds_to_human(isa['install-time'].decode()) + enc = isa["encr-alg"].decode() if "encr-keysize" in isa: key_size = isa["encr-keysize"].decode() |