I want to run a url of different machine like

http://192.168.7.1:8080

But it gets timed out.

On this machine(having ipaddress - 192.168.7.1) if I run the same url, it works.

Does anybody knows any setting which is off on machine 192.168.7.1 to allow remote connection? Please help.

有帮助吗?

解决方案

http://windows.microsoft.com/is-IS/windows7/Open-a-port-in-Windows-Firewall

As somebody before me said, it's quite likely it's firewall related.

其他提示

Most likely it's firewall related. You should add a rule which allows TCP connections to port 8080 on your machine having the ip 192.168.7.1.

This could be related to the fact that 192.168.7.1 address is private one. If your second machine is in different subnet you will not be able to reach it using private address (rather public address of your gateway).

If the machines are in the same network (both has the same network addresses - 192.168.7.X; assuming that netmask is 24 bits) please check if you can e.g. ping one host from other.

So in nutshell: If the address of your second host is 192.168.7.X this is most probably network issue (FW, routing, ...) if not you will not be able to reach second machine using its local address (of course some advanced networks could use some advanced routing but let's focus on general stuff...)

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top