i start my server in a NAT envorment, and want to test it in public network, how can i get its address? I am using boost::asio to write my app.
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.
|
|
|
If you want to know peer's public IP address, you need to have one server in public network (not behind any NATs), connect to the server and let the server sends client's IP address it sees back to the client. This site ( http://www.whatismyip.com/ ) shows your public address with this manner. So, your server needs to connect another server which resides in a public network without NAT invloved. However, your server should not be in a NAT environment anyway as NAT normally blocks any incoming connections which are not initiated from inside peers. That means even though a client knows your server's public address, it won't be able to connect to the server behind NAT as NAT will block client's connection request. |
|||||
|