도메인 이름은 debian.debian
127.0.0.1을 가리킵니다.
$ ping debian.debian
PING debian.debian (127.0.1.1) 56(84) bytes of data.
64 bytes from debian.debian (127.0.1.1): icmp_seq=1 ttl=64 time=0.047 ms
64 bytes from debian.debian (127.0.1.1): icmp_seq=2 ttl=64 time=0.046 ms
내 로컬 호스트를 스캔하면 다른 결과가 나타납니다. 이유는 무엇입니까?
debian@debian:~$ sudo nmap debian.debian
Starting Nmap 7.80 ( https://nmap.org ) at 2022-10-15 09:56 HKT
Nmap scan report for debian.debian (127.0.1.1)
Host is up (0.0000050s latency).
Not shown: 999 closed ports
PORT STATE SERVICE
80/tcp open http
Nmap done: 1 IP address (1 host up) scanned in 0.09 seconds
debian@debian:~$ sudo nmap 127.0.0.1
Starting Nmap 7.80 ( https://nmap.org ) at 2022-10-15 09:56 HKT
Nmap scan report for localhost (127.0.0.1)
Host is up (0.0000050s latency).
Not shown: 995 closed ports
PORT STATE SERVICE
25/tcp open smtp
53/tcp open domain
80/tcp open http
631/tcp open ipp
5432/tcp open postgresql
Nmap done: 1 IP address (1 host up) scanned in 0.11 seconds
이유를 알고 있습니다 debian.debian
. 127.0.1.1
업데이트
: 질문이 추가되었습니다.
http 서비스가 127.0.0.1과 127.0.1.1 모두에서 실행되는 이유는 무엇입니까? 다른 서비스가 127.0.1.1이 아닌 127.0.0.1에서만 실행되는 이유는 무엇입니까?