Questions tagged [portforwarding]

Port forwarding or port mapping is a name given to the combined technique of translating the address and/or port number of a packet to a new destination, possibly accepting such packet(s) in a packet filter (firewall), or forwarding the packet according to the routing table.

If you have a local such as or you may need port forwarding settings on your network equipments such as router to make your server accessible from the Internet by knowing your network external IP or using any dynamic dns services such as dyndns.org. The following website, is regarded as an ultimate resource showing you how to apply port forwarding settings on your router. It is classified database for most routers available world wide:

http://portforward.com/english/routers/port_forwarding/routerindex.htm

1280 questions
14
votes
2 answers

Accessing apache on a vagrant sandbox using ssl (port forwarding)

I've built a vagrant/virtualbox web server as a development sandbox, and configured apache in the VM for ssl (on the default port 443, with a self-signed certificate). I've tested pages on the VM itself using curl curl -v -k…
Mark Baker
  • 199,760
  • 28
  • 325
  • 373
14
votes
1 answer

Ansible multiple hosts with port forwarding

I have hosts inventory with multiple hosts each with port forwarding, Hosts file is : [all] 10.80.238.11:20003 10.80.238.11:20001 10.80.238.11:20007 10.80.238.11:20009 I am trying to ping them with a playbook, but always get response from first…
14
votes
1 answer

What is STUN and does it need a port-forwarded server?

I've done some research on p2p communication without a base server, and came over STUN. From what I've read, STUN is a way of NAT "Hole Punching" that would not require a peer to be port-forwarded to be connected to. Is this correct, and what…
daviga404
  • 528
  • 1
  • 5
  • 21
13
votes
3 answers

Vagrant port forwarding for Mysql

I am trying to setup port forwarding in Vagrantfile to connect to guest mysqld from host system, but get reading initial communication packet error. Host: Yosemite, Guest: Trusty, vagrant 1.7.4 Vagrantfile(host): config.vm.network "forwarded_port",…
Alex Blex
  • 25,038
  • 5
  • 33
  • 63
13
votes
2 answers

Creating a forwarded port within an SSH tunnel

I'm attempting to use SSH.NET to create a tunnel from localhost:3306 to port 3306 on a remote machine: PrivateKeyFile file = new PrivateKeyFile(@" .. path to private key .. "); using (var client = new SshClient(" .. remote server .. ", "ubuntu",…
Adrian Wragg
  • 7,066
  • 3
  • 26
  • 50
13
votes
1 answer

Auto port forwarding (UPnP ?) C++

Disclaimer: I've carefully read every similar topic here and did a google search. Non of those answered my questions, so I would like to accumulate information in this topic. P.S. I might not be so good in English, sorry about that. I want to make a…
JacksonRR
  • 207
  • 1
  • 3
  • 12
12
votes
1 answer

kubectl port-forward connection refused [ socat ]

I am running pyspark on one of the ports of kubernetes. I am trying to port forward to my local machine. I am getting this error while executing my python file. Forwarding from 127.0.0.1:7077 -> 7077 Forwarding from [::1]:7077 -> 7077 Handling…
Ruchit Dalwadi
  • 251
  • 2
  • 13
12
votes
7 answers

How to expose my localhost to the WWW? (port forwarding?)

I am running Apache/php on my localhost and would like to be able to make this publicly accessible from the internet. I think this is achieved by port forwarding? Can someone point me in the right direction?
Andy Hin
  • 25,283
  • 37
  • 95
  • 135
12
votes
1 answer

Android USB Debugging Port Forward Error

I am having a problem with the android remote debug port forwarding. I need to get ports in the 44300-44399 range forward because visual studio debugging only allows SSL on those ports, but I can never get those ports to forward even though the…
11
votes
1 answer

Why does my service always bind to ipv6 localhost instead of ipv4?

I have a service that creates a ServerSocket and binds to localhost:7060. When I did "netstat -an" on my android device, I see it is using ipV6 localhost instead of ipv4 localhost interface. The output is like this: tcp6 0 0…
videoguy
  • 1,523
  • 2
  • 21
  • 44
11
votes
5 answers

Kubernetes Port Forwarding - Error listen tcp4 127.0.0.1:88: bind: permission denied

I am using minikube on my local machine. Getting this error while using kubernetes port forwarding. Can anyone help? mjafary$ kubectl port-forward sa-frontend 88:80 Unable to listen on port 88: All listeners failed to create with the following…
Jaf
  • 441
  • 2
  • 4
  • 7
11
votes
1 answer

Chrome DevTools port forwarding doesn't work for high port numbers

When debugging web applications on Android the port forwarding feature of Chrome DevTools works fine for ports with low numbers. However, high port numbers (such as 51262) does not work for me. How does one get high port numbers working? By default…
Linus
  • 2,860
  • 3
  • 18
  • 32
11
votes
3 answers

Forward a servlet request to another server

Java Servlet API can forward requests to another path within the same server (identical host:port). But, forwarding to a different host:port — like proxy do — is another story. I've tried to do that with Jersey Client, adapting the ServletRequest —…
yves amsellem
  • 6,758
  • 4
  • 39
  • 66
10
votes
0 answers

Pycharm use Docker Container Python as Remote Interpreter

I am trying to use the python in a docker container on a remote machine as the interpreter in Pycharm. Since that is a mouthful, here is a diagram: There is a Jupyter Notebook running in the container, which I am able to connect to through my local…
Mr Squid
  • 858
  • 10
  • 26
10
votes
2 answers

Remotely Accessing MySQL on Mac Mini/Time Capsule

I'm currently trying to run an application on a server but my customer is very 'picky' about their data and wish to store the database on their own internal office server. I've installed MySQL and can get the application to run locally but for a few…
user1530205
  • 293
  • 4
  • 18
1 2
3
85 86