From 87f137be25b491d05b06f7e902bbabe3dfe2efb8 Mon Sep 17 00:00:00 2001 From: Saikrishna Arcot Date: Tue, 24 Oct 2023 22:51:16 -0700 Subject: [PATCH] Upgrade paramiko in docker-ptf to 2.9.5 (#16897) With Debian Bookworm, Paramiko 2.9 or newer will need to be used to be able to connect to devices running that version of Debian (specifically, to those running OpenSSH 9.2). Paramiko is currently on 3.3.1. For now, upgrade to 2.9.5. Signed-off-by: Saikrishna Arcot --- dockers/docker-sonic-mgmt/Dockerfile.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockers/docker-sonic-mgmt/Dockerfile.j2 b/dockers/docker-sonic-mgmt/Dockerfile.j2 index 39002f6d1e..2c02e47ef1 100755 --- a/dockers/docker-sonic-mgmt/Dockerfile.j2 +++ b/dockers/docker-sonic-mgmt/Dockerfile.j2 @@ -71,7 +71,7 @@ RUN pip3 install aiohttp \ netaddr \ netmiko==2.4.2 \ pandas \ - paramiko==2.7.1 \ + paramiko==2.9.5 \ passlib \ pexpect \ prettytable \