How To Install SSH On Termux

Hello guys I am back. In  this post, am going to tell you how you can use SSH on your Android phone using Termux


Termux is a powerful terminal emulation for Android, with broad community and robust package manager. Making it easier to run Linux computing right in your pocket these days.
This article will explain to you how to set up an SSH Server in Termux and allow you to connect to it from any client in your network.
I refer $ as termux and # as remote machine.
 let's see how we can use SSH on Termux

If you're new to SSH then let me explain a little bit about SSH


What is SSH?

According to the Google

'"Secure Shell (SSH) is a cryptographic network protocol for operating network services securely over an unsecured network. Typical applications include remote command-line, login, and remote command execution, but any network service can be secured with SSH."'

In simple words, SSH is a protocol that helps two Computers to communicate
SSH is used to login to a remote computer and execute commands, file transfer and to perform many other things


Installing required packages


Ensure everything is up to date
$ pkg upgrade
Install the OpenSSH package
$ pkg install openssh

To start the SSH server, run this command
$ sshd
If you need to kill the server, just kill its process


$ pkill sshd

Setting up password authentication

Ideally, we should set up key authentication, but for the sake of simplicity, I’m gonna skip that part, keep in mind that password authentication is less secure than key authentication.

Password authentication is enabled by default on termux, but you can still review the configuration by running
$ cat $PREFIX/etc/ssh/sshd_config

It should look pretty much like this


PrintMotd yes
PasswordAuthentication yes
PubkeyAcceptedKeyTypes +ssh-dss
Subsystem sftp /data/data/com.termux/files/usr/libexec/sftp-server

Set new password
$ passwd
New password:
Retype new password:
New password was successfully set.
At this point, we’re ready to start the SSH Server and connect to the android device.


Connecting from remote machine

First of all, we need to know the android device IP address on the device, get this by running


$ ifconfig

From this output, we know that the device IP address on the network is 192.168.100.92




wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.100.92  netmask 255.255.255.0  broadcast 192.168.100.255
        inet6 fe80::d4d0:8cac:6318:8ac9  prefixlen 64  scopeid 0x20<link>
        unspec 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00  txqueuelen 1000  (UNSPEC)
        RX packets 1118178  bytes 1321397645 (1.2 GiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 577939  bytes 80497172 (76.7 MiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

We’re ready to connect to the android device from remote

# ssh anything@192.168.100.92 -p 8022

You can connect using any username because termux doesn’t care. In this example, I use anything.

Put in the password you’ve setup before, after that, you’re in.

NOTE: This article is only for an Educational purpose. Any actions or activities related to the material contained on this Website is solely your responsibility.  Misuse of the information in this website can result in criminal charges brought against the persons in question. The Authors and Hackers Dormitory.will not be held responsible in the event any criminal charges be brought against any individuals misusing the information in this website to break the law.


No comments:

Thanks for coming on my blog hackersdormitory hope you like it

INSTAGRAM FEED

@_mr_rudr_