So che IPv6 consente di omettere zeri consecutivi. Ma che ne dici di IPv4? Non ho trovato alcun riferimento a questo su Internet, inclusi Wikipedia e RFC 791 - Internet Protocol. Questo documento suggerisce che "Gli zeri iniziali possono essere omessi" in un indirizzo IPv4 (cercare il termine "omesso"). Non abbastanza specifico.
Dai un'occhiata a questa sessione di shell:
[~]$ ping -c 1 127.1
PING 127.1 (127.0.0.1) 56(84) bytes of data.
64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.040 ms
--- 127.1 ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 0.040/0.040/0.040/0.000 ms
[~]$ ping -c 1 127.0.1
PING 127.0.1 (127.0.0.1) 56(84) bytes of data.
64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.044 ms
--- 127.0.1 ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 0.044/0.044/0.044/0.000 ms
[~]$ ssh 127.1 :
The authenticity of host '127.1 (127.0.0.1)' can't be established.
ECDSA key fingerprint is 04:48:fa:f2:ef:95:7c:35:46:39:2e:d3:89:dd:cd:87.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '127.1' (ECDSA) to the list of known hosts.
alex@127.1's password:
Chiaramente, sia ping che ssh capiscono che 127.1 e 127.0.1 sono uguali a 127.0.0.1. Dove viene specificato?
ping 0.0.0.0
o ping 0
funziona allo stesso modo ...)