Ubuntu 17.04 无法读取以太网,但可以读取 Wifi

Ubuntu 17.04 无法读取以太网,但可以读取 Wifi

华硕 Q550LF 8 Gb i7 1 TB

从 16.04 升级到 16.10 时,Ubuntu 重命名了网卡。WiFi 可以使用,但以太网不行。继续升级到 17.04,问题仍然存在。以太网在 Win 8.1 上仍能正常工作。我该如何修复它?

$ ifconfig -a
enp2s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.0.10  netmask 255.255.255.0  broadcast 192.168.0.255
        inet6 fe80::dc01:cf88:1f7c:1  prefixlen 64  scopeid 0x20<link>
        inet6 2605:e000:2342:e700::4  prefixlen 128  scopeid 0x0<global>
        inet6 2605:e000:2342:e700:f7f:f32c:93b7:3d16  prefixlen 64  scopeid 0x0<global>
        ether 10:c3:7b:1e:ea:cd  txqueuelen 1000  (Ethernet)
        RX packets 7963  bytes 2709308 (2.7 MB)
        RX errors 0  dropped 785  overruns 0  frame 0
        TX packets 2260  bytes 348549 (348.5 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 4763  bytes 311223 (311.2 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 4763  bytes 311223 (311.2 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

wlp3s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet6 2605:e000:2342:e700:5283:43a0:e0ed:ded  prefixlen 64  scopeid 0x0<global>
        inet6 2605:e000:2342:e700:d9aa:3889:eb23:538f  prefixlen 64  scopeid 0x0<global>
        inet6 2605:e000:2342:e700::2  prefixlen 128  scopeid 0x0<global>
        inet6 fe80::92f1:5157:464b:a1a9  prefixlen 64  scopeid 0x20<link>
        ether 80:86:f2:08:b2:8b  txqueuelen 1000  (Ethernet)
        RX packets 3957  bytes 444699 (444.6 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 713  bytes 218381 (218.3 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

$ sudo lshw -C network
  *-network                 
       description: Ethernet interface
       product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:02:00.0
       logical name: enp2s0
       version: 0c
       serial: 10:c3:7b:1e:ea:cd
       size: 1Gbit/s
       capacity: 1Gbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8168g-2_0.0.1 02/06/13 ip=192.168.0.10 latency=0 link=yes multicast=yes port=MII speed=1Gbit/s
       resources: irq:42 ioport:e000(size=256) memory:f7900000-f7900fff memory:f2100000-f2103fff
  *-network
       description: Wireless interface
       product: Wireless 7260
       vendor: Intel Corporation
       physical id: 0
       bus info: pci@0000:03:00.0
       logical name: wlp3s0
       version: 6b
       serial: 80:86:f2:08:b2:8b
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
       configuration: broadcast=yes driver=iwlwifi driverversion=4.10.0-20-generic firmware=17.459231.0 ip=192.168.0.39 latency=0 link=yes multicast=yes wireless=IEEE 802.11
       resources: irq:46 memory:f7800000-f7801fff

答案1

你能帮我把所有额外的信息拿出来吗?我需要一个基本的 ifconfig

不是 -a。

尝试使用有线时禁用无线。

您对有线连接静态或 dhcp 的设置是什么,如果是 dhcp,请尝试静态和 dns 静态,以及 8.8.8.8 或 8.8.4.4 是谷歌 dns,看看您是否可以访问互联网。

如果这不起作用,请确保在尝试其余操作之前返回 dhcp。

可以尝试将设备关闭然后再重新启动。

ifconfig eth0 关闭

ifconfig eth0 启动

eth0 = 您的以太网设备,有时调用名称不同,基本的 ifconfig 将显示终端最左侧的调用名称。

也尝试

sudo 服务网络重启

您还可以使用 traceroute 来查看连接的距离,看看它是否到达了外部

sudo apt-get 安装 traceroute

例如:traceroute google.com

有时您可以通过 BIOS 禁用任一网络,我会确保它没有在某个地方被禁用。如果您以前从未访问过 BIOS,则很可能并非如此。

尝试

ip addr 刷新 eth0

我发现这很有趣,包含大量关于如何发现有关您的网络状态的更多信息的信息。

https://help.ubuntu.com/lts/serverguide/network-configuration.html

我喜欢这个想法,使用这个网络管理器代替可能无法正常工作的普通网络管理器

https://help.ubuntu.com/community/WICD

相关内容