Skip to content

Instantly share code, notes, and snippets.

@alcapone1933
Forked from crypt0rr/fix.md
Created August 26, 2025 02:44
Show Gist options
  • Save alcapone1933/4e15cd3b9bb145ce4befb29f975d86b9 to your computer and use it in GitHub Desktop.
Save alcapone1933/4e15cd3b9bb145ce4befb29f975d86b9 to your computer and use it in GitHub Desktop.
Intel e1000e fix - Proxmox

Fix Intel e1000e error

Please note - you may want to validate whether the options used affect your setup.

Create a new service file.

nano /etc/systemd/system/disable-offloading.service

Paste the required information/command in the newly created service file - please change eth0 to your desired adapter.

[Unit]
Description=Disable NIC offloading
After=network.target

[Service]
Type=oneshot
ExecStart=/sbin/ethtool -K eth0 gso off gro off tso off tx off rx off rxvlan off txvlan off sg off
RemainAfterExit=true

[Install]
WantedBy=multi-user.target

Load the new service file and enable on reboot.

systemctl daemon-reexec && systemctl daemon-reload && systemctl enable disable-offloading.service
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment