Debian sheevaplug 인터넷이 작동하지 않습니다.

Debian sheevaplug 인터넷이 작동하지 않습니다.

데비안 5.0이 설치된 sheevaplug가 있습니다. 인터넷은 오늘까지 잘 작동했습니다. 라우터에 무선으로 연결된 컴퓨터가 여러 대 있고 인터넷이 잘 작동합니다. 오늘부터 내 데비안은 인터넷에 연결할 수 없습니다. 이유는 모르겠습니다... 실행하면 ping google.com다음과 같은 메시지가 나타납니다.

ping google.com
PING google.com (173.194.35.8) 56(84) bytes of data.
^C
--- google.com ping statistics ---
443 packets transmitted, 0 received, 100% packet loss, time 442006ms

이렇게 하면 영원히 아무것도 얻을 수 없습니다. 다음은 도움이 될 수 있는 몇 가지 정보입니다 /etc/network/interfaces.

# Used by ifup(8) and ifdown(8). See the interfaces(5) manpage or
# /usr/share/doc/ifupdown/examples for more information.
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp

출력 ifconfig:

eth0      Link encap:Ethernet  HWaddr f0:ad:4e:01:40:78
          inet addr:192.168.2.12  Bcast:192.168.2.255  Mask:255.255.255.0
          inet6 addr: fe80::f2ad:4eff:fe01:4078/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:2200 errors:0 dropped:0 overruns:0 frame:0
          TX packets:2926 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:229615 (224.2 KiB)  TX bytes:466378 (455.4 KiB)
          Interrupt:11

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

콘텐츠 /etc/resolv.conf:

nameserver 192.168.2.1

출력은 다음과 같습니다 netstat -rn.

debian:~# netstat -rn
Kernel IP routing table
Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
192.168.2.0     0.0.0.0         255.255.255.0   U         0 0          0 eth0
0.0.0.0         192.168.2.1     0.0.0.0         UG        0 0          0 eth0

출력 arp -na:

debian:~# arp -na
? (192.168.2.1) at 00:1a:2a:27:c0:68 [ether] on eth0

출력 route:

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
192.168.2.0     *               255.255.255.0   U     0      0        0 eth0
default         .               0.0.0.0         UG    0      0        0 eth0

고정 IP, 네트워크 연결 다시 시작, 라우터 다시 시작 등 모든 것을 시도했지만 성공하지 못했습니다. 이것이 어디에 있는지 아시나요?


편집하다:이것은 출력입니다 route.

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
192.168.2.0     *               255.255.255.0   U     0      0        0 eth0
default         .               0.0.0.0         UG    0      0        0 eth0

편집하다:이것은 출력입니다 netstat -rn.

debian:~# netstat -rn
Kernel IP routing table
Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
192.168.2.0     0.0.0.0         255.255.255.0   U         0 0          0 eth0
0.0.0.0         192.168.2.1     0.0.0.0         UG        0 0          0 eth0

그리고 arp -na:

debian:~# arp -na
? (192.168.2.1) at 00:1a:2a:27:c0:68 [ether] on eth0

관련 정보