You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**SSH connection information**: example local/laptop `~/.ssh/config` configugration
93
-
```
94
-
Host bastion-dev
95
-
HostName localhost
96
-
User sysadmin
97
-
Port 22222
98
-
IdentityFile /home/sysadmin/.ssh/id_rsa
99
-
100
-
Host ansible-dev
101
-
HostName ansible-dev
102
-
User sysadmin
103
-
Port 22
104
-
IdentityFile /home/sysadmin/.ssh/id_rsa
105
-
106
-
Host web-dev
107
-
HostName web-dev
108
-
User sysadmin
109
-
Port 22
110
-
IdentityFile /home/sysadmin/.ssh/id_rsa
111
-
```
112
-
- Assume remote username `sysadmin`. Replace these values in your own local/laptop configuration.
92
+
**SSH connection from bastion**:
113
93
- ProxyJump allow you to use `ssh bastion` to connect to the bastion-dev host, and `ssh ansible-dev` or `ssh web-dev`, and SSH will automatically connect through the bastion jump host.
0 commit comments