Suppose I have these 3 IP Prefixes :
190.154.27.0/26 190.154.27.64/26 190.154.27.192/26
and I want find the aggregate prefix.
I convert each address to its' binary equivalent:
10111110.10011010.00011011.00000000
10111110.10011010.00011011.01000000
10111110.10011010.00011011.11000000
And we see that the common pattern lasts until the end of the third octet (24 digits). So shouldn't the aggregate be 190.154.27.0/24 ? Why is it 190.154.26.0/23 ?