使用 Debian squeeze 时网络断开

使用 Debian squeeze 时网络断开

我正在使用带有linux-3.18.4内核的“debian-squeeze-amd64-root_fs”来调试 Linux 内核。

问题是,当互联网绝对连接时,Debian 中没有互联网连接。

当我跑步的时候

ifconfig

我唯一能看到的是Local Loopback

这是/etc/network/interfaces文件:

# The loopback newtork interface
auto lo
iface lo inet loopback

atuo eth0
iface eth0 inet dhcp

答案1

似乎您在倒数第二行中打错了:atuo eth0应该是auto eth0,因此系统无法自动建立网络连接。ifup eth0尽管打错了,您也可以尝试运行 。

不过,我猜测该错误在日志中显示为无效配置。

相关内容