From 822655d85cecedb9dad82a04e4a5ea4caa0e9106 Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Fri, 30 Oct 2020 12:36:54 -0700 Subject: [PATCH] Make note that the `extra_args` option is only for the `ssh` command --- website/pages/docs/vagrantfile/ssh_settings.mdx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/website/pages/docs/vagrantfile/ssh_settings.mdx b/website/pages/docs/vagrantfile/ssh_settings.mdx index 0ad8ca5ee..653ebee83 100644 --- a/website/pages/docs/vagrantfile/ssh_settings.mdx +++ b/website/pages/docs/vagrantfile/ssh_settings.mdx @@ -48,7 +48,9 @@ defaults are typically fine, but you can fine tune whatever you would like. as reverse tunneling down into the ssh program. These options can either be single flags set as strings such as `"-6"` for IPV6 or an array of arguments such as `["-L", "8008:localhost:80"]` for enabling a tunnel from host port 8008 - to port 80 on guest. + to port 80 on guest. **Note:** This option only affects the `ssh` command or instances + where the SSH executable is invoked (non-interactive SSH connections use the internal + SSH communicator which is unaffected by this setting). - `config.ssh.forward_agent` (boolean) - If `true`, agent forwarding over SSH connections is enabled. Defaults to false.