비글본블랙에 고정IP 설정 후 인터넷 접속이 되지 않습니다.

비글본블랙에 고정IP 설정 후 인터넷 접속이 되지 않습니다.

Beaglebone black에서 IP를 정적으로 만들려고 합니다. 이를 위해 나는 따른다이 튜토리얼. 튜토리얼에 따라 변경한 후 내 /etc/network/interfaces 파일은 다음과 같습니다.

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo

iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet static

address 192.168.24.38
network 192.168.24.0
broadcast 192.168.24.255
netmask 255.255.252.0
gateway 192.168.25.10

# Example to keep MAC address between reboots
#hwaddress ether DE:AD:BE:EF:CA:FE

# The secondary network interface
#auto eth1
#iface eth1 inet dhcp

# WiFi Example
#auto wlan0
#iface wlan0 inet dhcp
#    wpa-ssid "essid"
#    wpa-psk  "password"

# Ethernet/RNDIS gadget (g_ether)
# ... or on host side, usbnet and random hwaddr
# Note on some boards, usb0 is automaticly setup with an init script
iface usb0 inet static
    address 192.168.7.2
    netmask 255.255.255.0
    network 192.168.7.0
    gateway 192.168.7.1

Beaglebone black을 다시 시작한 후 명령을 사용하여 내 IP가 고정 IP임을 확인할 수 있습니다 ifconfig. 이것은 명령의 출력입니다.ifconfig

eth0      Link encap:Ethernet  HWaddr d0:39:72:3b:da:e8  
          inet addr:192.168.24.38  Bcast:192.168.24.255  Mask:255.255.252.0
          inet6 addr: fe80::d239:72ff:fe3b:dae8/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:3352 errors:0 dropped:63 overruns:0 frame:0
          TX packets:77 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:329055 (321.3 KiB)  TX bytes:10701 (10.4 KiB)
          Interrupt:40 

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:1 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:79 (79.0 B)  TX bytes:79 (79.0 B)

usb0      Link encap:Ethernet  HWaddr 66:b8:b3:7a:c3:19  
          inet addr:192.168.7.2  Bcast:192.168.7.3  Mask:255.255.255.252
          inet6 addr: fe80::64b8:b3ff:fe7a:c319/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:88 errors:0 dropped:0 overruns:0 frame:0
          TX packets:76 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:13642 (13.3 KiB)  TX bytes:17130 (16.7 KiB)

하지만 지금은 인터넷에 접속할 수 없습니다. 그래서. 내 설정에 어디가 잘못되었는지 알려주세요. 감사해요

제안된 대로 명령의 출력은 ip route다음과 같습니다.

  default via 192.168.25.10 dev eth0 
    192.168.7.0/30 dev usb0  proto kernel  scope link  src 192.168.7.2 
    192.168.24.0/22 dev eth0  proto kernel  scope link  src 192.168.24.38

명령의 출력은 ping -c1 google.com다음과 같습니다.

핑: 알 수 없는 호스트 google.com

명령 출력 netstat -nr

Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
192.168.7.0     0.0.0.0         255.255.255.252 U         0 0          0 usb0

답변1

ping 및 netstat 명령을 실행하여 라우팅에 모든 것이 정상인지 확인합니다. 그러나 DHCP는 DNS/리졸버 설정 데이터도 제공합니다. DNS 확인에 실패했습니다.

/etc/resolv.conf를 편집하고 다음과 같이 작성하십시오.

nameserver 8.8.8.8

이 시점에서는 google.com을 핑하면 정상적으로 작동할 것입니다.

나중에 회사에 문의하여 내부 도메인(yourdomain.xx) 및 네임서버 IP(localnameserver)를 요청하세요.

다음과 같이 변경합니다.

search yourdomain.xx
nameserver localnameserver

관련 정보