[pve-devel] [PATCH] PVE/API2/Qemu: remove hardcoded blowfish cipher

Stefan Priebe s.priebe at profihost.ag
Wed Oct 31 12:16:55 CET 2012


Signed-off-by: Stefan Priebe <s.priebe at profihost.ag>
---
 PVE/API2/Qemu.pm |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/PVE/API2/Qemu.pm b/PVE/API2/Qemu.pm
index f4ae566..09ab1e7 100644
--- a/PVE/API2/Qemu.pm
+++ b/PVE/API2/Qemu.pm
@@ -1065,10 +1065,8 @@ __PACKAGE__->register_method({
 	    $remip = PVE::Cluster::remote_node_ip($node);
 	}
 
-	# NOTE: kvm VNC traffic is already TLS encrypted,
-	# so we select the fastest chipher here (or 'none'?)
-	my $remcmd = $remip ? ['/usr/bin/ssh', '-T', '-o', 'BatchMode=yes',
-			       '-c', 'blowfish-cbc', $remip] : [];
+	# NOTE: kvm VNC traffic is already TLS encrypted
+	my $remcmd = $remip ? ['/usr/bin/ssh', '-T', '-o', 'BatchMode=yes', $remip] : [];
 
 	my $timeout = 10;
 
-- 
1.7.2.5




More information about the pve-devel mailing list