Όλα τα εργαλεία
Δωρεάν

Μια αναζητήσιμη, εκτυπώσιμη αναφορά SSH — σύνδεση, κλειδιά, ρυθμίσεις, tunneling, SCP/SFTP και προώθηση agent. Δωρεάν.

Connecting

10
ssh user@host
Connect as user to host
ssh -p 2222 user@host
Connect on a non-default port
ssh -i ~/.ssh/id_ed25519 user@host
Use a specific identity key
ssh user@host 'uptime'
Run a single remote command and exit
ssh -v user@host
Verbose output for debugging (-vvv for more)
ssh -t user@host 'sudo -i'
Force a pseudo-terminal (for interactive cmds)
ssh -X user@host
Enable X11 forwarding
ssh -o ServerAliveInterval=60 user@host
Send keepalives to avoid timeouts
exit / Ctrl-D
Close the remote session
~.
Force-disconnect a frozen session

Key generation

8
ssh-keygen -t ed25519 -C 'you@example.com'
Generate a modern Ed25519 key pair
ssh-keygen -t rsa -b 4096
Generate a 4096-bit RSA key pair
ssh-keygen -t ed25519 -f ~/.ssh/work
Write the key to a specific file
ssh-keygen -p -f ~/.ssh/id_ed25519
Change the passphrase of an existing key
ssh-keygen -y -f ~/.ssh/id_ed25519
Print the public key from a private key
ssh-keygen -l -f ~/.ssh/id_ed25519.pub
Show a key fingerprint
ssh-keygen -lv -f ~/.ssh/id_ed25519.pub
Show the fingerprint randomart image
ssh-keygen -R host
Remove a host key from known_hosts

Installing public keys

7
ssh-copy-id user@host
Copy your default public key to the server
ssh-copy-id -i ~/.ssh/work.pub user@host
Copy a specific public key
ssh-copy-id -p 2222 user@host
Copy the key over a custom port
cat ~/.ssh/id_ed25519.pub | ssh user@host 'cat >> ~/.ssh/authorized_keys'
Manual copy when ssh-copy-id is missing
chmod 700 ~/.ssh
Correct permissions on the .ssh directory
chmod 600 ~/.ssh/authorized_keys
Correct permissions on authorized_keys
pbcopy < ~/.ssh/id_ed25519.pub
Copy public key to clipboard (macOS)

SSH config (~/.ssh/config)

10
Host myserver
Alias: connect with `ssh myserver`
HostName 203.0.113.10
Real hostname or IP for the alias
User deploy
Default username for this host
Port 2222
Default port for this host
IdentityFile ~/.ssh/work
Key to use for this host
IdentitiesOnly yes
Only offer the listed key
ForwardAgent yes
Forward the SSH agent to this host
Host *.example.com
Wildcard match for a domain
Host *
Global defaults for all hosts
ServerAliveInterval 60
Keepalive interval for all hosts

Port forwarding / tunneling

7
ssh -L 8080:localhost:80 user@host
Local: reach host:80 via local 8080
ssh -L 5432:db.internal:5432 user@host
Local forward to a third host through the server
ssh -R 9000:localhost:3000 user@host
Remote: expose your local 3000 as host:9000
ssh -D 1080 user@host
Dynamic: SOCKS proxy on local port 1080
ssh -N -L 8080:localhost:80 user@host
Tunnel only, do not run a remote shell
ssh -f -N -L 8080:localhost:80 user@host
Open the tunnel in the background
ssh -g -L 8080:localhost:80 user@host
Allow other hosts to use the local forward

Jump hosts / bastions

5
ssh -J jump@bastion user@target
Hop through a bastion to reach the target
ssh -J h1,h2 user@target
Chain multiple jump hosts
ProxyJump bastion
Config equivalent of -J
ProxyCommand ssh -W %h:%p bastion
Older ProxyCommand-based jump
ssh -o ProxyJump=bastion user@target
Inline ProxyJump option

File transfer (scp & sftp)

7
scp file user@host:/path/
Copy a local file to the server
scp user@host:/path/file .
Copy a remote file to the current dir
scp -r dir/ user@host:/path/
Recursively copy a directory
scp -P 2222 file user@host:/path/
Copy over a custom port (note capital -P)
sftp user@host
Start an interactive SFTP session
put localfile / get remotefile
Upload / download inside SFTP
rsync -avz -e ssh dir/ user@host:/path/
Efficient sync over SSH (resumable)

ssh-agent & forwarding

7
eval "$(ssh-agent -s)"
Start the agent in the current shell
ssh-add ~/.ssh/id_ed25519
Add a key to the agent
ssh-add -l
List keys loaded in the agent
ssh-add -D
Remove all keys from the agent
ssh-add --apple-use-keychain ~/.ssh/id_ed25519
Store passphrase in macOS keychain
ssh -A user@host
Forward the agent for this connection
ForwardAgent yes
Config equivalent of agent forwarding

Καμία καταχώριση δεν ταιριάζει με «:q».


Σχετικά με το Συνοπτικός οδηγός SSH

Αυτό το φύλλο εξαπάτησης για SSH συγκεντρώνει τις εντολές και τη διαμόρφωση που χρειάζεστε για να εργαστείτε με απομακρυσμένους διακομιστές: σύνδεση, δημιουργία κλειδιών, εγκατάσταση δημόσιων κλειδιών, το αρχείο ~/.ssh/config, προώθηση θυρών και σήραγγες, jump hosts και bastions, μεταφορά αρχείων με scp και sftp, και ssh-agent με προώθηση agent.

Η σύνταξη SSH είναι εύκολο να την ξεχάσετε εν μέρει — είναι -L ή -R για εκείνη τη σήραγγα, ποιες σημαίες του ssh-keygen παράγουν ένα σύγχρονο κλειδί, πώς λειτουργεί το ProxyJump; Κάθε γραμμή εδώ απαντά σε μία από αυτές τις ερωτήσεις με την ακριβή εντολή και μια σύντομη επεξήγηση.

Το φύλλο είναι δωρεάν και αποδίδεται εξ ολοκλήρου στο πρόγραμμα περιήγησής σας. Φιλτράρετέ το ζωντανά με αναζήτηση, μεταβείτε σε μια ενότητα από τον κολλημένο πίνακα περιεχομένων, αντιγράψτε οποιαδήποτε εντολή με ένα κλικ και εκτυπώστε το για τις στιγμές που ακριβώς το SSH είναι αυτό που έχει πρόβλημα.

Πώς να χρησιμοποιήσετε το Συνοπτικός οδηγός SSH

  1. Ανοίξτε το φύλλο και εξετάστε τις ενότητες, από τη Σύνδεση και Δημιουργία κλειδιών έως το ssh-agent & προώθηση.
  2. Αναζητήστε έναν όρο όπως tunnel, scp ή ProxyJump για να φιλτράρετε τις εντολές σε πραγματικό χρόνο.
  3. Μεταβείτε στην Προώθηση θυρών / σήραγγες ή στη διαμόρφωση SSH μέσω της κολλημένης πλαϊνής μπάρας όταν χρειάζεστε μια συγκεκριμένη συνταγή.
  4. Κάντε κλικ σε μια εντολή ή στο εικονίδιο αντιγραφής της για να την αντιγράψετε, και μετά προσαρμόστε τα σύμβολα κράτησης θέσης host και port.
  5. Εκτυπώστε το φύλλο για να διατηρήσετε ένα αντίγραφο εκτός σύνδεσης για καταστάσεις έκτακτης ανάγκης στον διακομιστή.

Συχνές ερωτήσεις

Οκτώ ενότητες: σύνδεση, δημιουργία κλειδιών, εγκατάσταση δημόσιων κλειδιών, το αρχείο ~/.ssh/config, προώθηση θυρών και σήραγγες, jump hosts και bastions, μεταφορά αρχείων με scp και sftp, και ssh-agent με προώθηση.

Ναι. Η ενότητα σηράγγων δείχνει τις μορφές -L και -R η μία δίπλα στην άλλη με περιγραφές για την κατεύθυνση προώθησης καθεμιάς, καθώς και τη δυναμική προώθηση — ένα από τα πιο συχνά συγχεόμενα μέρη του SSH.

Ναι. Υπάρχουν ενότητες για τη δημιουργία κλειδιών με το ssh-keygen και για την εγκατάσταση του δημόσιου κλειδιού σας σε έναν διακομιστή, μαζί με εντολές agent για φόρτωση και προώθηση κλειδιών.

Ναι. Κάνοντας κλικ σε οποιαδήποτε εντολή, ή στο εικονίδιο αντιγραφής στη γραμμή της, την αντιγράφετε στο πρόχειρό σας ώστε να μπορείτε να την επικολλήσετε σε τερματικό και να αλλάξετε τον host σας.

Ναι, είναι δωρεάν, δεν χρειάζεται λογαριασμό και εκτυπώνεται καθαρά για χρήση εκτός σύνδεσης.

Κοινοποίηση

Δημοφιλείς αναζητήσεις
ssh cheat sheet ssh commands list ssh keygen command ssh config file example ssh port forwarding ssh copy id scp and sftp commands ssh jump host
Χρειάζεστε βοήθεια;
Βρήκατε πρόβλημα με αυτό το εργαλείο; Ενημερώστε μας.
Αναφορά προβλήματος

Προσθέστε αυτό το δωρεάν εργαλείο στον δικό σας ιστότοπο — αντιγράψτε και επικολλήστε τον παρακάτω κώδικα.