From 6a567ae7316f3a8126a5eb08606714c34472bd08 Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Fri, 17 Nov 2017 10:22:55 +0100 Subject: [PATCH] make ssh connection transparent do not use an escape character for vncproxy Signed-off-by: Dominik Csapak --- PVE/API2/Qemu.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/API2/Qemu.pm b/PVE/API2/Qemu.pm index c3f10040..5f9d1057 100644 --- a/PVE/API2/Qemu.pm +++ b/PVE/API2/Qemu.pm @@ -1410,7 +1410,7 @@ __PACKAGE__->register_method({ if ($node ne 'localhost' && $node ne PVE::INotify::nodename()) { ($remip, $family) = PVE::Cluster::remote_node_ip($node); # NOTE: kvm VNC traffic is already TLS encrypted or is known unsecure - $remcmd = ['/usr/bin/ssh', '-T', '-o', 'BatchMode=yes', $remip]; + $remcmd = ['/usr/bin/ssh', '-e', 'none', '-T', '-o', 'BatchMode=yes', $remip]; } else { $family = PVE::Tools::get_host_address_family($node); }