Code: Select all
# lspci | grep -i eth
00:1f.6 Ethernet controller: Intel Corporation Ethernet Connection I219-LM (rev 21)
Code: Select all
# dmesg | grep e1000e | head
[ 2.658336] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[ 2.658337] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 2.681037] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[ 2.876998] e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
[ 2.958740] e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) 8c:16:45:01:ff:92
[ 2.958741] e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
[ 2.958828] e1000e 0000:00:1f.6 eth0: MAC: 12, PHY: 12, PBA No: FFFFFF-0FF
[ 2.959443] e1000e 0000:00:1f.6 enp0s31f6: renamed from eth0
Code: Select all
# ifconfig
enp0s31f6: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet6 fe80::7b2c:5354:80b6:6a8e prefixlen 64 scopeid 0x20<link>
ether 8c:16:45:01:ff:92 txqueuelen 1000 (Ethernet)
RX packets 23 bytes 1808 (1.7 KiB)
RX errors 286 dropped 0 overruns 0 frame 285
TX packets 155 bytes 26944 (26.3 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
device interrupt 16 memory 0xe1200000-e1220000
Code: Select all
# nmcli device show enp0s31f6
GENERAL.DEVICE: enp0s31f6
GENERAL.TYPE: ethernet
GENERAL.HWADDR: 8C:16:45:01:FF:92
GENERAL.MTU: 1500
GENERAL.STATE: 70 (connecting (getting IP configuration
GENERAL.CONNECTION: Wired connection 1
GENERAL.CON-PATH: /org/freedesktop/NetworkManager/ActiveCo
WIRED-PROPERTIES.CARRIER: off
But then I tried to run nmcli device connect, and things got worse:
Code: Select all
# nmcli device connect enp0s31f6
Error: Connection activation failed: (40) Carrier/link changed.
# nmcli device connect enp0s31f6
Error: Failed to add/activate new connection: Connection 'enp0s31f6' is not available on device enp0s31f6 because device has no carrier
Code: Select all
# nmcli device show enp0s31f6
GENERAL.DEVICE: enp0s31f6
GENERAL.TYPE: ethernet
GENERAL.HWADDR: 8C:16:45:01:FF:92
GENERAL.MTU: 1500
GENERAL.STATE: 20 (unavailable)
GENERAL.CONNECTION: --
GENERAL.CON-PATH: --
WIRED-PROPERTIES.CARRIER: off
New messages that seem relevant keep appearing in the log file several times a minute:
Code: Select all
[ 2020.975224] IPv6: ADDRCONF(NETDEV_CHANGE): enp0s31f6: link becomes ready
[ 2024.000228] e1000e: enp0s31f6 NIC Link is Up 10 Mbps Full Duplex, Flow Control: Rx/Tx
[ 2024.000239] e1000e 0000:00:1f.6 enp0s31f6: 10/100 speed: disabling TSO
[ 2066.170972] IPv6: ADDRCONF(NETDEV_UP): enp0s31f6: link is not ready
[ 2101.811538] e1000e: enp0s31f6 NIC Link is Up 10 Mbps Full Duplex, Flow Control: Rx/Tx
[ 2101.811547] e1000e 0000:00:1f.6 enp0s31f6: 10/100 speed: disabling TSO
[ 2101.811661] IPv6: ADDRCONF(NETDEV_CHANGE): enp0s31f6: link becomes ready
[ 2104.845624] e1000e: enp0s31f6 NIC Link is Up 10 Mbps Full Duplex, Flow Control: Rx/Tx
[ 2104.845634] e1000e 0000:00:1f.6 enp0s31f6: 10/100 speed: disabling TSO
Is there anything this could be other than a hardware problem?