SSH Cheatsheet
Connect via SSH client with a different user by default⌗
nano ~/.ssh/config
Add the following to the file above:
Host *
User DEFAULT_USER
Force Password auth⌗
ssh -o PreferredAuthentications=password -o PubkeyAuthentication=no [email protected]
<- OTHERS ->