Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is very simillar to this question but we're not even given the number of bits that make up the network address.

How do you tell that IPs 192 . 168 . 0 . 9 and IP 198 . 162 . 0 . 2 are on different networks?

I'll admit this is a homework question (which by the way, isn't forbidden on SO) and I found out how to do this. Class A ip addresses are on the same network if the first 3 digits are identical. Class B ip addresses are the same if the first 6 digits are identical. Class C ip addresses are on the same network if the first 9 digits are identical. Is this correct?

For example 192.168.000.009 and 192.168.000.002 are on the same network but 192.168.001.009 and 192.168.000.002 are on different networks?

share|improve this question
Are you on that network? If not, you cannot tell. Even if you were, the only way to know for certain would be to try to ping or access that host via its IP, and the host could always be powered off or firewalled. Especially in the example you give, IP addresses are re-used (those are private IPs), and many hosts have them across many networks. – Brad Nov 1 '12 at 2:34

closed as off topic by doublesharp, Linger, BNL, Kris, KooKiz Nov 1 '12 at 15:31

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

If the two IPs are the same, then they are on the same network. Otherwise, they may or may not be on the same network.

share|improve this answer

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