Linux 命令(210)—— ssh-copy-id 命令

Posted 恋喵大鲤鱼

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 命令(210)—— ssh-copy-id 命令相关的知识,希望对你有一定的参考价值。

文章目录

1.命令简介

ssh-copy-id 使用本地可用的密钥授权登录远程计算机。

ssh-copy-id 可以把本地主机的公钥复制到远程主机的 authorized_keys 文件上。ssh-copy-id 也会给远程主机的用户主目录(home)和 ~/.ssh 和 ~/.ssh/authorized_keys 设置合适的权限。

2.命令格式

ssh-copy-id [-n] [-i [identity_file]] [-p port] [-o ssh_option] [user@]hostname
ssh-copy-id -h | -?

3.选项说明

-i <identity_file>
	指定认证文件(公钥)-f
	强制模式。
-n
	测试,不实际替换。
-p <port>
	指定端口。
-o <ssh_option>
	指定其他 ssh(1) 参数。

4.常用示例

(1)把本地主机的公钥复制到远程主机。

ssh-copy-id dablelv@192.168.12.103

(2)拷贝本机指定公钥到远程主机。

ssh-copy-id -i ~/.ssh/id_rsa.pub dablelv@192.168.12.101

参考文献

ssh-copy-id(1) — Linux manual page - linux.org

以上是关于Linux 命令(210)—— ssh-copy-id 命令的主要内容,如果未能解决你的问题,请参考以下文章

Linux 命令(210)—— ssh-copy-id 命令

linux抓包

如何监听某个端口命令 linux

s5pv210的启动方式详解

linux 常用命令

嵌入式linux开发uboot移植——三星官方uboot的移植