How to use ssh agent forwarding with “vagrant ssh”?
I’m using vagrant 2 on OS X Mountain Lion. Vagrant.configure(“2”) do |config| config.ssh.private_key_path = “~/.ssh/id_rsa” config.ssh.forward_agent = true end config.ssh.private_key_path is your local private key Your private key must be available to the local ssh-agent. You can check with ssh-add -L, if it’s not listed add it with ssh-add ~/.ssh/id_rsa Don’t forget to add you … Read more