All Tools

SSH Config Generator

Visual builder for ~/.ssh/config files. Add host entries with aliases, identity files, proxy jumps, and keepalive settings.

Global Defaults (Host *)
Add Host
prod-serverdeploy@203.0.113.50
stagingadmin@192.168.1.100:2222
Host *
    ServerAliveInterval 60
    ServerAliveCountMax 3
    AddKeysToAgent yes

Host prod-server
    HostName 203.0.113.50
    User deploy
    IdentityFile ~/.ssh/id_ed25519
    ServerAliveInterval 60
    ServerAliveCountMax 3

Host staging
    HostName 192.168.1.100
    User admin
    Port 2222
    IdentityFile ~/.ssh/staging_key
    ForwardAgent yes
    ProxyJump prod-server