From 6befdf68344d204c47f557f7950732b2273fc751 Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Fri, 17 Nov 2017 10:22:53 +0100 Subject: [PATCH] make ssh connection transparent do not use an escape character for the host shell Signed-off-by: Dominik Csapak --- PVE/API2/Nodes.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/API2/Nodes.pm b/PVE/API2/Nodes.pm index 8d828436..f03ae0ed 100644 --- a/PVE/API2/Nodes.pm +++ b/PVE/API2/Nodes.pm @@ -662,7 +662,7 @@ __PACKAGE__->register_method ({ # NOTE: vncterm VNC traffic is already TLS encrypted, # so we select the fastest chipher here (or 'none'?) my $remcmd = $remip ? - ['/usr/bin/ssh', '-t', $remip] : []; + ['/usr/bin/ssh', '-e', 'none', '-t', $remip] : []; my $shcmd;