Debian 无法使用 LAN 连接到互联网

Debian 无法使用 LAN 连接到互联网

我有一台使用 Debian Wheezy 的无头 Raspberry Pi。
我有一个 wifi 适配器,如果我使用它连接我的 Raspberry,一切都会正常:我可以连接到互联网,可以 ping 通,可以更新。

但是,如果我关闭 wifi 并设置局域网接口,我就会失去互联网连接。
我仍然可以使用笔记本电脑本地连接到互联网,但连接不会退出(即 ping 不起作用)。

一些有用的信息:

猫/等/网络/接口

auto lo
auto eth0

iface eth0 inet static
      address 192.168.0.105
      netmask 255.255.255.0
      gateway 192.168.0.1

ping www.google.com

(nothing request timed out)

是否配置

eth0      Link encap:Ethernet  HWaddr b8:27:eb:a2:b5:20
          inet addr:192.168.0.105  Bcast:192.168.0.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:1130 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1116 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:97223 (94.9 KiB)  TX bytes:146140 (142.7 KiB)

ping 192.168.0.1

PING 192.168.0.1 (192.168.0.1) 56(84) bytes of data.
^C
--- 192.168.0.1 ping statistics ---
19 packets transmitted, 0 received, 100% packet loss, time 18007ms

猫/etc/resolv.conf

nameserver 8.8.8.8

网络状态-r

Kernel IP routing table
Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
default         192.168.0.1     0.0.0.0         UG        0 0          0 eth0
192.168.0.0     *               255.255.255.0   U         0 0          0 eth0

好吧,我想就这些了...有什么想法吗?

答案1

当您 ping 路由器时,100% 的数据包丢失是一个问题。这表明存在连接问题。这可能是由于电缆损坏(尝试使用其他电缆)、路由器中启用了 MAC 过滤、Pi 或路由器中的以太网端口损坏、iptables 配置错误或许多其他问题造成的。使用该路由器端口和电缆还有其他方法吗?

相关内容