सभी tools
निःशुल्क

एक खोजने योग्य, प्रिंट करने योग्य SSH संदर्भ — कनेक्टिंग, कीज़, कॉन्फ़िग, टनलिंग, SCP/SFTP और एजेंट फॉरवर्डिंग। मुफ्त।

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 फाइल, पोर्ट फॉरवर्डिंग और टनलिंग, जंप होस्ट और बैस्टियन, scp और sftp के साथ फाइल ट्रांसफर, और एजेंट फॉरवर्डिंग के साथ ssh-agent।

SSH सिंटैक्स को आधा-अधूरा याद रखना आसान है — उस टनल के लिए -L है या -R, कौन से ssh-keygen फ्लैग एक मॉडर्न की बनाते हैं, ProxyJump कैसे काम करता है? यहां हर रो इनमें से किसी एक सवाल का जवाब सटीक कमांड और एक-पंक्ति स्पष्टीकरण के साथ देती है।

यह शीट फ्री है और पूरी तरह आपके ब्राउज़र में रेंडर होती है। इसे सर्च से लाइव फिल्टर करें, स्टिकी टेबल ऑफ कंटेंट्स से किसी सेक्शन पर जंप करें, एक क्लिक में किसी भी कमांड को कॉपी करें और उन पलों के लिए प्रिंट करें जब ठीक SSH ही खराब हो।

SSH चीट शीट का उपयोग कैसे करें

  1. शीट खोलें और सेक्शन देखें, Connecting और Key generation से लेकर ssh-agent & forwarding तक।
  2. tunnel, scp या ProxyJump जैसा कोई शब्द सर्च करें ताकि कमांड्स लाइव फिल्टर हो जाएं।
  3. जब आपको कोई खास रेसिपी चाहिए हो तो स्टिकी साइडबार के जरिए Port forwarding / tunneling या SSH config पर जंप करें।
  4. किसी कमांड या उसके कॉपी आइकन पर क्लिक करके उसे कॉपी करें, फिर होस्ट और पोर्ट प्लेसहोल्डर एडजस्ट करें।
  5. सर्वर इमरजेंसी के लिए ऑफलाइन कॉपी रखने हेतु शीट प्रिंट करें।

अक्सर पूछे जाने वाले प्रश्न

आठ सेक्शन: कनेक्ट करना, की जनरेशन, पब्लिक की इंस्टॉल करना, ~/.ssh/config फाइल, पोर्ट फॉरवर्डिंग और टनलिंग, जंप होस्ट और बैस्टियन, scp और sftp के साथ फाइल ट्रांसफर, और फॉरवर्डिंग के साथ ssh-agent।

हां। टनलिंग सेक्शन -L और -R फॉर्म को साथ-साथ दिखाता है, यह बताते हुए कि हर एक किस दिशा में फॉरवर्ड करता है, साथ ही डायनामिक फॉरवर्डिंग भी — SSH के सबसे उलझन भरे हिस्सों में से एक।

हां। ssh-keygen से की जनरेट करने और अपनी पब्लिक की सर्वर पर इंस्टॉल करने के लिए सेक्शन हैं, साथ ही की लोड और फॉरवर्ड करने के लिए एजेंट कमांड्स भी।

हां। किसी भी कमांड या उसकी रो पर मौजूद कॉपी आइकन पर क्लिक करने से वह आपके क्लिपबोर्ड में कॉपी हो जाता है ताकि आप उसे टर्मिनल में पेस्ट करके अपना होस्ट बदल सकें।

हां, यह फ्री है, इसके लिए किसी अकाउंट की जरूरत नहीं और यह ऑफलाइन उपयोग के लिए साफ-सुथरा प्रिंट होता है।

इसे साझा करें

लोकप्रिय खोजें
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
मदद चाहिए?
इस टूल में कोई समस्या मिली? हमारी टीम को बताएं।
समस्या की रिपोर्ट करें

इस मुफ़्त टूल को अपनी वेबसाइट पर जोड़ें — नीचे दिया गया कोड कॉपी और पेस्ट करें।