Debian Stretch가 호스트 이름을 확인할 수 없지만 IP는 작동합니다.

Debian Stretch가 호스트 이름을 확인할 수 없지만 IP는 작동합니다.

설정 후 eth0(ens3이 선택됨)에 대해 Stretch 네트워크를 구성했습니다.

GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"
grub-mkconfig -o /boot/grub/grub.cfg
reboot

이제 나는 다음을 가지고 있습니다:

>: cat /etc/network/interfaces
source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug eth0
iface eth0 inet static
    address 192.168.1.10/24
    gateway 192.168.1.1
    # dns-* options are implemented by the resolvconf package, if installed
    dns-nameservers 8.8.8.8

이는 다음과 같이 작동합니다.

>: ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
      valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host
      valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
    link/ether 52:54:00:0a:f7:bc brd ff:ff:ff:ff:ff:ff
    inet 192.168.1.10/24 brd 192.168.1.255 scope global eth0
       valid_lft forever preferred_lft forever
    inet6 fe80::5054:ff:fe0a:f7bc/64 scope link
       valid_lft forever preferred_lft forever

다음과 같이 Google 네임서버에 ping을 보낼 수 있습니다.

>: ping 8.8.8.8
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
64 bytes from 8.8.8.8: icmp_seq=1 ttl=55 time=10.9 ms
64 bytes from 8.8.8.8: icmp_seq=2 ttl=55 time=10.9 ms

하지만 Google 자체나 다른 도메인 이름은 아닙니다. 내 호스트 파일은 다음과 같습니다.

>: cat /etc/hosts
127.0.0.1   localhost
192.168.1.10    someserver.name.com someserver

# The following lines are desirable for IPv6 capable hosts
::1     localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

내 resolv.conf는 다음과 같습니다.

>: cat /etc/resolv.conf
nameserver 8.8.8.8

하지만 게이트웨이를 핑할 수 있으므로 기본 경로가 괜찮아 보입니다.

>: ip r
default via 192.168.1.1 dev eth0 onlink
192.168.1.0/24 dev eth0 proto kernel scope link src 192.168.1.10

내 /etc/nsswitch.conf는 다음과 같이 말합니다.

hosts:          files dns
networks:       files

없어진 물건 있어요? Stretch에서 내가 해야 할 다른 일이 있나요?

답변1

라우팅과 DNS 문제를 혼동하고 계신 것 같습니다. <8.8.8.8> 또는 <128.171.224.100>(www.hawaii.edu)과 같은 숫자 주소를 ping할 수 있다면 문제는 라우팅이 아니라 DNS입니다.

/etc/nsswitch.conf 파일은 DNS 정보를 찾을 위치와 순서를 지정합니다. "hosts"라는 줄을 찾으세요.

답변2

# The primary network interface
allow-hotplug eth0
iface eth0 inet static
    address 192.168.1.10/24
    gateway 192.168.1.1
    # dns-* options are implemented by the resolvconf package, if installed
    dns-nameservers 8.8.8.8

/24를 삭제하세요. 이유: 문법적인 관점에서 보면 틀렸습니다.

192.168.1.10 주소에 DNS 서버가 포함되어 있다고 가정하면 /24를 제거하면 오류가 해결됩니다.

관련 정보