pages*: add missing mnemonics (part 1) (#12143)

* pages*: add missing mnemonics

---------

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
This commit is contained in:
Vitor Henrique
2024-02-09 11:34:08 -03:00
committed by GitHub
parent cd0b74ed2c
commit 814e511bae
34 changed files with 72 additions and 76 deletions

View File

@@ -4,15 +4,15 @@
> Auto-reconnects to keep port forwarding tunnels up. Accepts all `ssh` flags.
> More information: <https://www.harding.motd.ca/autossh>.
- Start an SSH session, restarting when a monitoring port fails to return data:
- Start an SSH session, restarting when the [M]onitoring port fails to return data:
`autossh -M {{monitor_port}} "{{ssh_command}}"`
- Forward a local port to a remote one, restarting when necessary:
- Forward a [L]ocal port to a remote one, restarting when necessary:
`autossh -M {{monitor_port}} -L {{local_port}}:localhost:{{remote_port}} {{user}}@{{host}}`
- Fork `autossh` into the background before executing `ssh` and don't open a remote shell:
- Fork `autossh` into the background before executing `ssh` and do [N]ot open a remote shell:
`autossh -f -M {{monitor_port}} -N "{{ssh_command}}"`