---
title: "Configure Jumbo Frames in vRack on Dedicated Servers"
description: "Configure Jumbo Frames (MTU 9000) in your OVHcloud vRack to optimise network throughput between dedicated servers."
url: https://docs.ovhcloud.com/en/guides/bare-metal-cloud/dedicated-servers/vrack-mtu-jumbo-frames
lang: en
lastUpdated: 2020-08-17
---
# Configure Jumbo Frames in vRack on Dedicated Servers

## Objective

Jumbo frames are Ethernet frames with more than 1500 bytes of payload. They can carry up to 9000 bytes of payload. Using them minimizes routing processing time. In the case of vRack, this will optimize traffic on it.

**This guide explains how to configure your Linux distribution to use Jumbo frames within the vRack.**

## Requirements

- a [vRack](https://www.ovhcloud.com/en-gb/network/vrack/)
- run a shell as root

:::warning
This feature might be unavailable or limited on servers of the [**Eco** product line](https://eco.ovhcloud.com/en-gb/about/).

Please visit our [comparison page](https://eco.ovhcloud.com/en-gb/compare/) for more information.
:::

:::info
MTU size must be the same on all hosts in the same subnet.
:::

## Instructions

### Step 1: Checking MTU

```sh
ip link show | grep mtu
```

### Step 2: Setting new MTU size and test command

```sh
ip link set <interface name> mtu 9000
```

### Step 3: Making changes permanent

Edit the file `/etc/network/interface` and add the following lines to it:

#### For a DHCP-managed interface

```sh
Auto <interface name>

Iface <interface name> inet dhcp

  Pre-up /sbin/ip link set dev <interface name> up mtu 9000</p>
```

#### For a fixed IP interface

```sh
Auto <interface name>

Iface <interface name> inet static
  mtu 9000
```

## Go further

[Configuring the vRack on your Dedicated Servers](/en/guides/bare-metal-cloud/dedicated-servers/vrack-configuring-on-dedicated-server.md)

[Dedicated Server - Configuring an IP Block in a vRack](/en/guides/bare-metal-cloud/dedicated-servers/configuring-an-ip-block-in-a-vrack.md)

Join our [community of users](https://community.ovhcloud.com/).
