From d14cfaacfcd9451d26dd16000cd060b321c44406 Mon Sep 17 00:00:00 2001 From: Maksim Malchuk Date: Sun, 10 Apr 2016 20:27:06 +0300 Subject: [PATCH] Disable user-defined ssh_config configurations Using the user-defined ssh_config configurations bring more problems instead of enchancements. Signed-off-by: Maksim Malchuk --- libmachine/ssh/client.go | 1 + 1 file changed, 1 insertion(+) diff --git a/libmachine/ssh/client.go b/libmachine/ssh/client.go index c54a080bfe..d5ae894ab2 100644 --- a/libmachine/ssh/client.go +++ b/libmachine/ssh/client.go @@ -63,6 +63,7 @@ const ( var ( baseSSHArgs = []string{ + "-F", "/dev/null", "-o", "BatchMode=yes", "-o", "PasswordAuthentication=no", "-o", "StrictHostKeyChecking=no",