iredmail-doc/en_US/iredmail-easy/iredmail-easy.what.is.ssh.j...

28 lines
857 B
Markdown
Raw Normal View History

2019-09-18 23:30:03 -05:00
# iRedMail Easy: What is SSH jump server
It's common that you have a protected Linux/BSD server that isnt publicly
accessible. Typically, you may have what is commonly referred to as a
*__jump server__* or *__bastion server__* which is accessible from a public
network (sometimes this jump server would be in a DMZ, and also Linux/BSD),
you connect to this jump server first, then connect to the protected server
from jump server.
Sample setup:
```
+--------+ +-------------+ +------------------+
| Laptop | <---> | Jump server | <--> | Protected server |
+--------+ +-------------+ +------------------+
```
You can connect to the protected server through jump server via ssh with
command like below:
```
ssh -v -J user1@jump-server user2@protected-server
```
## References
- [SSH manual page](https://man.openbsd.org/ssh#J)