Ssh Connection through a Jump Host: Difference between revisions
Jump to navigation
Jump to search
Line 5: | Line 5: | ||
=Overview= | =Overview= | ||
The following command allows connecting to a target host via a jump host. This connection pattern is widely used with bastion servers, where the bastion server also plays the role of a jump host. | |||
ssh -J <''jump-host-user''>@<''jump-host''> <''target-host-user''>@<''target-host''> |
Revision as of 00:05, 28 December 2019
Internal
Overview
The following command allows connecting to a target host via a jump host. This connection pattern is widely used with bastion servers, where the bastion server also plays the role of a jump host.
ssh -J <jump-host-user>@<jump-host> <target-host-user>@<target-host>