2
Configure el cliente SSH para usar diferentes puertos en Mac OS X
Tengo un .ssh/configarchivo configurado para conectarse a diferentes servidores con SSH: ### # Identity files ### IdentityFile ~/.ssh/id_dsa_home IdentityFile ~/.ssh/id_dsa_github IdentityFile ~/.ssh/id_rsa_bitbucket ### # Global options ### PasswordAuthentication no PubkeyAuthentication yes Host * Port 22 Host icarus User elitalon HostName 192.168.1.1 Port 54301 Host zeus User elitalon HostName 192.168.2.1 Port …