After a deep review of network and CIDR notation I often see in linux config file:
127.0.0.1/8
to set network loopback interface.
The correct CIDR should be
127.0.0.0/8
Because 127.0.0.1 is the loopback IP. Why many default linux and bsd config file use the first?