Tagged Questions

0
votes
0answers
42 views

SSH remote port forwarding [closed]

I want to connect to my computer(local) behind NAT through public accessible server(public). On local: ssh -g -R 8000:localhost:22 user@public Then on public: ssh -p 8000 user@pu …
0
votes
0answers
37 views

A can ping B, B can ping C but A cant ping C. How do i connect A to C (ethernet)? [closed]

I have a computer at home with ip 192.168.221.xxx I have another computer at work that I can ping and it has 2 ip addresses: 192.168.1.xxx and 192.168.0.xxx. Those last 2 addresses …
0
votes
2answers
931 views

C# Raw Sockets Port Forwarding

I am trying to create a simple C# app which does port forwarding, and need to know how to use the IP_HDRINCL socket option to try to fake out the receiving end to think the connect …
2
votes
6answers
244 views

How skype work without port forwarding

I am designing a p2p application which works on port 30000. My router is not UPnP so I required to forward a port to router. But Skype a another p2p application works without port …
2
votes
3answers
1k views

Forwarding only on a single port 8080 to localhost (windows) possible?

Hello, I know how to set up a local webserver using xampp on windows... I enter my alias and target on the hosts file (c:\windows\system32\drivers\etc\hosts) and then add a respec …
0
votes
0answers
54 views

WRT54G - how use port forwarding and VNC [closed]

Since I have my home network behind a WRT54G, the router has an external "real" IP address, and the PCs behind it have 192.168.xxx.xxx addresses. I would like to be able to contro …
1
vote
1answer
163 views

How to forward port to router using python…

I am building python p2p application like p2p instant messenger. I am communicating with other peers using TCP/IP connection. I do not want client to do port forwarding. When appl …
-1
votes
0answers
96 views

fedora dns setting (port forwarding ) [closed]

Hi all, I have a fedora core 6 box with independent ip address, i have apache installed as default 80 port, i will install lighttpd as 8080 or some other port. Is there possible …
2
votes
2answers
295 views

Router Port Forwarding and HttpContext.Current.Request.Url

Here's the scenario. We have a router that port forwards requests for our different test sites. For example http://www.ourSite.com:8051 forwards from the router to a web server tha …
1
vote
1answer
62 views

How do I use Capistrano with a server that is behind a firewall?

Hi All, I have a bit of a situation. I've consumed about fourty-eleven different tutorials/books/videos on Capistrano, and none of them touch on out-of-the-norm cases. They all …
0
votes
4answers
155 views

Is there any way to overcome the router port forwarding on tcp/ip application

I need to connect to computer over tcp/ip i have the external ip but without port forwarding I can't connect to the server . Is there any way to configure the server to accepts c …
4
votes
2answers
466 views

What are the best options for NAT port forwarding?

I'd like to make it easy for users to forward a port on their NAT to their local machine for my C++ app. I'd like to make this work on OSX & Windows. Linux would be a great b …
1
vote
4answers
1k views

How can I port forward with iptables?

I want connections coming in on ppp0 on port 8001 to route to 192.168.1.200 on eth0 on port 8080 I've got these two rules -A PREROUTING -p tcp -m tcp --dport 8001 -j DNAT --to-d …
0
votes
3answers
1k views

Is Port Redirection/Forwarding (i.e. 8443 -> 3389) for Windows Vista/Server 2008 possible with the built-in firewall?

Is it possible to execute port redirection/forwarding with the built-in firewall (or some other software) for Vista/Windows 2008? I want to forward port 8443 to 3389 (HTTPS forwar …
1
vote
3answers
843 views

How to forward the TCP/IP traffic of a process in Windows XP?

(The curly lines with dots represent a network route.) Having a process called "foo.exe", is there a way to forward everything it communicates over TCP/IP to a forwarding proxy …