vagrant/website/docs/source/v2/cli/ssh.html.md

24 lines
683 B
Markdown
Raw Normal View History

---
page_title: "vagrant ssh - Command-Line Interface"
sidebar_current: "cli-ssh"
---
# SSH
**Command: `vagrant ssh`**
This will SSH into a running Vagrant machine and give you access to a shell.
If a `--` (two hyphens) are found on the command line, any arguments after
this are passed directly into the `ssh` executable. This allows you to pass
2013-12-19 12:23:18 +00:00
any arbitrary commands to do things such as reverse tunneling down into the
`ssh` program.
## Options
* `-c COMMAND` or `--command COMMAND` - This executes a single SSH command, prints
2015-04-26 00:22:10 +00:00
out the stdout and stderr, and exits.
* `-p` or `--plain` - This does an SSH without authentication, leaving
authentication up to the user.