I realized that on Linux (RHEL and Debian) an incomplete IPv4 address in dotted notation is filled with internal zeros. For example, I typed 172.30.122 instead of 172.30.0.122, but Linux fixed and used 172.30.0.122
At least two bytes are required - missing internal bytes are not needed:
# ping 172.107 PING 172.107 (172.0.0.107) 56(84) bytes of data.
This is mistake? Do these standards comply?
Thanx in advance
source share