Format of the IP Address

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I write the IP address of a computer behind a router (in an intranet)
with a port different than "80"?
Thanks.
 
I dont really understand your question, could you please explain a bit
more what you want to do?

Thanks
 
OK JhonnyGr:

Can I write: http://73.50.135.48:8000/192.168.0.37:4000
for get into a computer behing a router (in an intranet)?

Public IP address (Internet) = 73.50.135.48
Public Port = 8000
Private IP address (intranet) = 192.168.0.37
Private Port = 4000

I want to know the syntax of a IP address.

Regards, Juan

"JohnnyGr" escribió:
 
juan said:
OK JhonnyGr:

Can I write: http://73.50.135.48:8000/192.168.0.37:4000
for get into a computer behing a router (in an intranet)?

Public IP address (Internet) = 73.50.135.48
Public Port = 8000
Private IP address (intranet) = 192.168.0.37
Private Port = 4000

I want to know the syntax of a IP address.

Regards, Juan

You can't. That's what NAT and port mapping is for. The router has to be
configured to remap your request onto another computer in the network.
So the router itself has to be told to reroute all incoming requests on
port 8000 to 192.168.0.37 port 4000. To put it simply, you can't
directly access a computer in a private network from the outside. That's
what makes is more secure.

So if this is something static, you'll need to configure your router and
then just connect to the outside IP and let the router take it from there.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top