Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

please help me.

my modem ip is 192.168.1.1 is a private ip address and my ISP has an public ip such as 78.39.19.198

i connect to internet with ADSL modem and pppoe from an ISP. how to find the NAT port that my ISP get to me to connect to internet?? for example 78.39.19.198:49389

i want to find number 49389

Note: i can't access to router of ISP, and My ISP give me a different NAT port for every connect.

tanq

share|improve this question
"My ISP give me a different NAT port for every connect": Not possible otherwise. Why do you need it and in which language? – Jan Dvorak Oct 21 '12 at 19:05
This is not the right place to ask this question. You should try to ask it on superuser. – Klaus Byskov Pedersen Oct 21 '12 at 19:07

closed as off topic by Klaus Byskov Pedersen, Tim Cooper, mattytommo, PeeHaa 埽, Sean Owen Oct 21 '12 at 22:00

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

- Whats happening in your case is know as PAT (Port Address Translation).

- So its the Same IP with different Port number for different TCP/IP connection.

- The port number will have to vary cause when PC sends a request to the Server, it gets IP address from where its coming and which port it should land on it , and from which port its coming (This last part is handled mainly by application on which the request arrived) . Now This Server replies back and as it reaches the Router which was the gateway of the PC that has made the request,the Router looks at the IP to Port Mapping and sent it to the PC at the corresponding port.

- This is how many PC with different Private IP can access the Internet over only 1 Public IP address.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.