Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
3k views

Will html5 websockets be crippled by firewalls?

I'm extremely excited about html5's websockets spec but I have a concern. These days everyone is operating off of some network, with routers (wired/wireless) that have built in firewalls, windows has ...
4
votes
1answer
73 views

ssh port forwarding (tunneling) in linux

I have a specific scenario that I want to solve. I currently connect to a host via port forwarding: laptop -> gateway -> remote_server_1 and another host: laptop -> remote_server_2 ...
4
votes
1answer
2k views

How to SSH to a virtualbox ubuntu guest externally through a windows host?

I have an Ubuntu VM running on my windows 7 machine. Could someone help me with setting it up so that I can access ssh an the webserver externally? I found steps ...
4
votes
6answers
5k views

How does 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 forwarding on my pc. ...
4
votes
3answers
4k views

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

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 respective entry on my apache ...
4
votes
2answers
1k 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 bonus, but Linux ...
3
votes
1answer
239 views

load balancing/ TCP port forwarding using subdomains

I am working on a project 1.which requires several processes to be listening for requests on unique ports(possibly on multiple hosts) 2.Every process is meant to serve a unique client 3.The ...
3
votes
1answer
105 views

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 ...
3
votes
4answers
360 views

forward traffic from port X to computer B with c# “UDP punch hole into firewall”

I need to establish a tcp connection from my house computer to my office computer. on the office there is a router where several computers are connected to. that router has internet therefore all the ...
3
votes
2answers
379 views

Node.js - forward all traffic from port A to port B

I'm trying to forward all traffic from port 6999 to port 7000 (I know I could use iptables, but the idea is to use Node.js to do some packet inspection). Here is the code I have sofar: var ...
3
votes
3answers
730 views

Vagrant's port forwarding not working

I'm running into a small problem at the end of the Getting Started guide for vagrant. I'm working on a CentOS basebox that has Apache2 running (provisioning via Puppet). I've set up port forwarding ...
3
votes
1answer
671 views

Port forwarding in C#/software possible? Isn't it only managed by the router?

Isn't port forwarding managed by the router? Like, I've googled up some software applications that seem to port forward with great success, but it technically seems to be impossible. The packet must ...
3
votes
3answers
1k views

How to correctly relay TCP traffic between sockets?

I'm trying to write some Python code that will establish an invisible relay between two TCP sockets. My current technique is to set up two threads, each one reading and subsequently writing 1kb of ...
3
votes
2answers
3k views

need to use git behind firewall: trying ssh tunneling

I am trying to use ssh port forwarding to defeat corporate firewall: ssh git@GIT_SERVER -L9418:GIT_SERVER:9418 and in another terminal I run git clone git://localhost:repositories/project.git ...
3
votes
2answers
2k 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 that is on port 80. The ...
2
votes
1answer
239 views

portforward with UPnP

I am writing a networking application and need to forward a port on a router if UPnP is enabled. Where can I find C++ code for forwarding a port with UPnP? The the code must work on windows xp, ...
2
votes
4answers
1k views

Fast implementation of a port forward in Java

I have build a simple application that opens a ServerSocket, and on connection, it connects itself to another server socket on a remote machine. To implement port forwarding, I use two threads, one ...
2
votes
2answers
469 views

.NET SSH Port Forwarding

I am trying to build in SSH port forwarding into a .net application that I am writing. I have tried using sharpSSH, but it requires the user to input their password every time, and I don't want ...
2
votes
2answers
59 views

Determine how much can I write into a filehandle; copying data from one FH to the other

How to determine if I can write the given number of bytes to a filehandle (socket actually)? (Alternatively, how to "unread" the data I had read from other filehandle?) I want something like: n = ...
2
votes
2answers
856 views

How do I get netcat to accept connections from outside the LAN?

I'm using netcat as a backend to shovel data back and forth for a program I'm making. I tested my program on the local network, and once it worked I thought it would be a matter of simply forwarding a ...
2
votes
5answers
385 views

Port Forwarding For Online Games/Other Services?

I've noticed recently that I don't have to forward ports for mmorpg's that I play. I'm thinking about working on a game that people can play online and had a question. Why is this the case given ...
1
vote
2answers
46 views

Making a publicly available TCPServer from behind a router

python 2.7.2 windows 7 32 bit Let me preface this question with I'm fairly new to network programming. I've created a simple server and client using python's builtin SocketServer ...
1
vote
1answer
44 views

Can I instantly forward a port-range with UPnP?

I am currently using the COM object "Interop.NATUPNPLib" in order to port-forward a couple of ports using UPnP. I can forward ports individually just fine, but now I have a port range that I want to ...
1
vote
1answer
59 views

Knowing if a remote port forward was successful?

I am trying to setup some reverse ssh tunnels so I can access my home network by bouncing off some server with a public IP. When I run this command: ssh -R :[port_XX]:localhost:22 some_user@my_server ...
1
vote
0answers
39 views

UPnP auto select external port

I am trying to make an application that utilizes UPnP if necessary to open ports so incoming transmissions can be received. The thing is, I don't want to specify an external port (because one, the ...
1
vote
2answers
116 views

Java Socket port forwarding

All riiiiiight! So, I made a networked game in Java using Sockets. It works great, except... only through my LAN. :/ What I want to be able to do is set it up so that I can start the server running on ...
1
vote
0answers
93 views

How to setup Apache2 VHost forward to Tomcat?

I've been searching on the web for days and having a lot of experiment of what I found but no luck about my problem. I hope that some of you could give me some hint on this. In short, I want to do ...
1
vote
0answers
137 views

How to forward a TCP port in an Android program

I have embedded a Jetty server in my Android app. When I use the emulator for testing it works fine because I have forwarded the specified port using adb forward tcp:1234 tcp:1234. I want to know how ...
1
vote
3answers
178 views

Tunnel HTTP via Proxy Using Telnet

Here is the scenario : I have to connect to a proxy server(say s1), but it's not accessible directly. As a solution, I can log-in to a remote server(let's call it s2) and then forward my connection to ...
1
vote
1answer
368 views

Router port forwarding and rtsp streaming problem

I'm using vlcj to stream (RTSP) video. The problem is I am behind a router and dd-wrt only forwards and open ports if there is an application that is listening. But, I stream video, I don't listen on ...
1
vote
2answers
155 views

Which port to open by a WCF service?

I created a WCF service, and its working if I type this url: http://192.169.1.103/MyService/SomeService.svc That IP is from my intranet. It also work if I change that IP to localhost. ...
1
vote
1answer
212 views

How to forward ports over an SSH tunnel using Granados with C#

I'm using the Granados SSH Library and I'm trying to forward port 3306 on my localhost to port 3306 on the remote host (i.e. the MySQL server port). That is, I want to be able to make connections to ...
1
vote
2answers
106 views

Azure Vmrole WCF services unable to connect

We've been experimenting with an online application hosted in a virtual machine (vmrole) on windows azure. We are able to connect to the web portal of the application (http) but we are not able to ...
1
vote
1answer
268 views

ssh reverse port forward to mobile device

we have a requirement to be able to access resources on a mobile device. the mobile device must act as a server. it must be available no matter how the phone is connected (wifi, 3g, behind firewall, ...
1
vote
2answers
294 views

Establish SSH Connection Between Two Isolated Machines Using a 3rd System

I'd like to do the following with Python: Computer 1 starts SSH server (probably using twisted or paramiko) Computer 1 connects to Server 1 (idle connection) Computer 2 connects to Server 1 Server 1 ...
1
vote
3answers
950 views

Port Forwarding From Within Java

I plan on building a few programs in Java that take advantage of the ServerSocket and Socket classes. I have the code built correctly, and I can make connections properly. However, I want to make it ...
1
vote
2answers
292 views

As simple as possible crossplatform Java UPNP hole punching library

I need a library with simple API. Defining simple: perfect solution for me would be something like described here but addopted for crossplatform use in Java (crossplatform for me is stand alone ...
1
vote
1answer
597 views

Programmatically add port forwarding entry into router using upnp?

Does someone have a simple example on how to add a port forwarding entry with upnp into the router using c++?
1
vote
3answers
740 views

Port forwarding on Windows 7

How do I redirect an incomming request on port xxx to localhost:yyy on windows 7? Development Server (vs 2008) only allow access from localhost which isnt good enough. I need to test my app from ...
1
vote
1answer
968 views

Test if port open and forwarded using PHP

Full Disclosure: There's a similar question here. Is there any way I can test if a particular port is open and forwarded properly using PHP? Specifically, how do I go about using a socket to connect ...
1
vote
3answers
695 views

rails Rake and mysql ssh port forwarding

I need to create a rake task to do some active record operations via a ssh tunnel. The rake task is run on a remote windows machine so I would like to keep things in ruby. This is my latest attempt. ...
1
vote
1answer
901 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 application starts it ...
1
vote
1answer
206 views

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

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 assume straightforward setups ...
1
vote
4answers
5k 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 connection is really to the ...
1
vote
2answers
3k 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 forwarded to Remote ...
1
vote
3answers
2k 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 located elsewhere? ...
0
votes
0answers
6 views

Packet Filtering and Forwarding

Can we filter all the packets coming to Host1:Port_A from *:Port_B and forward them to say Host1:Port_C. I want to forward all the packets coming from port 9875 of any host at port 22 of my machine ...
0
votes
1answer
19 views

Vagrant Port Forwarding not working

I've installed CouchDB on my vagrant 0.9.0 box that is running CentOS 6.2. In Vagrantfile I've added config.vm.forward_port 5984, 5985. After reloading vagrant i attempt to curl the address: curl -v ...
0
votes
1answer
13 views

is it possible to install a simple proxy webserver on a VPS to bypass a blocked port?

My webhosting company serves up Control Panel on a funky port number (20000 or something). This port is blocked from work, so I cannot access Control Panel during the day (in case of emergency). Is ...
0
votes
1answer
24 views

Using port forwarding and php with mysql_connect onto a remote server

I've got a web server with one host, and I'd like to use the database on another host. I'd like to use port forwarding to do this, and have already set up the forwarded port using ssh -P -fg ...

1 2 3