以下是通过两台Linux主机配置SSH实现互相免密登录的代码及操作流程:
node1主机IP:192.168.48.129
server主机IP:192.168.48.130
1、在node1主机上生成密钥对:
ssh-keygen -t rsa
2、将node1主机的公钥发送到server主机:ssh-copy-id root@192.168.48.130
3、使用node1主机的私钥登录到server主机:ssh root@192.168.48.130
4、在server主机上生成密钥对:
ssh-keygen -t rsa
5、将server主机的公钥发送到node1主机:ssh-copy-id root@192.168.48.129
6.使用server主机的私钥登录到node1主机:ssh root@192.168.48.129
通过以上步骤,你可以实现两台Linux主机之间的互相免密登录。