ssh:无法解析主机名 ubuntu:名称解析暂时失败

ssh: Could not resolve hostname ubuntu: Temporary failure in name resolution

我正在尝试实现一个 ssh 配置文件。刚才它正在使用不同的 ec2 实例,所以我不确定这里有什么不同。我可以 ssh -i "key.pem" ubuntun@ipaddress 很好,但是当我使用我的配置文件时 ssh ubuntu 我得到以下错误

debug1: Reading configuration data /home/anders/.ssh/config
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
ssh: Could not resolve hostname ubuntu: Temporary failure in name resolution

我的配置如下所示

Host fsdfs.compute.amazonaws.com
User ubuntu
Port 22
IdentitiesOnly yes
IdentityFile ~/.ssh/fds-fds-dsfs.pem

当我在 .ssh 上 运行 ls -ld 我得到 drwx------ 2 anders anders 4096 May 26 06:45 /home/anders/.ssh

当我 运行 ls -ld on .ssh/config 我得到 -rw------- 1 anders anders 137 May 26 06:26 /home/anders/.ssh/config

希望有人可以帮助解决这个问题。提前致谢

这最终对我有用,除非有人知道为什么我的不起作用这就是解决方案

Host ubuntu  
  HostName fsdf.us-east-2.compute.amazonaws.com
  User ubuntu
  Port 22
  IdentitiesOnly yes
  IdentityFile ~/.ssh/fds-dfas-fdsa.pem

在“config”文件中添加以下配置

Host *
StrictHostKeyChecking no
UserKnownHostsFile=/dev/null

配置文件的位置是'~/.ssh/config'

然后从 instance-1 执行 ssh hostname2,您就可以从 instance-1 连接到 instance-2。

此处,hostname2 将是 instance-2 中配置的主机名,位置为 'vim /etc/hosts'