From ebb0b43197a70702d389987eacdb155fccf9f092 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Tue, 11 Nov 2025 11:58:53 +0000 Subject: [PATCH] Change SSH host from 'localhost' to '127.0.0.1' To force it to go via IPV4 --- installation_and_upgrade/ibex_install_utils/admin_runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installation_and_upgrade/ibex_install_utils/admin_runner.py b/installation_and_upgrade/ibex_install_utils/admin_runner.py index eba0693..b93075f 100644 --- a/installation_and_upgrade/ibex_install_utils/admin_runner.py +++ b/installation_and_upgrade/ibex_install_utils/admin_runner.py @@ -13,7 +13,7 @@ # Use Plink as it allows passwords on the command-line, as opposed to # windows-bundled SSH which does not. PLINK = os.path.join(os.path.dirname(os.path.abspath(__file__)), "plink.exe") -SSH_HOST = "localhost" +SSH_HOST = "127.0.0.1" def ssh_available() -> bool: