nfs problems with jumbo (MTU=9000) but works with default (MTU=1500)Link Aggregation (Bonding) for bandwidth does not work when Link Aggregation Groups (LAG) set on smart switchDo I need to explicitly enable jumbo frames in NFSv4?No lockfile creation in NFS setupMTU keeps getting reset to 1500archlinux netboot diskless node/system, systemd on NFS (v4) fails, rpc.idmapdhow to find the right value of MTU Jumbo frame10Gb network. Can browse share (samba/nfs) from clients, but initiating a copy takes server's network down?Can jumbo frames - MTU=9000 be set on VM machines?Link Aggregation (Bonding) for bandwidth does not work when Link Aggregation Groups (LAG) set on smart switchOracle Linux won't mount CentOS NFS share, but Arch willhow to optimize performance of nfs running inside Strongswan ipsec transport on 10Gb networkwhy MTU change from 1500 to 9000
Why are electrically insulating heatsinks so rare? Is it just cost?
Malcev's paper "On a class of homogeneous spaces" in English
How can I make my BBEG immortal short of making them a Lich or Vampire?
Is it legal for company to use my work email to pretend I still work there?
Alternative to sending password over mail?
Theorems that impeded progress
Replacing matching entries in one column of a file by another column from a different file
Convert two switches to a dual stack, and add outlet - possible here?
Why do I get two different answers for this counting problem?
Does an object always see its latest internal state irrespective of thread?
What does the "remote control" for a QF-4 look like?
How is the claim "I am in New York only if I am in America" the same as "If I am in New York, then I am in America?
Is it possible to do 50 km distance without any previous training?
strTok function (thread safe, supports empty tokens, doesn't change string)
How to draw a waving flag in TikZ
Fully-Firstable Anagram Sets
Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)
Are astronomers waiting to see something in an image from a gravitational lens that they've already seen in an adjacent image?
Is it unprofessional to ask if a job posting on GlassDoor is real?
Languages that we cannot (dis)prove to be Context-Free
Can a vampire attack twice with their claws using Multiattack?
How is it possible to have an ability score that is less than 3?
How does one intimidate enemies without having the capacity for violence?
Why is consensus so controversial in Britain?
nfs problems with jumbo (MTU=9000) but works with default (MTU=1500)
Link Aggregation (Bonding) for bandwidth does not work when Link Aggregation Groups (LAG) set on smart switchDo I need to explicitly enable jumbo frames in NFSv4?No lockfile creation in NFS setupMTU keeps getting reset to 1500archlinux netboot diskless node/system, systemd on NFS (v4) fails, rpc.idmapdhow to find the right value of MTU Jumbo frame10Gb network. Can browse share (samba/nfs) from clients, but initiating a copy takes server's network down?Can jumbo frames - MTU=9000 be set on VM machines?Link Aggregation (Bonding) for bandwidth does not work when Link Aggregation Groups (LAG) set on smart switchOracle Linux won't mount CentOS NFS share, but Arch willhow to optimize performance of nfs running inside Strongswan ipsec transport on 10Gb networkwhy MTU change from 1500 to 9000
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have a local network set up between two servers running ubuntu 18.04 server. They are connected by a 10G network switch (actually 2 bonded connections 10G each). For performance reasons, in /etc/netplan, I have mtu=9000 for the corresponding interface (ethernet or bond). All machines on the subnet have MTU=9000 set. See my previous question and solution: Link Aggregation (Bonding) for bandwidth does not work when Link Aggregation Groups (LAG) set on smart switch
I can ssh, copy files between machines, etc., at high bandwidth (>15 GBit/sec).
One server has an nfs (nfs4, I tried with nfs3 as well) export. I can mount and view some directories of the nfs from other machines on the subnet. Settings are identical to the HowTo: https://help.ubuntu.com/community/NFSv4Howto.
However, commands like "ls" or "cd" or even "df" will randomly hang infinitely on the client.
I tried changing the MTU to default (1500) on the client and host interfaces, while leaving jumbo frames "activated" on the switch. Oddly, this solved all the issues.
I am wondering if NFS(4) is incompatible with jumbo frames, of if anyone has any insight into this. I have found people "optimizing" nfs with different MTU sizes, and people mention hanging "ls" etc., but never in the same context...
linux ubuntu networking nfs nfsv4
add a comment |
I have a local network set up between two servers running ubuntu 18.04 server. They are connected by a 10G network switch (actually 2 bonded connections 10G each). For performance reasons, in /etc/netplan, I have mtu=9000 for the corresponding interface (ethernet or bond). All machines on the subnet have MTU=9000 set. See my previous question and solution: Link Aggregation (Bonding) for bandwidth does not work when Link Aggregation Groups (LAG) set on smart switch
I can ssh, copy files between machines, etc., at high bandwidth (>15 GBit/sec).
One server has an nfs (nfs4, I tried with nfs3 as well) export. I can mount and view some directories of the nfs from other machines on the subnet. Settings are identical to the HowTo: https://help.ubuntu.com/community/NFSv4Howto.
However, commands like "ls" or "cd" or even "df" will randomly hang infinitely on the client.
I tried changing the MTU to default (1500) on the client and host interfaces, while leaving jumbo frames "activated" on the switch. Oddly, this solved all the issues.
I am wondering if NFS(4) is incompatible with jumbo frames, of if anyone has any insight into this. I have found people "optimizing" nfs with different MTU sizes, and people mention hanging "ls" etc., but never in the same context...
linux ubuntu networking nfs nfsv4
I am wondering whether normal frames and jumbo frames are being mixed in the same network, and whether switches/virtual environments having being configured/support that.
– Rui F Ribeiro
2 days ago
1
And also, by experience i know a lot o protocols are "sensible" to MTU changes. NFS is one of them. Have you mounted the nfs at the client side withrsize
andwsize
as explained here? unix.stackexchange.com/q/346197/34720
– nwildner
2 days ago
add a comment |
I have a local network set up between two servers running ubuntu 18.04 server. They are connected by a 10G network switch (actually 2 bonded connections 10G each). For performance reasons, in /etc/netplan, I have mtu=9000 for the corresponding interface (ethernet or bond). All machines on the subnet have MTU=9000 set. See my previous question and solution: Link Aggregation (Bonding) for bandwidth does not work when Link Aggregation Groups (LAG) set on smart switch
I can ssh, copy files between machines, etc., at high bandwidth (>15 GBit/sec).
One server has an nfs (nfs4, I tried with nfs3 as well) export. I can mount and view some directories of the nfs from other machines on the subnet. Settings are identical to the HowTo: https://help.ubuntu.com/community/NFSv4Howto.
However, commands like "ls" or "cd" or even "df" will randomly hang infinitely on the client.
I tried changing the MTU to default (1500) on the client and host interfaces, while leaving jumbo frames "activated" on the switch. Oddly, this solved all the issues.
I am wondering if NFS(4) is incompatible with jumbo frames, of if anyone has any insight into this. I have found people "optimizing" nfs with different MTU sizes, and people mention hanging "ls" etc., but never in the same context...
linux ubuntu networking nfs nfsv4
I have a local network set up between two servers running ubuntu 18.04 server. They are connected by a 10G network switch (actually 2 bonded connections 10G each). For performance reasons, in /etc/netplan, I have mtu=9000 for the corresponding interface (ethernet or bond). All machines on the subnet have MTU=9000 set. See my previous question and solution: Link Aggregation (Bonding) for bandwidth does not work when Link Aggregation Groups (LAG) set on smart switch
I can ssh, copy files between machines, etc., at high bandwidth (>15 GBit/sec).
One server has an nfs (nfs4, I tried with nfs3 as well) export. I can mount and view some directories of the nfs from other machines on the subnet. Settings are identical to the HowTo: https://help.ubuntu.com/community/NFSv4Howto.
However, commands like "ls" or "cd" or even "df" will randomly hang infinitely on the client.
I tried changing the MTU to default (1500) on the client and host interfaces, while leaving jumbo frames "activated" on the switch. Oddly, this solved all the issues.
I am wondering if NFS(4) is incompatible with jumbo frames, of if anyone has any insight into this. I have found people "optimizing" nfs with different MTU sizes, and people mention hanging "ls" etc., but never in the same context...
linux ubuntu networking nfs nfsv4
linux ubuntu networking nfs nfsv4
asked 2 days ago
rvealerveale
215
215
I am wondering whether normal frames and jumbo frames are being mixed in the same network, and whether switches/virtual environments having being configured/support that.
– Rui F Ribeiro
2 days ago
1
And also, by experience i know a lot o protocols are "sensible" to MTU changes. NFS is one of them. Have you mounted the nfs at the client side withrsize
andwsize
as explained here? unix.stackexchange.com/q/346197/34720
– nwildner
2 days ago
add a comment |
I am wondering whether normal frames and jumbo frames are being mixed in the same network, and whether switches/virtual environments having being configured/support that.
– Rui F Ribeiro
2 days ago
1
And also, by experience i know a lot o protocols are "sensible" to MTU changes. NFS is one of them. Have you mounted the nfs at the client side withrsize
andwsize
as explained here? unix.stackexchange.com/q/346197/34720
– nwildner
2 days ago
I am wondering whether normal frames and jumbo frames are being mixed in the same network, and whether switches/virtual environments having being configured/support that.
– Rui F Ribeiro
2 days ago
I am wondering whether normal frames and jumbo frames are being mixed in the same network, and whether switches/virtual environments having being configured/support that.
– Rui F Ribeiro
2 days ago
1
1
And also, by experience i know a lot o protocols are "sensible" to MTU changes. NFS is one of them. Have you mounted the nfs at the client side with
rsize
and wsize
as explained here? unix.stackexchange.com/q/346197/34720– nwildner
2 days ago
And also, by experience i know a lot o protocols are "sensible" to MTU changes. NFS is one of them. Have you mounted the nfs at the client side with
rsize
and wsize
as explained here? unix.stackexchange.com/q/346197/34720– nwildner
2 days ago
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f510277%2fnfs-problems-with-jumbo-mtu-9000-but-works-with-default-mtu-1500%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f510277%2fnfs-problems-with-jumbo-mtu-9000-but-works-with-default-mtu-1500%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I am wondering whether normal frames and jumbo frames are being mixed in the same network, and whether switches/virtual environments having being configured/support that.
– Rui F Ribeiro
2 days ago
1
And also, by experience i know a lot o protocols are "sensible" to MTU changes. NFS is one of them. Have you mounted the nfs at the client side with
rsize
andwsize
as explained here? unix.stackexchange.com/q/346197/34720– nwildner
2 days ago