2013-09-04 22:51:56 +00:00
|
|
|
---
|
2013-09-06 16:50:43 +00:00
|
|
|
page_title: "config.ssh - Vagrantfile"
|
2013-09-04 22:51:56 +00:00
|
|
|
sidebar_current: "vagrantfile-ssh"
|
|
|
|
---
|
|
|
|
|
|
|
|
# SSH Settings
|
|
|
|
|
|
|
|
**Config namespace: `config.ssh`**
|
|
|
|
|
|
|
|
The settings within `config.ssh` relate to configuring how Vagrant
|
|
|
|
will access your machine over SSH. As with most Vagrant settings, the
|
|
|
|
defaults are typically fine, but you can fine tune whatever you'd like.
|
|
|
|
|
|
|
|
## Available Settings
|
|
|
|
|
|
|
|
`config.ssh.username` - This sets the username that Vagrant will SSH
|
|
|
|
as by default. Providers are free to override this if they detect a more
|
|
|
|
appropriate user. By default this is "vagrant," since that is what most
|
|
|
|
public boxes are made as.
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
2014-01-03 19:31:33 +00:00
|
|
|
`config.ssh.password` - This sets a password that Vagrant will use to
|
|
|
|
authenticate the SSH user. Note that Vagrant recommends you use key-based
|
|
|
|
authentiation rather than a password (see `private_key_path`) below. If
|
|
|
|
you use a password, Vagrant will automatically insert a keypair if
|
|
|
|
`insert_key` is true.
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
2013-09-04 22:51:56 +00:00
|
|
|
`config.ssh.host` - The hostname or IP to SSH into. By default this is
|
|
|
|
empty, because the provider usually figures this out for you.
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
`config.ssh.port` - The port to SSH into. By default this is port 22.
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
`config.ssh.guest_port` - The port on the guest that SSH is running on. This
|
|
|
|
is used by some providers to detect forwarded ports for SSH. For example, if
|
|
|
|
this is set to 22 (the default), and Vagrant detects a forwarded port to
|
|
|
|
port 22 on the guest from port 4567 on the host, Vagrant will attempt
|
|
|
|
to use port 4567 to talk to the guest if there is no other option.
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
`config.ssh.private_key_path` - The path to the private key to use to
|
|
|
|
SSH into the guest machine. By default this is the insecure private key
|
|
|
|
that ships with Vagrant, since that is what public boxes use. If you make
|
|
|
|
your own custom box with a custom SSH key, this should point to that
|
|
|
|
private key.
|
|
|
|
|
2013-11-25 23:45:39 +00:00
|
|
|
You can also specify multiple private keys by setting this to be an array.
|
|
|
|
This is useful, for example, if you use the default private key to bootstrap
|
|
|
|
the machine, but replace it with perhaps a more secure key later.
|
|
|
|
|
2013-09-04 22:51:56 +00:00
|
|
|
<hr>
|
|
|
|
|
|
|
|
`config.ssh.forward_agent` - If `true`, agent forwarding over SSH
|
|
|
|
connections is enabled. Defaults to false.
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
`config.ssh.forward_x11` - If `true`, X11 forwarding over SSH connections
|
|
|
|
is enabled. Defaults to false.
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
2014-01-03 19:31:33 +00:00
|
|
|
`config.ssh.insert_key` - If `true`, Vagrant will automatically insert
|
|
|
|
an insecure keypair to use for SSH. By default, this is true. This only
|
|
|
|
has an effect if you don't already use private keys for authentication.
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
2014-04-24 09:17:55 +00:00
|
|
|
`config.ssh.proxy_command` - A command-line command to execute that receives
|
|
|
|
the data to send to SSH on stdin. This can be used to proxy the SSH connection.
|
|
|
|
`%h` in the command is replaced with the host and `%p` is replaced with
|
|
|
|
the port.
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
2014-07-17 17:35:34 +00:00
|
|
|
`config.ssh.pty` - If `true`, pty will be used for provisioning. Defaults to false.
|
|
|
|
|
2014-07-17 17:54:55 +00:00
|
|
|
This setting is an _advanced feature_ that should not be enabled unless
|
|
|
|
absolutely necessary. It breaks some other features of Vagrant, and is
|
|
|
|
really only exposed for cases where it is absolutely necessary. If you can find
|
|
|
|
a way to not use a pty, that is recommended instead.
|
|
|
|
|
2014-07-17 17:35:34 +00:00
|
|
|
<hr>
|
|
|
|
|
2013-09-04 22:51:56 +00:00
|
|
|
`config.ssh.shell` - The shell to use when executing SSH commands from
|
|
|
|
Vagrant. By default this is `bash -l`. Note that this has no effect on
|
|
|
|
the shell you get when you run `vagrant ssh`. This configuration option
|
|
|
|
only affects the shell to use when executing commands internally in Vagrant.
|