我怎样才能让 ssh-copy-id 使用 22 以外的端口?

我怎样才能让 ssh-copy-id 使用 22 以外的端口?

我怎样才能让 ssh-copy-id 使用 22 以外的端口?

我尝试使用 -p 但得到以下结果:

ssh-copy-id -p XXX [email protected]
Bad port 'umask 077; test -d ~/.ssh || mkdir ~/.ssh ; cat >> ~/.ssh/authorized_keys'

我知道该端口是好的,因为我已通过该端口连接到服务器。

答案1

我使用这个命令,注意引号:

ssh-copy-id -i ~/.ssh/id_dsa.pub "user@host -p 6842"

答案2

~/.ssh/config像下面这样设置要使用的端口:

Host secret-host.example.com
Port 2222

答案3

尝试这个:

ssh-copy-id "user@host -p 8888"

答案4

ssh-copy-id -i ~/.ssh/id_rsa.pub ‘-p 221 username@host’

从:是否可以在 22 以外的端口上运行 ssh-copy-id?

相关内容