I was setting up ip addresses between two devices and I noticed something odd. I feel like I am missing an important fundamental here:
Context:
Device A: 10.30.0.1/12
Device B: 10.2.0.2/12
if I set up the IP like this, then A and B cannot ping each other
However, if I do
Device A: 10.30.0.1/12
Device B: 10.30.0.2/12
OR
Device A: 10.2.0.1/12
Device B: 10.2.0.2/12
Then A and B can ping each other just fine. My understanding is that with a /12 netmask, the wildcard mask is 0.15.255.255, therefore the 2nd octet can be any value between 0 through 127.
Are there two groups of valid IPs being created here or is it a whitelist?