Problem in the nic ethernet

Hello;

I Have this problem an the NS gets pause and don´t have internet or lan o vlan.

May 6 16:30:26 semedic kernel: e1000e 0000:00:1f.6 em1: Reset adapter unexpectedly
May 6 16:30:30 semedic kernel: e1000e: em1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
May 6 16:30:32 semedic kernel: e1000e 0000:00:1f.6 em1: Detected Hardware Unit Hang:#012 TDH <0>#012 TDT <98>#012 next_to_use <98>#012 next_to_clean <0>#012buffer_info[next_to_clean]:#012 time_stamp <16c2dc829>#012 next_to_watch <0>#012 jiffies <16c2dd001>#012 next_to_watch.status <0>#012MAC Status <80083>#012PHY Status <796d>#012PHY 1000BASE-T Status <3c00>#012PHY Extended Status <3000>#012PCI Status <10>
May 6 16:30:34 semedic kernel: e1000e 0000:00:1f.6 em1: Detected Hardware Unit Hang:#012 TDH <0>#012 TDT <98>#012 next_to_use <98>#012 next_to_clean <0>#012buffer_info[next_to_clean]:#012 time_stamp <16c2dc829>#012 next_to_watch <0>#012 jiffies <16c2dd7d0>#012 next_to_watch.status <0>#012MAC Status <80083>#012PHY Status <796d>#012PHY 1000BASE-T Status <3c00>#012PHY Extended Status <3000>#012PCI Status <10>
May 6 16:30:36 semedic kernel: e1000e 0000:00:1f.6 em1: Detected Hardware Unit Hang:#012 TDH <0>#012 TDT <98>#012 next_to_use <98>#012 next_to_clean <0>#012buffer_info[next_to_clean]:#012 time_stamp <16c2dc829>#012 next_to_watch <0>#012 jiffies <16c2ddfa0>#012 next_to_watch.status <0>#012MAC Status <80083>#012PHY Status <796d>#012PHY 1000BASE-T Status <3c00>#012PHY Extended Status <3000>#012PCI Status <10>
May 6 16:30:38 semedic kernel: e1000e 0000:00:1f.6 em1: Detected Hardware Unit Hang:#012 TDH <0>#012 TDT <98>#012 next_to_use <98>#012 next_to_clean <0>#012buffer_info[next_to_clean]:#012 time_stamp <16c2dc829>#012 next_to_watch <0>#012 jiffies <16c2de770>#012 next_to_watch.status <0>#012MAC Status <80083>#012PHY Status <796d>#012PHY 1000BASE-T Status <3c00>#012PHY Extended Status <3000>#012PCI Status <10>
May 6 16:30:40 semedic kernel: e1000e 0000:00:1f.6 em1: Reset adapter unexpectedly
May 6 16:30:44 semedic kernel: e1000e: em1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
May 6 16:30:46 semedic kernel: e1000e 0000:00:1f.6 em1: Detected Hardware Unit Hang:#012 TDH <0>#012 TDT <3>#012 next_to_use <3>#012 next_to_clean <0>#012buffer_info[next_to_clean]:#012 time_stamp <16c2e01d2>#012 next_to_watch <0>#012 jiffies <16c2e06bd>#012 next_to_watch.status <0>#012MAC Status <80083>#012PHY Status <796d>#012PHY 1000BASE-T Status <3c00>#012PHY Extended Status <3000>#012PCI Status <10>

@kristian1369

Hi Christian

I would say you have a defective NIC… :frowning:

-> If possible, replace it.

My 2 cents
Andy

1 Like

Change NIC or tune it (adapting command to your NIC):

https://bugzilla.kernel.org/show_bug.cgi?id=47331

I had the same issue yesterday on my Proxmox Host(s) and solved it also with:

ethtool -K enp0s25 tso off gro off gso off

network-nic-offloads

Edit:
for i in $(echo $(ifconfig | grep ^e | awk -F: ‘{print $1}’)); do ethtool -K $i tso off gro off gso off; done

2 Likes