From 58dc387f8fb1598bbce267f9cde1cdad425f181a Mon Sep 17 00:00:00 2001 From: Sylvie Crowe <107814465+oneirocosm@users.noreply.github.com> Date: Mon, 28 Oct 2024 21:12:35 -0700 Subject: [PATCH] feat: add proxy jump to the ssh keywords list (#82) --- docs/connections.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/connections.mdx b/docs/connections.mdx index fe18ea3..a075e53 100644 --- a/docs/connections.mdx +++ b/docs/connections.mdx @@ -32,7 +32,8 @@ At the moment, we are capable of parsing any SSH config file that does not conta |PasswordAuthentication| This is used to specify if password authentication should be attempted. The default is `yes`.| |KbdInteractiveAuthentication| This is used to specify if keyboard-interactive authentication should be attempted. The default is `yes`.| |PreferredAuthentications| (partial) Specifies the order the client should attempt to authenticate in. It is partially implemented as it does not support `gssapi-with-mic` or `hostbased` authentication. The default is `publickey,keyboard-interactive,password`| -|AddKeysToAgent| (partial) This option will automatically add keys and their corresponding passphrase to your running ssh agent if it is enabled. It is partially supported as it can only accept `yes` and `no` as valid inputs. Other inputs such as `confirm` or a time interval will behave the same as `no`. The default value is `no`. +|AddKeysToAgent| (partial) This option will automatically add keys and their corresponding passphrase to your running ssh agent if it is enabled. It is partially supported as it can only accept `yes` and `no` as valid inputs. Other inputs such as `confirm` or a time interval will behave the same as `no`. The default value is `no`.| +|ProxyJump| Specifies one or more jump proxies in a comma separated list. Each will be visited sequentially using TCP forwarding before connecting to the desired connection (also using TCP forwarding). It can be set to `none` to disable the feature.| ### Example SSH Config Host For a quick example, a host in your config file may look like: