假设我有一个名为“remotesystem”的远程系统,以及该系统上的用户帐户“foouser”.
我知道在我的本地系统上,我可以生成一个SSH密钥对作为本地用户“foouser”,将公钥放在“/ remomeystem”上的“/home/foouser/.ssh/authorized_keys”文件中.当我作为“foouser”从本地系统SSH到“remotesystem”时,SSH使用密钥对来验证我.
但是,如果我的本地用户名与远程系统上的用户名不同,该怎么办?也就是说,如果我想将SSH作为本地用户“baruser”转换为“remotesystem”怎么办?显然,我需要为“baruser”生成密钥对,并将公钥添加到“/home/foouser/.ssh/authorized_keys”.然后,我应该能够在本地登录为“baruser”时“ssh foouser @ remotesystem”,SSH将使用密钥对进行身份验证,对吗?
我问,因为我试图在这种情况下使密钥验证工作,但没有成功.我不确定是由于用户名不匹配,还是远程系统上SSH服务器的配置问题.
解决方法
是的,你可以这样做,就像你描述的那样.
baruser@here ~$ssh-add -l 4096 10:b3:fd:29:08:86:24:a6:da:0a:dd:c6:1e:b0:66:6a id_rsa (RSA) baruser@here ~$ssh foouser@remotesystem motd message,etc. foouser@remotesystem ~$