两台机器做互相信任 scp不使用密码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了两台机器做互相信任 scp不使用密码相关的知识,希望对你有一定的参考价值。
机器A和机器B之间做一个公钥的信任,这样就可以在下次做scp的时候不需要进行密码验证 可以更好的实现自动化
讲一下原理:
假如服务器A上的一个pub(公钥)放到了互联网的任意一台机器B上了,那么服务器A此时若往服务器B上传数据或服务器A主动的想在服务器B上往自身cp数据都是需要进行验证的。
操作步骤:使用用户为root
[[email protected] ~]# ssh-keygen -b 1024 -t rsa Generating public/private rsa key pair. Enter file in which to save the key (/root/.ssh/id_rsa): /root/.ssh/id_rsa already exists. Overwrite (y/n)? y Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /root/.ssh/id_rsa. Your public key has been saved in /root/.ssh/id_rsa.pub. The key fingerprint is: aa:8a:3b:5b:d3:9e:6d:27:6e:1b:f5:21:46:78:b5:ec [email protected] The key‘s randomart image is: +--[ RSA 1024]----+ | . | | . o . | | . o o | | o . | | S E | | . + o . | | o . o . | |.o o ++.. | |++..++++ | +-----------------+ scp -p .ssh/id_rsa.pub [email protected]:/root/.ssh/authorized_keys [email protected]‘s password: id_rsa.pub 100% 220 0.2KB/s 00:00 #在本机往155上主动传输数据: [[email protected] ~]# scp test.txt 192.168.1.155:/root/ test.txt 100% 0 0.0KB/s 00:00 #在本机主动的cp一个155的数据到本地 [[email protected] ~]# scp 192.168.1.155:/root/test.txt ./ test.txt 100% 0 0.0KB/s 00:00
本文出自 “精忠报国” 博客,请务必保留此出处http://xinsir.blog.51cto.com/5038915/1783549
以上是关于两台机器做互相信任 scp不使用密码的主要内容,如果未能解决你的问题,请参考以下文章