最近发现ssh连接的时候却很慢,ping的速度非常好,让人误以为是ssh连接不上。分析结果,主要原因为:DNS的解析IP导致,可分别使用以下几种分析处理方式1、在server上/etc/hosts文件中把你本机的ip和hostname加入 [root@linux-215 ~]# cat /etc/hosts 127.0.0.1 loc
#ssh-keygen -b 2048 -t rsa #for i in $(cat 1.txt) ;do ssh-copy-id -i ~/.ssh/id_rsa.pub $i;done1.txt的内容192.16.1.211 192.16.1.212 192.16.1.213 192.16.1.214 192.16.1.216 192.16.1.240 192.16.1.
第一步:生成密钥文件[root@localhost expect]# ssh-keygen -t rsa #连续敲三个回车即可生成 Generating public/private rsa key pair. Enter file in which to save the key (/root/.ssh/id_rsa): Enter passphrase (empty for no pass
为了进行批量关机工作,前提要配置好ssh的双机信任。A机192.168.1.241B机192.168.1.212在A机上获取一个pub密钥,即为公共密钥。执行这个命令后:ssh-keygen -t rsa在 ~/.ssh/目录下使用scp命令,将公钥拷贝到B机suse-linux:~/.ssh # scp id_rsa.pub root@192.168.1.212:/tmp
Copyright © 2005-2024 51CTO.COM 版权所有 京ICP证060544号