Ubuntu Server 16.04 LTS 互联网完全不工作

Ubuntu Server 16.04 LTS 互联网完全不工作

我正在运行 Ubuntu Server 16.04 LTS。任何与网络相关的功能似乎都不起作用。sudo apt-get update 说暂时无法解析主机。当我运行 curl 和 ping 时,它们都挂起了。根本没有输出。我想这种情况是在我买了一个新路由器后开始发生的。

编辑: ping -c4 8.8.4.4

PING 8.8.4.4 (8.8.4.4) 56(84) bytes of data.

--- 8.8.4.4 ping statistics ---
4 packets transmitted, 0 received, 100% packet loss, time 3023ms

ifconfig 返回

enp2s8    Link encap:Ethernet  HWaddr 00:0c:f1:b3:b6:b0
          inet addr:192.168.2.208  Bcast:192.168.2.255  Mask:255.255.255.0
          inet6 addr: fe80::20c:f1ff:feb3:b6b0/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:478724 errors:0 dropped:0 overruns:0 frame:0
          TX packets:225770 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:54169875 (54.1 MB)  TX bytes:17520767 (17.5 MB)

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:203 errors:0 dropped:0 overruns:0 frame:0
          TX packets:203 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1
          RX bytes:15524 (15.5 KB)  TX bytes:15524 (15.5 KB)

tun0      Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
          inet addr:10.8.0.1  P-t-P:10.8.0.2  Mask:255.255.255.255
          UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1500  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:100
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

sudo cat /etc/network/interfaces 返回

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

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto enp2s8
iface enp2s8 inet dhcp

计算机通过以太网电缆连接,并且我正在运行 ubuntu 服务器,如标题所述,这意味着我没有 GUI。

sudo dhclient enp2s8 不返回任何内容。

我希望这有帮助!

答案1

使用以太网电缆将 PC 连接到路由器。这样可以消除无线层带来的麻烦。

使用它来检查你的路由器是否正常工作。如果它无法连接到外部世界,你会看到像你描述的那样的问题——什么都不起作用。

如果以太网在线路上工作,那么问题就在于无线驱动程序配置。

您没有提到您正在使用哪个桌面,但大多数桌面都有网络管理器小程序。它有一些 GUI 配置。

此外,如果您想更好地了解出了什么问题,最普遍的建议是打开终端并运行“dmesg”来汇总所有系统级错误。

相关内容