Beaglebone Black 보드의 SD 카드에서 Debian Wheezy를 부팅했습니다. 버전: debian-wheezy-7.0.0-armhf-3.8.13-bone20.img.xz, 출처http://www.armhf.com/index.php/download/
/etc/networks/interfaces 파일을 설정했습니다.
auto lo
iface lo inet loopback
auto eth2
iface eth2 inet static
address 192.168.1.101
netmask 255.255.255.0
gateway 192.168.1.2
dns-nameservers 8.8.8.8 8.8.8.9
# wireless network interface
#auto wlan0
#iface wlan0 inet dhcp
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_req=1 ttl=44 time=32.3 ms
64 bytes from 8.8.8.8: icmp_req=2 ttl=44 time=29.3 ms
64 bytes from 8.8.8.8: icmp_req=3 ttl=44 time=30.3 ms
경로-n
0.0.0.0 192.168.1.2 0.0.0.0 UG 0 0 0 eth2
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth2
ifconfig-a
eth2 Link encap:Ethernet HWaddr 90:59:af:5c:f9:ca
inet addr:192.168.1.101 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::9259:afff:fe5c:f9ca/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:463 errors:0 dropped:0 overruns:0 frame:0
TX packets:182 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:91607 (89.4 KiB) TX bytes:14680 (14.3 KiB)
Interrupt:56
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:2 errors:0 dropped:0 overruns:0 frame:0
TX packets:2 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:190 (190.0 B) TX bytes:190 (190.0 B)
하지만 google.com에 ping을 하면
ping: unknown host google.com
네트워크의 다른 장치에도 ping을 실행할 수 있지만 인터넷에 액세스할 수 없습니다.
무슨 문제가 있는지 아시나요?
편집 1:
고양이/etc/resolv.conf
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 8.8.8.8
nameserver 8.8.8.9
고양이/etc/nsswitch.conf
# /etc/nsswitch.conf
#
# Example configuration of GNU Name Service Switch functionality.
# If you have the `glibc-doc-reference' and `info' packages installed, try:
# `info libc "Name Service Switch"' for information about this file.
passwd: compat
group: compat
shadow: compat
hosts: files dns
networks: files
protocols: db files
services: db files
ethers: db files
rpc: db files
netgroup: nis
답변1
이 파일에 DNS 설정을 추가해야 합니다 /etc/resolv.conf
. 다음과 같은 내용을 포함하도록 파일을 편집하면 작동합니다.
nameserver 8.8.8.8
답변2
보조 서버의 주소는 8.8.8.9가 아닌 8.8.4.4입니다.
답변3
dns-nameservers
이 지시문이 작동 하려면 /etc/network/interfaces
별도의 패키지가 필요합니다 resolvconf
. /etc/resolv.conf
인터페이스가 존재하는지 확인할 수 있습니다 . 그렇지 않은 경우 resolvconf
패키지를 설치하고 인터페이스를 다시 시작하십시오.
apt-get install resolvconf
ifdown eth2
ifup eth2