Skip to content

Instantly share code, notes, and snippets.

@vpnwall-services
Last active December 1, 2023 20:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vpnwall-services/d5084a90521e0e38054daa03a7159bfb to your computer and use it in GitHub Desktop.
Save vpnwall-services/d5084a90521e0e38054daa03a7159bfb to your computer and use it in GitHub Desktop.
[Ngrok Installer] Script to install ngrok #linux #script #installer #ngrok
#!/bin/bash
apt-get install unzip -y
wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip
unzip ngrok-stable-linux-amd64.zip
mkdir /opt/ngrok
mv ngrok /opt/ngrok/ngrok
echo -e "You should now login on https://dashboard.ngrok.com/user/signup"
echo -e "Once done, you should copy the command inside the"
echo -e "Connect your account frame"
echo -e "It look like this"
echo -e "./ngrok authtoken TOKEN"
echo -e "Once done, your ngrok is fully functional"
echo -e "cd into /opt/ngrok and then"
echo -e "./ngrok help"
echo -e "./ngrok http 80"
echo -e "./ngrok tcp 22"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment