ssh
Use Mosh for uninterrupted SSH access
# add the PPA
sudo add-apt-repository ppa:keithw/mosh
# update the package index
sudo apt update
# install mosh
sudo apt install mosh -y
# let it through the firewall
sudo ufw allow mosh
sudo ufw reloadForce password authentication
# password only
ssh -o PreferredAuthentications=password [email protected]
# fallback to pubkey if server has password auth disabled
ssh -o PreferredAuthentications=password,publickey [email protected]Last updated