Knowledge Base

308 copy-ready commands with fill-in variables, plus step-by-step installation guides.

Installation Guides 11

Categories

Installation Guides (11)

Tags

7 results

SSH

Generate ed25519 SSH key

ssh-keygen -t ed25519 -C "{{comment}}"
#ssh #keys
6 views 0 copies
SSH

Deploy public key to remote server

mkdir -p ~/.ssh && chmod 700 ~/.ssh && echo "{{public_key}}" >> ~/.ssh/authorize...
#ssh #authorized_keys
3 views 0 copies
SSH

SSH config alias block

Host {{alias}}
#ssh #config
3 views 0 copies
SSH

Remove stale host from known_hosts

ssh-keygen -R {{host}}
#ssh #known_hosts
3 views 0 copies
SSH

Copy SSH Key to Remote Server

ssh-copy-id -i ~/.ssh/id_ed25519.pub {{user}}@{{host}}
#ssh #key
4 views 1 copies
SSH

SSH via Jump Host (Bastion)

ssh -J {{jump_user}}@{{jump_host}} {{target_user}}@{{target_host}}
#ssh #jump
3 views 0 copies
SSH

SSH Local Port Forwarding

ssh -L {{local_port}}:{{bind_host}}:{{remote_port}} {{user}}@{{host}} -N
#ssh #port-forward
3 views 0 copies