how to find the right value of MTU Jumbo frame [closed]
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
We've made the decision to set jumbo frames on all our Linux machines. We have a hadoop cluster with master machines, workers machines and Kafka machines.
Our switches (Cisco) are suitable to Jumbo frame and that's fine, but jumbo frames can set as 8000 or 9000 or between them or less than 8000.
Questions
- What is the formula to calculate what is the best MTU value?
- How can I set the MTU value to get Linux kernel performance better?
linux networking rhel network-interface hadoop
closed as off-topic by slm⦠Mar 6 at 14:01
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This question has been posted on multiple sites. Cross-posting is strongly discouraged; see the help center and community FAQ for more information." â slm
add a comment |Â
up vote
0
down vote
favorite
We've made the decision to set jumbo frames on all our Linux machines. We have a hadoop cluster with master machines, workers machines and Kafka machines.
Our switches (Cisco) are suitable to Jumbo frame and that's fine, but jumbo frames can set as 8000 or 9000 or between them or less than 8000.
Questions
- What is the formula to calculate what is the best MTU value?
- How can I set the MTU value to get Linux kernel performance better?
linux networking rhel network-interface hadoop
closed as off-topic by slm⦠Mar 6 at 14:01
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This question has been posted on multiple sites. Cross-posting is strongly discouraged; see the help center and community FAQ for more information." â slm
I'd recommend serverfault.com or networkengineering.stackexchange.com for this.
â Vlastimil
Mar 6 at 6:01
thx I will .....
â yael
Mar 6 at 9:26
I see you have already posted on network.. crossposting is discouraged, you should have deleted your question here first.
â Vlastimil
Mar 6 at 10:02
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
We've made the decision to set jumbo frames on all our Linux machines. We have a hadoop cluster with master machines, workers machines and Kafka machines.
Our switches (Cisco) are suitable to Jumbo frame and that's fine, but jumbo frames can set as 8000 or 9000 or between them or less than 8000.
Questions
- What is the formula to calculate what is the best MTU value?
- How can I set the MTU value to get Linux kernel performance better?
linux networking rhel network-interface hadoop
We've made the decision to set jumbo frames on all our Linux machines. We have a hadoop cluster with master machines, workers machines and Kafka machines.
Our switches (Cisco) are suitable to Jumbo frame and that's fine, but jumbo frames can set as 8000 or 9000 or between them or less than 8000.
Questions
- What is the formula to calculate what is the best MTU value?
- How can I set the MTU value to get Linux kernel performance better?
linux networking rhel network-interface hadoop
edited Mar 6 at 14:03
slmâ¦
235k65482654
235k65482654
asked Mar 6 at 4:26
yael
1,9501145
1,9501145
closed as off-topic by slm⦠Mar 6 at 14:01
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This question has been posted on multiple sites. Cross-posting is strongly discouraged; see the help center and community FAQ for more information." â slm
closed as off-topic by slm⦠Mar 6 at 14:01
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This question has been posted on multiple sites. Cross-posting is strongly discouraged; see the help center and community FAQ for more information." â slm
I'd recommend serverfault.com or networkengineering.stackexchange.com for this.
â Vlastimil
Mar 6 at 6:01
thx I will .....
â yael
Mar 6 at 9:26
I see you have already posted on network.. crossposting is discouraged, you should have deleted your question here first.
â Vlastimil
Mar 6 at 10:02
add a comment |Â
I'd recommend serverfault.com or networkengineering.stackexchange.com for this.
â Vlastimil
Mar 6 at 6:01
thx I will .....
â yael
Mar 6 at 9:26
I see you have already posted on network.. crossposting is discouraged, you should have deleted your question here first.
â Vlastimil
Mar 6 at 10:02
I'd recommend serverfault.com or networkengineering.stackexchange.com for this.
â Vlastimil
Mar 6 at 6:01
I'd recommend serverfault.com or networkengineering.stackexchange.com for this.
â Vlastimil
Mar 6 at 6:01
thx I will .....
â yael
Mar 6 at 9:26
thx I will .....
â yael
Mar 6 at 9:26
I see you have already posted on network.. crossposting is discouraged, you should have deleted your question here first.
â Vlastimil
Mar 6 at 10:02
I see you have already posted on network.. crossposting is discouraged, you should have deleted your question here first.
â Vlastimil
Mar 6 at 10:02
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
The best value of Jumbo Frames is the maximum MTU value which is supported by network device. But you should ensure that all route path support that MTU value to prevent fragmentation on some network node.
So, you should walk through the packets route path and define max MTU value. Then, set this value on all network nodes.
In Linux Jumbo Frames can be enabled by this way:
sudo ip link set <interface> mtu <mtu_value>
To ensure try this:
ip link show <interface>
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
The best value of Jumbo Frames is the maximum MTU value which is supported by network device. But you should ensure that all route path support that MTU value to prevent fragmentation on some network node.
So, you should walk through the packets route path and define max MTU value. Then, set this value on all network nodes.
In Linux Jumbo Frames can be enabled by this way:
sudo ip link set <interface> mtu <mtu_value>
To ensure try this:
ip link show <interface>
add a comment |Â
up vote
0
down vote
accepted
The best value of Jumbo Frames is the maximum MTU value which is supported by network device. But you should ensure that all route path support that MTU value to prevent fragmentation on some network node.
So, you should walk through the packets route path and define max MTU value. Then, set this value on all network nodes.
In Linux Jumbo Frames can be enabled by this way:
sudo ip link set <interface> mtu <mtu_value>
To ensure try this:
ip link show <interface>
add a comment |Â
up vote
0
down vote
accepted
up vote
0
down vote
accepted
The best value of Jumbo Frames is the maximum MTU value which is supported by network device. But you should ensure that all route path support that MTU value to prevent fragmentation on some network node.
So, you should walk through the packets route path and define max MTU value. Then, set this value on all network nodes.
In Linux Jumbo Frames can be enabled by this way:
sudo ip link set <interface> mtu <mtu_value>
To ensure try this:
ip link show <interface>
The best value of Jumbo Frames is the maximum MTU value which is supported by network device. But you should ensure that all route path support that MTU value to prevent fragmentation on some network node.
So, you should walk through the packets route path and define max MTU value. Then, set this value on all network nodes.
In Linux Jumbo Frames can be enabled by this way:
sudo ip link set <interface> mtu <mtu_value>
To ensure try this:
ip link show <interface>
answered Mar 6 at 9:31
Yurij Goncharuk
2,2582521
2,2582521
add a comment |Â
add a comment |Â
I'd recommend serverfault.com or networkengineering.stackexchange.com for this.
â Vlastimil
Mar 6 at 6:01
thx I will .....
â yael
Mar 6 at 9:26
I see you have already posted on network.. crossposting is discouraged, you should have deleted your question here first.
â Vlastimil
Mar 6 at 10:02