Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

5
  • Thanks, I looked at your link and configured the settings accordingly, and it worked! Thanks Martin Commented Sep 14, 2014 at 18:51
  • Could you please explain the statement "Where 202*256+201 = port 51913"? Thank you :)
    – manatttta
    Commented May 19, 2016 at 20:41
  • @manatttta The port number is expressed using two bytes. To get the number, you shift the first byte left by 8 bits, what is an equivalent to multiplying by 256 (=2^8), and sum with the second byte. Commented May 20, 2016 at 3:55
  • @MartinPrikryl ok thank you! :) so then what means the string (172,31,34,244,202,205)?
    – manatttta
    Commented May 20, 2016 at 8:57
  • IP 172.31.34.244, port 51917 (=202*256+205) Commented May 20, 2016 at 8:58