Ubuntu 网络连接问题

Ubuntu 网络连接问题

我在笔记本电脑上安装了 Ubuntu。以下是我的互联网设置:

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
        address 10.1.17.10  /*this is my IP @ddress*/
        netmask 255.255.255.0
        dns-nameservers 8.8.8.8

我无法连接到互联网。我可以成功 ping 8.8.8.8,但无法 ping 任何网站。

有什么帮助吗?我无法通过这种方式访问​​互联网。

答案1

您没有可行的路线,因为您没有指定路线。我建议您将文件更改为:

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
    address 10.1.17.10  
    netmask 255.255.255.0
    gateway 10.1.17.1  
    dns-nameservers 8.8.8.8 10.1.17.1

当然,如果不是 10.1.17.1,请替换为您的路由器或接入点的地址。

通常,最好在网络管理器中设置这些详细信息,而不是在 /etc/network/interfaces 中。

如果您有一个接口 eth1,则它要么是第二张以太网卡,要么是无线接口。检查:

iwconfig

您的计算机有两个以太网端口吗?您是否尝试使用有线以太网进行连接?

您是否已通过检查网络上其他连接设备的网络设置来确认网关和其他详细信息?

答案2

我认为您的问题是缺少网关。您如何连接到互联网?输出是什么路线

相关内容