当前位置: 首页 > 图文教程 > 操作系统 > Unix/Linux > windows box和openssh连接的问题

Unix/Linux
HP工程师经验分享(38)
HP工程师经验分享(37)
vi介绍编(3)ex命令
Linux中流媒体HelixServer的安装和配置
hp-ux简介
浅谈HP-UX认证
惠普取消3H0关于Openview部分
教你如何学习GRUB
windows box和openssh连接的问题
Linux网络驱动程序编写一
Richard Stallman在清华大学的讲演提要zz
Linux网管123---第4章.安装及硬体组态-5.选择想要安装的套件
Linux系统中的文件管理
cvs常用命令
solaris下的ftp命令介绍保存
lumaqq使用手记
Linux网管123---第4章.安装及硬体组态-1.建立一张安装磁片
硬盘安装LINUXFC4成功,感谢CU
RHCE认证浅析
中国Linux培训炙手可热人才需求将突破120万

Unix/Linux 中的 windows box和openssh连接的问题


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-01   浏览: 34 ::
收藏到网摘: n/a


需要注意不同软件产生的密钥对格式可能不一致,需要转换!
here is everything as I did it againas root cd into /home/userthen try this to create the key and add itssh-keygen -t rsa -b 2048 -f /home/user/Keyif [ ! -d .ssh ]; then mkdir .ssh ; chmod 700 .ssh ; fimv Key.pub .ssh/cd .ssh/if [ ! -f authorized_keys ]; then touch authorized_keys ; chmod 600 authorized_keys ; ficat Key.pub >> authorized_keysrm –rf Key.pubcd ../now copy your Key file to the windows box.import it into puttygen and save as a private key (I am in using putty to connect, in puttygen under conversions it says that you can convert it into an ssh.com key but I can't confirm it works).then try to auth with the private key.