D3F4
>Loading command center_

Secure Shell connection, tunneling, and file transfer commands for managing remote systems.
Connect to a remote server via SSH
ssh user@192.168.1.1Connect to SSH running on a non-default port
ssh -p 2222 user@192.168.1.1Authenticate using a private key file
ssh -i ~/.ssh/id_rsa user@192.168.1.1Forward a local port to a service on the remote network
ssh -L 8080:localhost:80 user@192.168.1.1Expose a local service through the remote server
ssh -R 9090:localhost:3000 user@192.168.1.1Create a SOCKS5 proxy tunnel through the remote host
ssh -D 1080 user@192.168.1.1Copy a local file to a remote server
scp file.txt user@192.168.1.1:/remote/path/Copy a file from a remote server to local machine
scp user@192.168.1.1:/remote/file.txt ./Generate a new RSA 4096-bit key pair
ssh-keygen -t rsa -b 4096 -C "you@example.com"Copy your public key to a remote server for passwordless login
ssh-copy-id user@192.168.1.1