Ubuntu Server 14.04.5 更新后无法访问互联网

Ubuntu Server 14.04.5 更新后无法访问互联网

我有一台 Ubuntu Server 14.04.4 LTS,几个小时前它运行良好。为了将机器更新到 16.04.3 LTS,我执行了以下命令:

sudo apt-get update -y
sudo apt-get upgrade -y
sudo apt-get dist-upgrade -y

重新启动机器后,我发现我现在正在运行 14.04.5 LTS,因此我准备执行该do-release-upgrade命令,但是,我的服务器无法访问互联网,尽管之前它可以正常工作。

因此,ping IP 或 URL 不会返回任何结果。我还没有触及网络配置。

这是输出/etc/network/interfaces

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

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet static
    address 10.20.2.132
    netmask 255.255.255.0
    network 10.20.2.0
    broadcast 10.20.2.255
    gateway 10.20.2.254
    # dns-* options are implemented by the resolvconf package, if installed
    dns-nameservers 10.20.2.1 10.20.2.3

哪里出了问题?我该如何解决?

相关内容