Quickstart Guide
Time to Complete
This guide takes approximately 5 minutes to complete
Setup on Linux/macOS
# Add to ~/.ssh/config Host sshez HostName proxy.sshez.com User your-username Port 22
Replace your-username with your SSHEZ account username
Basic Commands
Connect
ssh sshez
Port Forward
ssh -L 8080:target-host:80 sshez
Connection Examples
Web Server Forward
ssh -L 8080:internal-web:80 sshez
Forwards local port 8080 to port 80 on internal-web
Database Forward
ssh -L 5432:db-server:5432 sshez
Forwards local port 5432 to PostgreSQL on db-server
Next Steps
Visit the full documentation for advanced configurations and best practices