diff options
-rw-r--r-- | sshconnect.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sshconnect.c b/sshconnect.c index 8adc94307..4aff104b8 100644 --- a/sshconnect.c +++ b/sshconnect.c | |||
@@ -1078,9 +1078,13 @@ 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:"); | ||
1085 | error(" ssh-keygen -f \"%s\" -R %s", | ||
1086 | ip_found->file, ip); | ||
1087 | } | ||
1084 | } | 1088 | } |
1085 | /* The host key has changed. */ | 1089 | /* The host key has changed. */ |
1086 | warn_changed_key(host_key); | 1090 | warn_changed_key(host_key); |
@@ -1088,6 +1092,8 @@ check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port, | |||
1088 | user_hostfiles[0]); | 1092 | user_hostfiles[0]); |
1089 | error("Offending %s key in %s:%lu", key_type(host_found->key), | 1093 | error("Offending %s key in %s:%lu", key_type(host_found->key), |
1090 | host_found->file, host_found->line); | 1094 | host_found->file, host_found->line); |
1095 | error(" remove with:"); | ||
1096 | error(" ssh-keygen -f \"%s\" -R %s", host_found->file, host); | ||
1091 | 1097 | ||
1092 | /* | 1098 | /* |
1093 | * If strict host key checking is in use, the user will have | 1099 | * If strict host key checking is in use, the user will have |