3.2 KiB
layout | page_title | sidebar_current | description |
---|---|---|---|
docs | config.winssh - Vagrantfile | vagrantfile-winssh | The settings within "config.winssh" relate to configuring how Vagrant will access your machine over Windows OpenSSH. As with most Vagrant settings, the defaults are typically fine, but you can fine tune whatever you would like. |
WinSSH
The WinSSH communicator is built specifically for the Windows native port of OpenSSH. It does not rely on a POSIX-like environment which removes the requirement of extra software installation (like cygwin) for proper functionality.
For more information, see the Win32-OpenSSH project page.
WinSSH Settings
The WinSSH communicator uses the same connection configuration options as the SSH communicator. These settings provide the information for the communicator to establish a connection to the VM.
The configuration options below are specific to the WinSSH communicator.
Config namespace: config.winssh
Available Settings
-
config.winssh.forward_agent
(boolean) - Iftrue
, agent forwarding over SSH connections is enabled. Defaults to false. -
config.winssh.forward_env
(array of strings) - An array of host environment variables to forward to the guest. If you are familiar with OpenSSH, this corresponds to theSendEnv
parameter.config.winssh.forward_env = ["CUSTOM_VAR"]
-
config.winssh.proxy_command
(string) - 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. -
config.winssh.keep_alive
(boolean) - Iftrue
, this setting SSH will send keep-alive packets every 5 seconds by default to keep connections alive. -
config.winssh.shell
(string) - The shell to use when executing SSH commands from Vagrant. By default this iscmd
. Valid values are"cmd"
or"powershell"
. Note that this has no effect on the shell you get when you runvagrant ssh
. This configuration option only affects the shell to use when executing commands internally in Vagrant. -
config.winssh.export_command_template
(string) - The template used to generate exported environment variables in the active session. This can be useful when using a Bourne incompatible shell like C shell. The template supports two variables which are replaced with the desired environment variable key and environment variable value:%ENV_KEY%
and%ENV_VALUE%
. The default template for acmd
configured shell is:config.winssh.export_command_template = 'set %ENV_KEY%="%ENV_VALUE%"'
The default template for a
powershell
configured shell is:config.winssh.export_command_template = '$env:%ENV_KEY%="%ENV_VALUE%"'
-
config.winssh.sudo_command
(string) - The command to use when executing a command withsudo
. This defaults to%c
(assumes vagrant user is an administrator and needs no escalation). The%c
will be replaced by the command that is being executed. -
config.winssh.upload_directory
(string) - The upload directory used on the guest to store scripts for execute. This is set toC:\Windows\Temp
by default.