这是非常奇怪的行为SSH
,当尝试使用主机名连接机器时,它会被拒绝或挂起。但是当连接IP时它工作正常。无法 ping 通主机object2
。这些都是VM的。
[root@centseven ]# ssh -vvv object2.com
OpenSSH_6.6.1, OpenSSL 1.0.1e-fips 11 Feb 2013
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 56: Applying options for *
debug2: ssh_connect: needpriv 0
debug1: Connecting to object2.com [10.0.0.51] port 22.
/etc/hosts
文件的条目centserver
[root@centseven ~]# cat /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
10.0.0.31 compute1.com compute1
10.0.0.41 block1.com block1
10.0.0.51 object2.com object2
其他主机工作正常并且能够 ping 通。
[root@centseven ~]# ip r
default via 10.0.2.2 dev enp0s3 proto static metric 100
10.0.2.0/24 dev enp0s3 proto kernel scope link src 10.0.2.15 metric 100
192.168.56.0/24 dev enp0s8 proto kernel scope link src 192.168.56.11 metric 100
[root@object2 ~]# ip r
default via 10.0.2.2 dev enp0s3
10.0.0.0/24 dev enp0s8 proto kernel scope link src 10.0.0.52
10.0.2.0/24 dev enp0s3 proto kernel scope link src 10.0.2.15
169.254.0.0/16 dev enp0s3 scope link metric 1002
169.254.0.0/16 dev enp0s8 scope link metric 1003
[root@compute1 ~]# ip r
default via 10.0.2.2 dev enp0s3 proto static metric 100
10.0.0.0/24 dev enp0s8 proto kernel scope link src 10.0.0.31 metric 100
10.0.2.0/24 dev enp0s3 proto kernel scope link src 10.0.2.15 metric 100
答案1
如果您不使用 DNS,请将 object2.com 的记录添加到 /etc/hosts 文件中。如果您使用 DNS,请确保它知道 object2.com 主机。