Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
There is image placement mistakes from Example 2. Tunnel to a Web Server for WINDOWS PUTTY… …/tunneling/img3.png is not placed and hence all the succeeding putty window images are placed in decrement of 1 place then they should be placed
Sorry but this was a little hard to follow. I already understand tunnels and proxys and was hoping to strengthen or gain new knowledge on the subject. Certain parts where hard to understand. I do t mean to sound rude but it’s not hard to tell that English is probably not your native language. I found this to be more confusing than helpful.
For anyone wondering, if you want a SOCKS proxy and want to listen to all interfaces, the format is the following: ssh abc@def -D 0.0.0.0:port
Thanks for taking the time to share some tunneling tricks~
– Sam Smith Technology Evangelist and Aspiring Chef. Large file transfers made easy. www.innorix.com/en/DS
For benefit of us neophytes: Consider this from Part 2. above:
***ssh abc@def -R 8080:127.0.0.1:80
abc - username
def - server address
8080 - port number that will be opened on remote server - our proxy server
127.0.0.1 - IP address we open tunnel to
80 - port number we open tunnel to***
Is the ssh command entered in the local or remote machine. You could show this by noting: $remote ssh abc@def -R 8080:127.0.0.1:80
So this opens port 8080 on our remote vps machine. Do I need to open 8080 in the firewall using something like this? Or does ssh take care of that. $remote sudo ufw allow 8080
In my browser on the local machine, I enter this: http://127.0.0.1:80 then my browser responds to packets received on port 8080 at my remote vps server?
4,“127.0.0.1 - IP address we open tunnel to” implies the ip address on the local machine that packets received on the remote vps on port 8080 will be forwarded to? I sit at 127.0.0.1 with my local machine tuned to port 80 and receive all packets coming in from the vps as received there on 8080?
Yeah I know RTF but it really wasn’t obvious to me. Great tutorials here at Digital Ocean. Thanks to all contributors.
Hi,
My uni is blocking all UDP connections, I mean there is no port oppened for UDP. And I need to establish UDP connection to connect to game clients and game. Proxifier and Proxycap is not redirecting the network properly and it just shuts down the connection. I managed to bypass the browser restrictions using port 443 in my server and port 5359 in my machine, anyway it doesn’t matters I can use any port there,
The problem is that when I try to open a game client it dosen’t establish connection and I don’t know what’s the matter…
is there any way to play a game like League of Legends/ WoW behind a company firewall using this way? i can use the browser and i cannot install or run any program with admin rights…
For “Example 2. Tunnel to a Web Server” to work I had to edit /etc/hosts and add the line: 127.0.0.1 localhost Followed by rebooting the droplet