I'm currently learning about IPv4 and subnetting. As far as I understand, if we want to create 4 small isolated networks with the size 50, we can use subnetting.
If we subnet a Class-C IPv4 network(210.210.210.0
) into 4 small networks with the same size (0~63
, 64~127
, 128~191
, 192~255
), these small networks are still essential belonged to the big logical network (210.210.210.0
) even though we assign subnet masks to them.
If I understand correctly, they can communicate with each other since they share the same network portion. So, in practice, how can we isolate these small networks?
Thanks:)