dev-notes/docs/misc/ssh.md

46 lines
1.6 KiB
Markdown
Raw Permalink Normal View History

2023-09-18 16:10:14 +02:00
# SSH
`ssh` is a program for logging into a remote machine and for executing commands on a remote machine. It is intended to provide secure encrypted communications between two untrusted hosts over an insecure network.
## Basics
2024-06-16 19:14:59 +02:00
```sh
2023-09-18 16:10:14 +02:00
ssh user@destination <command> # exec <command> in remote machine ($SHELL if omitted)
ssh user@destination -i <path/to/private-key> # use key for auth
ssh user@destination -f # exec ssh in the background
ssh user@destination -N # do not send commands to the server (do not start $SHELL)
ssh user@destination -g # allow remote hosts to connect to local forwarded ports
ssh user@destination -t # force pseudo-tty emulation
```
> **Note**: use `~` while connected to use the "ssh console".
### Jump-Hosts
Connect to the final destination jumping through the specifies other destinations.
2024-06-16 19:14:59 +02:00
```sh
2023-09-18 16:10:14 +02:00
ssh -J user_1@destination_1,user_2@destination_2 user@final_destination
```
## Port Forwarding
![ssh-tunnels](https://iximiuz.com/ssh-tunnels/ssh-tunnels.png "SSH Tunnels Cheat Sheet By Ivan Velichko")
### Local Port Forwarding
Start listening on `local_address:local_port` and forward any traffic to `remote_address:remote_port`.
2024-06-16 19:14:59 +02:00
```sh
2023-09-18 16:10:14 +02:00
ssh -N -f -L local_address:local_port:remote_address:remote_port user@destination
ssh -N -f -L local_port:remote_address:remote_port user@destination # local_address defaults to localhost
```
### Remote Port Forwarding
Start listening on `remote_address:remote_port` and forward any traffic to `local_address:local_port`.
2024-06-16 19:14:59 +02:00
```sh
2023-09-18 16:10:14 +02:00
ssh -N -f -R remote_address:remote_port:local_address:local_port user@destination
```