首页 > 其他 > 详细

copy_pubkey.sh(非全自动脚本)

时间:2019-09-05 11:00:33      阅读:96      评论:0      收藏:0      [点我收藏+]
#!/bin/bash privkey="$HOME/.ssh/id_rsa" publickey="$HOME/.ssh/id_rsa.pub" # Usage help if [ $# -ne 1 ];then echo "Usage:$0 [user@]hostname" exit 1 fi # test private/publick key exist or not, and the privilege 600 or not if [ -f "$privkey" -a -f "$publickey" ];then privkey_priv=`stat -c %a $privkey` if [ "$privkey_priv" -ne 600 ];then echo "The privilege of private key ~/.ssh/id_rsa is not 600, exit now." exit 1 fi else echo "private/public key is not exist, it will create it" ssh-keygen -t rsa -f $privkey -N ‘‘ echo "keys created over, it located on $HOME/.ssh/" fi ssh-copy-id -o StrictHostKeyChecking=no $1 if [ $? -eq 0 ];then echo -e "\e[1;32m publickey copy over \e[0m" else echo -e "\e[1;31mssh can‘t to the remote host\e[0m" exit 1 fi

copy_pubkey.sh(非全自动脚本)

原文:https://blog.51cto.com/14012942/2435682

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!