An easy question often puzzled me: There are two IP(v4) addresses,192.168.0.1/30 and 192.168.0.2/24, I wonder whether they belong to the same network segment.
How do you determine that?
|
An easy question often puzzled me: There are two IP(v4) addresses,192.168.0.1/30 and 192.168.0.2/24, I wonder whether they belong to the same network segment. How do you determine that? |
||||
|
|
|
The If you AND the IP address with the smallest network portion only, identical networks will contain the same value. For instance, here is a C implementation (untested):
Technically, your /30 and /24 are different networks, and will use routers to reach different addresses (i.e., the /24 will not use a router for IP's 1-254, while the /30 will use a router for most of those addresses). However, they overlap in the same address space. |
|||
|