Configuring jumbo frames between two servers
In tweaking an AppAssure environment recently, I ran through Dell documentation on performance tweaks that are mentioned to help improve AppAssure backup performance. ย One of the recommended tweaks for network performance is setting up jumbo frames between your primary core and target core servers. ย What are jumbo frames you might ask? ย Jumbo frames are Ethernet frames with more than the standard 1500 bytes of payload and typically have the advantage of reducing TCP overhead and CPU cycles in the process. ย Take a look at this in depth definition and explanation. ย Let’s take a look at configuring jumboย frames between two servers.
Configuring jumbo frames between two servers
Configuring jumbo frames between two servers means that we have to configure jumbo frames along the whole chain of communication devices. ย This means any switches, routers, etc, between the two, have to be configured for jumbo frames to work correctly.
Switches
Most all enterprise grade switches today support jumbo frames. ย This feature can usually be enabled from either a CLI or web GUI. ย The environment I worked with recently is using a mix of Enterasys and Extreme switches. ย The CLI commands are fairly straightforward.
To enable jumbo frames in the Enterasys CLI:
show port jumbo ge.1.1 set port jumbo enable ge.1.1
In the Extreme XOS CLI:
show port information detail enable jumbo-frame ports [all | <port_list>]
Remember in the port configuration, this will need to be done on all access ports for your servers as well as the trunk uplink ports for your switches so they can correctly pass the jumbo frames.
Windows Servers
On the Windows server side, enabling jumbo frames is found under the advanced properties of most enterprise network cards.
Navigate to your Network Connections configuration, right click your network adapter, go to properties, and then under theย Connect Using that lists your network card, clickย Configure.
Change theย Jumbo Packet Value toย 9014.
Testing
To test that jumbo frames have been successfully enabled throughout the chain of communication between servers, we can use theย ping command along with some switches.
We can ping withย 8972ย bytes send buffer size as there is aย 28 byte TCP header appended to the 8972 equalling the 9000 bytes jumbo packet size.
ping -f -l 8972 192.168.1.50
If you test and ping withย 8973 bytes for instance, you will receive the following in your ping output:
Packet needs to be fragmented but DF set.
Final Thoughts
Jumbo frames are especially useful for maximizing the TCP payload, reducing CPU cycles, and maxing out network performance. ย Keep in mind that jumbo frames need to be enabled from the servers all the way through the network chain, including switches, routers, etc.