Created
April 28, 2025 20:45
-
-
Save davidlj95/d099d722848f041d89d65dba891e7031 to your computer and use it in GitHub Desktop.
Raspberry Pi + Tailscale exit node: UDP GRO config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description= UDPGroForwarding | |
| Wants=network-online.target | |
| After=network-online.target | |
| [Service] | |
| Type=oneshot | |
| ExecStart=/sbin/ethtool -K eth0 rx-udp-gro-forwarding on rx-gro-list off | |
| [Install] | |
| WantedBy=multi-user.target |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Raspberry Pi + Tailscale exit node: UDP GRO config
This is the
systemdservice you can add to fix the UDP GRO config warning when turning a Tailscale node as an exit node in a Raspberry Pi.Place it inside the
/etc/systemd/systemdirectory, then reload daemons, enable it and start it.Ensure
eth0is your interface. You can use the following command to know:Commands:
Check if the config was applied successfully by using the following command:
Also if running
sudo tailscale up --advertise-exit-nodeno warning should appear this time.Source:
https://www.reddit.com/r/Tailscale/comments/18qzf9f/comment/kf0sha4/