--- layout: getting_started title: Getting Started - SSH --- # SSH Even though Vagrant allows for a vast amount of configuration through its commands and the Vagrantfile, nothing beats the power of the command line. Sometimes you just have to get into the files and play around to get things working just right or to debug an application. Vagrant provides full SSH access to the virtual environments it creates through a single command: `vagrant ssh`. By running `vagrant ssh`, Vagrant will automatically drop you into a fully functional terminal shell (it really is just `ssh` being run, there is no middle man involved in communicating from the VM to the host machine). After running `vagrant ssh`, you should see something similar to the following: {% highlight bash %} $ vagrant ssh ... vagrant@vagrantup:~$ {% endhighlight %}
SSH is not easy to install or use from the Windows command-line. Instead,
Vagrant provides you with a ppk
file which can be used with
PuTTY to
connect to your virtual environments.
Read more about this issue on the Windows setup page.