Hello, world!
,
我有一个 VPS 设置,多个域名指向它。随意,我喜欢通过我正在处理的域名通过 SSH 访问它。因此,例如,如果我正在使用 做某事example1.com
,我将使用 登录ssh [email protected]
,如果我正在使用 工作example2.com
,我将使用 登录ssh [email protected]
。它们都指向同一台机器上的同一用户。然而,因为 SSH 跟踪服务器的指纹,它告诉我有一个违规的主机密钥,并让我确认访问。
$ ssh [email protected]
Warning: the ECDSA host key for 'example2.com' differs from the key for
the IP address '123.123.123.123'
Offending key for IP in /home/me/.ssh/known_hosts:33
Matching host key in /home/me/.ssh/known_hosts:38
Are you sure you want to continue
connecting (yes/no)?
有没有办法忽略这个警告?谢谢!