vagrant-ssh
SSH into Vagrant virtual machines
TLDR
SSH into VM
$ vagrant ssh
SSH into specific VM$ vagrant ssh [name]
Run command via SSH$ vagrant ssh -c "[command]"
SSH without TTY$ vagrant ssh -- -T
SYNOPSIS
vagrant ssh [options] [name] [-- sshargs_]
DESCRIPTION
vagrant ssh opens an SSH session to a Vagrant machine. Automatically handles authentication using generated keys. The primary way to access Vagrant VMs interactively.
PARAMETERS
-c, --command cmd
Execute command.-p, --plain
Plain SSH without extras.--
Pass args to ssh.
SEE ALSO
vagrant(1), vagrant-ssh-config(1), ssh(1)
