How can Install Ngrok Server on Termux

Hello friends our today topic is How to install Ngrok in Termux? Here we go step by step in installation of Ngrok.

Lets continue with the what Ngrok actually is... 


What is Ngrok?

Ngrok is a reverse proxy that creates a secure "tunnel" from a public endpoint for a web service running locally.


Basically, Ngrok creates a tunnel, where its function is to redirect external connections to your localhost.

How Ngrok works?

Let's assume you have a web server running on your machine. Now you intend to share, with a colleague, the address of a website that you developed, but as it is on the private network. To do this, just use Ngrok. Considering that the webserver is at port 8080, you only need to execute the following command:
ngrok http 8080

What is the use of Ngrok?

  • Share website to a colleague that is running on a private network;
  • Create a TCP server on your device;
  • Port forwarding;
  • Testing mobile apps connected to your locally running backend;
  • Stable addresses for your connected devices that are deployed in the field;
  • Running personal cloud services from your home;


How to install Ngrok in Termux?

Here are the steps to install Ngrok in Termux. Please follow the steps one by one carefully to avoid any type of error. Please note that you must wait for each command to get completed.


1. First of all, open your  Termux and then type the below command to update and upgrade your Termux repositories.

pkg update && pkg upgrade -y

 

2. Now type the below command. The below command will install  zip and  wget packages in your Termux. Here  zip will be used to unzip the zipped folder of Ngrok while  wget will be used to download the Ngrok.

pkg install zip wget -y

 

3. Now type the below command as it is to download Ngrok in your Termux.

wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-arm.zip

 

Wait for downloading to be finished. It may take up to 2 to 5 minutes to download Ngrok depending upon your Internet speed.

4. Type the below command in your Termux to unzip the Ngrok folder.

unzip ngrok-stable-linux-arm.zip

 

5. After Unzipping, use the below command to give Ngrok permission to read, write, and execute.

chmod +x ngrok

 

6. Now open the  Ngrok website .

Now click on the  Signup button, and then create a new account on Ngrok.

Now you need to confirm the Ngrok account. Open your email to confirm your Ngrok account. There you will see Ngrok email. Simply open that mail and click on the confirm account button.

7. Now login to Ngrok with your Email Id and Password and search for auth token on the Ngrok page. Then simply type the below command in your Termux And replace <YOUR_AUTH_TOKEN> with your auth token.

./ngrok authtoken YOUR_AUTH_TOKEN_HERE

 

Running the above command will add your auth token to your ngrok.yml file. Connecting an account will list your open tunnels in the dashboard, give you longer tunnel timeouts.

8. Hence Ngrok has been successfully installed in your Termux. Use the below command to see how to use Ngrok in Termux.

./ngrok help


Tip : T o solve Ngrok reconnecting issue open your mobile hotspot and start Ngrok again.



Devesh Singh

I am Devesh Singh, Student in Varanasi India . I like to write blog on technology and ethical hacking and other tricks or solutions to problem that anyone face during using technology and Internet.

Post a Comment

Previous Post Next Post