为什么我的 Vagrant Ubuntu 上存在 authorized_keys?

为什么我的 Vagrant Ubuntu 上存在 authorized_keys?

从我的剧本文件夹中运行

vagrant up

Vagrantfile 很简单

Vagrant.configure("2") do |config|

  config.vm.box = "ubuntu/focal64"

end

我无法复制我的钥匙

ssh-copy-id [email protected] -p 2200
/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
/usr/bin/ssh-copy-id: INFO: 3 key(s) remain to be installed -- if you are prompted now it is to install the new keys
[email protected]: Permission denied (publickey).

我可以通过这种方式 ssh

ssh [email protected] -p 2200 -i .vagrant/machines/default/virtualbox/private_key

然后我检查了authorized_keys(在vagrant@ubuntu-focal上)

cat authorized_keys 
ssh-rsa AAAAB3NzaC1yc2E************* vagrant

如何了解 ssh-rsa 是如何创建的?

相关内容