ubuntu 网络 有线连接

ubuntu 网络 有线连接

我尝试使用有线连接在 ubuntu 服务器上连接互联网。'ifconfig' cmd 显示 enp3s0,而不是 eth0。我如何将我的系统连接到互联网。感谢您的回复... /etc/network/interface

auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp

答案1

您必须使用网络适配器的名称,因此在您的情况下,enp3s0而不是eth0

auto lo
iface lo inet loopback
auto enp3s0
iface enp3s0 inet dhcp

相关内容