IPv6을 사용하면 연속 0을 생략 할 수 있습니다. 그러나 IPv4는 어떻습니까? Wikipedia 및 RFC 791 – 인터넷 프로토콜을 포함하여 인터넷에서 이에 대한 언급을 찾지 못했습니다 . 이 문서 는 IPv4 주소에서 "리딩 제로를 생략 할 수 있습니다"라는 용어를 제안합니다 ( '생략'이라는 용어 검색). 충분히 구체적이지 않습니다.
이 쉘 세션을 확인하십시오.
[~]$ 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:
분명히 ping과 ssh는 127.1과 127.0.1이 127.0.0.1과 동일하다는 것을 이해합니다. 이것은 어디에 지정되어 있습니까?
ping 0.0.0.0
나 ping 0
... 같은 방식으로 작동)