1,454 questions
Tooling
2
votes
3
replies
81
views
Go server and godot P2P connection with out port forwarding
This days me and my friend made a multiplayer game in godot. The server is written in go using protobaf. To test the multiplayer, i used ngrok. I know we can use port forwarding but i thought ngrok is ...
0
votes
1
answer
48
views
VS Code Port Forwarding not setting cookies
I have a React application running on port 5173 and an Express server on port 3000. I'm trying to test Google OAuth sign-in from my React app using my actual mobile phone.
When I access the app from ...
245
votes
7
answers
361k
views
How does kubectl port-forward create a connection?
kubectl exposes commands that can be used to create a Service for an application and assigns an IP address to access it from internet.
As far as I understand, to access any application within ...
276
votes
14
answers
186k
views
ssh -L forward multiple ports
I'm currently running a bunch of:
sudo ssh -L PORT:IP:PORT root@IP
where IP is the target of a secured machine, and PORT represents the ports I'm forwarding.
This is because I use a lot of ...
75
votes
8
answers
199k
views
WSL-2: Which ports are automatically forwarded?
I've been tinkering around with WSL-2 for a while now and don't exactly understand how traffic is routed between the host and WSL-2 dist.
In some sources it seems like all ports used by WSL-2 ...
75
votes
7
answers
136k
views
Access a localhost running in Windows from inside WSL 2 [closed]
I am running a local AEM server in my Windows machine. The server is running on localhost:4502. I am using a Ubuntu distribution running in WSL 2 for my development. I want to access the localhost:...
75
votes
14
answers
158k
views
Docker port forwarding not working [closed]
I have setup Docker container for access my machine docker container to another machine in local.
Create a container below command:
docker run -it -d --name containerName -h www.myhost.net -v /...
48
votes
12
answers
89k
views
How to access local Kubernetes minikube dashboard remotely?
Kubernetes newbie (or rather basic networking) question:
Installed single node minikube (0.23 release) on a Ubuntu box running in my LAN (on IP address 192.168.0.20) with VirtualBox.
minikube start ...
138
votes
12
answers
346k
views
SSH -L connection successful, but localhost port forwarding not working "channel 3: open failed: connect failed: Connection refused" [closed]
My lab runs RStudio on a server. A couple weeks ago, from my cousin's house, I successfully ssh'd into the server and pulled up the server-side RStudio through my local Firefox browser. Now when I ...
15
votes
5
answers
27k
views
kubectl port-forward multiple services
I have been trying to forward multiple ports with these commands:
kubectl port-forward deployment/service1 8080:8080 && kubectl port-forward deployment/service2 8081:8081
and
kubectl port-...
15
votes
5
answers
34k
views
How do you force ngrok to forward to http and not https?
ngrok was forwarding to only https for me which was giving an ssl certificate error when other services tried to access the endpoint.
Most of the times ngrok forwards to http and https but for some ...
312
votes
3
answers
399k
views
port forwarding in windows
I have two network board in my pc:
The main one has the local ip -> 192.168.1.111
The secondary ones has the local ip -> 192.168.0.200
The main one has internet connection and the second one is ...
1
vote
2
answers
588
views
How to mount a smb network share with different port on windows
I tried to mount a smb network share on Windows over the internet, but I have encountered several problems.
First of all my setup was a raspberry pi running samba in my local network and everything ...
2
votes
0
answers
240
views
VS Code Local Port Forwarding Error 502 – "This page isn’t working"
I'm trying to use VS Code local port forwarding to forward port 3000, but when I try to access the generated URL (v0jw1fjz-3000.inc1.devtunnels.ms), I get the following error:
This page isn’t working
...
176
votes
6
answers
378k
views
Access localhost from the internet [closed]
I need to forward my localhost for a short period of time for testing purposes. It has to be accessed from the public internet.
How can I achieve this?