summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2014-02-09 16:10:03 +0000
committerColin Watson <cjwatson@debian.org>2015-08-19 16:33:32 +0100
commitaedcf9cb37f512b929ce895ba1fccc9ca39166b0 (patch)
treec70f2537d730091268d7b5697fe1b540dfc01f49
parentc9c2ebb4680ea6872218b1e4519fe31a2043a27a (diff)
Mention ssh-keygen in ssh fingerprint changed warning
Bug: https://bugzilla.mindrot.org/show_bug.cgi?id=1843 Bug-Ubuntu: https://bugs.launchpad.net/bugs/686607 Last-Update: 2013-09-14 Patch-Name: mention-ssh-keygen-on-keychange.patch
-rw-r--r--sshconnect.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sshconnect.c b/sshconnect.c
index 0073c6edc..6065dffa4 100644
--- a/sshconnect.c
+++ b/sshconnect.c
@@ -1078,9 +1078,12 @@ check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port,
1078 error("%s. This could either mean that", key_msg); 1078 error("%s. This could either mean that", key_msg);
1079 error("DNS SPOOFING is happening or the IP address for the host"); 1079 error("DNS SPOOFING is happening or the IP address for the host");
1080 error("and its host key have changed at the same time."); 1080 error("and its host key have changed at the same time.");
1081 if (ip_status != HOST_NEW) 1081 if (ip_status != HOST_NEW) {
1082 error("Offending key for IP in %s:%lu", 1082 error("Offending key for IP in %s:%lu",
1083 ip_found->file, ip_found->line); 1083 ip_found->file, ip_found->line);
1084 error(" remove with: ssh-keygen -f \"%s\" -R %s",
1085 ip_found->file, ip);
1086 }
1084 } 1087 }
1085 /* The host key has changed. */ 1088 /* The host key has changed. */
1086 warn_changed_key(host_key); 1089 warn_changed_key(host_key);
@@ -1088,6 +1091,8 @@ check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port,
1088 user_hostfiles[0]); 1091 user_hostfiles[0]);
1089 error("Offending %s key in %s:%lu", key_type(host_found->key), 1092 error("Offending %s key in %s:%lu", key_type(host_found->key),
1090 host_found->file, host_found->line); 1093 host_found->file, host_found->line);
1094 error(" remove with: ssh-keygen -f \"%s\" -R %s",
1095 host_found->file, host);
1091 1096
1092 /* 1097 /*
1093 * If strict host key checking is in use, the user will have 1098 * If strict host key checking is in use, the user will have