1 Star 0 Fork 1

网络工作室/linux_kvm

forked from s1302888/linux_kvm 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ssh_key_copy.sh 574 Bytes
一键复制 编辑 原始数据 按行查看 历史
s1302888 提交于 2017-03-03 17:40 . Upload ssh_key_copy.sh install.sh
#!/usr/bin/expect
set ipaddr139 "172.16.67.139"
set ipaddr145 "172.16.67.145"
set passwd "c8kdu3new"
spawn ssh-keygen -t dsa
expect {
"*.ssh/id_dsa)" {send "\n";exp_continue}
"*for no passphrase" {send "\n";exp_continue}
"*again" {send "\n"}
}
expect eof
spawn ssh-copy-id -i /root/.ssh/id_dsa.pub root@$ipaddr145
expect {
"*yes/no)*" {send "yes\n";exp_continue}
"*password:*" {send "$passwd\n"}
}
expect eof
spawn ssh-copy-id -i /root/.ssh/id_dsa.pub root@$ipaddr139
expect {
"*yes/no)*" {send "yes\n";exp_continue}
"*password:*" {send "$passwd\n"}
}
expect eof
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jf12458/linux_kvm.git
git@gitee.com:jf12458/linux_kvm.git
jf12458
linux_kvm
linux_kvm
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385