From 16ada096009f10b9d557ba36ab83cdd83afa9fdb Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Fri, 11 Jul 2025 10:22:04 +0200 Subject: [PATCH] Remove SSH proxy to access BSC clusters MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We now have direct connection to them. Reviewed-by: Aleix Boné --- m/common/ssf.nix | 1 - m/common/ssf/ssh.nix | 8 -------- 2 files changed, 9 deletions(-) delete mode 100644 m/common/ssf/ssh.nix diff --git a/m/common/ssf.nix b/m/common/ssf.nix index 4638c54..60fbb04 100644 --- a/m/common/ssf.nix +++ b/m/common/ssf.nix @@ -5,6 +5,5 @@ ./ssf/fs.nix ./ssf/net.nix ./ssf/hosts.nix - ./ssf/ssh.nix ]; } diff --git a/m/common/ssf/ssh.nix b/m/common/ssf/ssh.nix deleted file mode 100644 index 86978f9..0000000 --- a/m/common/ssf/ssh.nix +++ /dev/null @@ -1,8 +0,0 @@ -{ - # Connect to intranet git hosts via proxy - programs.ssh.extraConfig = '' - # Connect to BSC machines via hut proxy too - Host amdlogin1.bsc.es armlogin1.bsc.es hualogin1.bsc.es glogin1.bsc.es glogin2.bsc.es fpgalogin1.bsc.es - ProxyCommand nc -X connect -x hut:23080 %h %p - ''; -}