e1000e driver hang in RedHat Linux & derivatives

If you see a driver hang message on the console and the Intel network interface stops from responding to network traffic, you probably need to turn off some TCP offloading:
To change it immediately you'll need to run the following after logging into the console:
# systemctl stop NetworkManager
# rmmod e1000e
# modprobe e1000e
# systemctl start NetworkManager
And then turn the options off via ethtool, where physical_interface is something like eno1:
# ethtool -K physical_interface  tx off sg off gro off gso off tso off
For setting it permanently, use nmcli, where physical_interface_uuid can be found by doing nmci con show (second column) :
# nmcli con mod physical_interface_uuid ethtool.feature-gso off ethtool.feature-gro off ethtool.feature-tso off