Using an SSH local tunnel to establish a connection to a private network
Local Forwarding ssh -L {local-port}:{internal-ip}:{internal-port} remote-user@remote-ip
Nov 4, 20241 min read4
Search for a command to run...
Articles tagged with #linux
Local Forwarding ssh -L {local-port}:{internal-ip}:{internal-port} remote-user@remote-ip
1. Installing Let's Encrypt client $ apt-get update $ sudo apt-get install certbot $ apt-get install python3-certbot-nginx 2. Installing SSL for your domain sudo certbot --nginx -d example.com -d www.example.com Congratulations! You have successfully...
Run this command to install curl -fsSL https://get.docker.com/ | sh sudo usermod -aG docker $(whoami)