SSH (22)
Secure Shell.
Port
22 TCP
SSH
Config File
Linux:
/etc/ssh/sshd_configWindows:
%ProgramData%\ssh\sshd_config
Interact
If anonymous access is enabled, it's possible log in with username “Anonymous” and password “”.
ssh <USER>@<IP>ssh -i <KEY> <USER>@<IP>SSH Key
ssh-keygenMove the public key in ~/.ssh/authorized_keys target machine.
Upload Key on Server SSH
ssh-keygen -f ~/.ssh/id_rsa -N ""
ssh-copy-id -i ~/.ssh/id_rsa.pub <USER>@<IP>Last updated
Was this helpful?