I noticed that Linux and * BSD systems allow the user to skip octets when using a ten-dot notation.
Here are some examples:
$ ping 10.1 PING 10.1 (10.0.0.1) 56(84) bytes of data. $ ping 10.15.1 PING 10.15.1 (10.15.0.1) 56(84) bytes of data.
Note that this is not limited to the ping command.
I found a document defining IPV4 textual representations, but does not seem to cover this function: Textual representation of IPv4 and IPv6 addresses .
Is there any other document defining this behavior? Is there a specific name for this behavior?
source share