Chinaunix首页 | 论坛 | 博客
  • 博客访问: 246195
  • 博文数量: 41
  • 博客积分: 1523
  • 博客等级: 上尉
  • 技术积分: 579
  • 用 户 组: 普通用户
  • 注册时间: 2007-02-05 21:23
文章分类

全部博文(41)

文章存档

2014年(1)

2013年(2)

2012年(1)

2011年(2)

2010年(3)

2009年(1)

2008年(20)

2007年(11)

分类: LINUX

2008-04-15 15:08:21

有些时候,我们在复制/移动文件到另一台机器时会用到scp,因为它比较安全。但如果每次

都要输入密码,就比较烦了,尤其是在script里。不过,ssh有另一种用密钥对来验证的方

式。下面写出我生成密匙对的过程,供大家参考。

第一步:生成密匙对,我用的是rsa的密钥。使用命令 "ssh-keygen -t rsa"


[user1@rh user1]$ ssh-keygen -t rsa
   Generating public/private rsa key pair.
   Enter file in which to save the key (/home/user1/.ssh/id_rsa):
   Created directory '/home/user1/.ssh'.
   Enter passphrase (empty for no passphrase):
   Enter same passphrase again:
   Your identification has been saved in /home/user1/.ssh/id_rsa.
   Your public key has been saved in /home/user1/.ssh/id_rsa.pub.
   The key fingerprint is:
   e0:f0:3b:d3:0a:3d:da:42:01:6a:61:2f:6c:a0:c6:e7 user1@rh.test.com
   [user1@rh user1]$


生成的过程中提示输入密钥对保存位置,直接回车,接受默认值就行了。接着会提示输入一

个不同于你的password的密码,直接回车,让它空着。当然,也可以输入一个。(我比较懒

,不想每次都要输入密码。) 这样,密钥对就生成完了。

其中公共密钥保存在 ~/.ssh/id_rsa.pub
私有密钥保存在 ~/.ssh/id_rsa

然后改一下 .ssh 目录的权限,使用命令 "chmod 755 ~/.ssh"
之后把这个密钥对中的公共密钥复制到你要访问的机器上去,并保存为
~/.ssh/authorized_keys.
注意:
authorized_keys 需要可读的权限,一般为0644,所在的文件夹权限为0755
id_rsa 为私钥,权限为 0600 否则不可以连接。

测试 :
   ssh -i ./id_rsa -l xinyv 172.16.1.168 -p 22

这样就不需要在使用密码链接了。

Autoftp: AutoTelnet

# AUTO FTP
ftp -i -n <<EOF
open hostip port
user username password
you cmd
quit
EOF
# AUTO TELNET
(sleep 1;\
echo username;\
sleep 1;\
echo password;\
echo "your cmd";\
sleep 1;\
exit)|telnet hostip port


阅读(1097) | 评论(0) | 转发(0) |
0

上一篇:linux tree脚本

下一篇:xen 使用的一些技巧

给主人留下些什么吧!~~