Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NAS-130434 / 24.10 / drop ntb0 MTU to 64000 #14136

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/freenas/etc/systemd/network/10-persistent-net.link
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
[Match]
Driver=ntb_netdev


[Link]
Name=ntb0
# TODO: at time of writing, ntb on SCALE has pathological
# behavior related TCP/IP Window size calculation whereby
# the receiving side clamps the window size to 0 causing
# recalculation which, ultimately, ends with behavior
# described in https://en.wikipedia.org/wiki/Silly_window_syndrome
# The work-around is to drop MTU size a bit which fixes
# the scenario altogether. When we discover why this is
# happening, we should remove the MTUBytes line.
MTUBytes=64000
Loading