免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1644 | 回复: 0
打印 上一主题 下一主题

不输入密码自动通过SSH方式登录服务器 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-07-01 14:31 |只看该作者 |倒序浏览
本帖最后由 seaquester 于 2010-04-20 09:02 编辑

不输入密码自动通过SSH方式登录服务器
冷胜魁(Seaquester)
lengshengkui@gmail.com
2009-7-1

看到ChinaUnix上面有一个网友的帖子,想在linux下使用ssh登录的时候不用每次都输入密码,又不能使用key的方式。
在网上搜索了一下,有网友用expect写了一个自动登录的脚本,但是我试过之后,却发现不能用。
后来看到有人说使用sshpass可以解决问题。所以自己写了一个脚本。脚本写的比较简单,没有考虑安全性的问题。要使用这个脚本必须安装sshpass这个软件。

sshlogin.sh:

  1. #!/bin/bash
  2. #===============================================================================
  3. #
  4. # FILENAME:
  5. #     sshlogin.sh
  6. #
  7. # DESCRIPTION:
  8. #     Script to use user and password from config file to login remote
  9. #     ssh server.
  10. #     This script needs 1 argument to login the remote ssh server:
  11. #       ipaddr = IP Addreess of remote ssh server.
  12. #
  13. #     For example:
  14. #       ./sshlogin.sh 192.168.0.1
  15. #
  16. #     You need to create a config file(pass.dat) with entries like:
  17. #       server1|user|password
  18. #       server2|user|password
  19. #
  20. # REVISION(MM/DD/YYYY):
  21. #     07/01/2009  Shengkui Leng (shengkui.leng@advantech.com.cn)
  22. #     - Initial version
  23. #
  24. #===============================================================================


  25. #------------------------------------------------------------------------------
  26. # NAME:
  27. #      print_usage
  28. #
  29. # DESCRIPTION:
  30. #      Print usage information
  31. #
  32. # PARAMETERS:
  33. #      $1 - Program name
  34. #
  35. # RETURNS:
  36. #      None
  37. #------------------------------------------------------------------------------
  38. print_usage ()
  39. {
  40.     echo "Usage: $1 <Server IP>"
  41.     exit 1
  42. }
  43. [ $# -eq 1 ] || print_usage $0


  44. CONFIG_FILE=pass.dat
  45. SERVER=$1
  46. ipaddr=""
  47. username=""
  48. password=""

  49. found=0

  50. while read line ; do
  51.     ipaddr=$(echo $line | cut -d'|' -f1)
  52.     username=$(echo $line | cut -d'|' -f2)
  53.     password=$(echo $line | cut -d'|' -f3)

  54.     if [ "$SERVER" == "$ipaddr" ] ; then
  55.         #The server found!
  56.         found=1
  57.         break
  58.     fi
  59. done < $CONFIG_FILE


  60. if [ $found -eq 0 ] ;  then
  61.     echo "The server not found!"
  62.     exit 2
  63. fi

  64. if [ -z "$password" ] || [ -z "$ipaddr" ] || [ -z "$username" ] ; then
  65.     echo "Invalid config file: $CONFIG_FILE!"
  66.     exit 3
  67. fi

  68. #Automatically add new host keys to user known hosts files(known_hosts)
  69. AUTO_ADD_HOST_KEY="-oUserKnownHostsFile=/dev/null -oStrictHostKeyChecking=no"

  70. echo "Logining(ssh) $username@$ipaddr..."
  71. sshpass -p "$password" ssh $username@$ipaddr $AUTO_ADD_HOST_KEY

  72. exit 0
复制代码



另外要建立一个记录密码,用户名和ssh server IP的文件pass.dat:
pass.dat:
192.168.0.1|root|a123B56
192.168.0.2|root|7X890Yz

还有一个问题,就是如果是第一次用ssh登录某一个server时,ssh会提示:
The authenticity of host '192.168.0.1 (192.168.0.11)' can't be established.
RSA key fingerprint is 7b:b9:c3:cd:01:cd:2f:19:4e:96:d3:66:27:55:7f:65.
Are you sure you want to continue connecting (yes/no)?

所以上面的脚本在调用ssh时指定了参数:
-oUserKnownHostsFile=/dev/null -oStrictHostKeyChecking=no
这样ssh就不会出现上面的提示,详情请参考man ssh_config。
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/73823/showart_1982819.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP