SSH Basics π©βπ»
Having problems setting up SSH to Android? Say no more. π

It is recommended that SSH Server should be used from Termux instead of using it inside the Linux. Using SSH Server from Termux gives you control of both your device and your Linux OS. We are providing you both the methods below:
SSH from Termux:
You can follow this link to get to know the process of using SSH from Termux. This tutorial is provided officially by one of the Termux developers.
SSH from Linux:
Since Linux is executed by using PRoot, it cannot override the default configurations of the Android connectivity so the port number needs to be changed. Follow the below steps to use SSH from Termux:
Install openSSH inside Linux. Choose the command for your distro accordingly from the given list:
Ubuntu 19
apt install openssh-server nano -yUbuntu 18
apt install openssh-server nano -yKali Security OS
apt install openssh-server nano -yDebian
apt install openssh-server nano -yManjaro
pacman -S openssh nano --noconfimArch
pacman -S openssh nano --noconfimFedora
dnf install -y openssh-server nanoAlpine
apk add openssh-server nanoVoid
xbps-install openssh nanoOnce OpenSSH server is installed in your Linux system, we need to modify some things to make it accessible in network escaping Android limitations. Now do:
nano /etc/ssh/sshd_config Find and change the line
#Port 22toPort 2222Find the line
#PermitRootLogin prohibit-passwordor#PermitRootLogin yesand change it toPermitRootLogin yes. If it is alreadyPermitRootLogin yesthen you do not need to change anything.Now when you are done with all the above steps press CTRL+X and then type Y and then press Enter
Now do
ssh-keygen -Aand thenssh-keygenNow we need to set password first. To set password type
passwdand set any password.Once this process is complete just run
/usr/sbin/sshdto start the SSH server.Now just type
ip aand copy the IP Address ofwlanand to connect to SSH Server.To connect to SSH server type
ssh root@localhost -p 2222and use the password to connect to the server.
Last updated
Was this helpful?