Tip
Replace ethX
with the name of your RPN interface.
The RPN network supports by default jumbo frames. This allows you to configure your network interfaces with an MTU 9000 (Maximum transfer unit).
This technology allows you to significantly minimize the interruptions and processor latencies needed for data transfer. The performance gain can reach up to +20% on resource-intensive applications such as iSCSI, NFS, and DRDB.
To check your current MTU settings, type:
ifconfig ethX | grep MTU
Replace ethX
with the name of your RPN interface.
An output like the following example displays:
root@my-dedibox-server:~# ifconfig ethX | grep MTUUP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
In the example above you can see the current MTU of the network interface is set to the Ethernet standard of 1500.
/etc/sysconfig/network-scripts/ifcfg-ethX
, where X
is the number of your interface, in a text editor. Then add the following line to it:
MTU="9000"
service network restart
/etc/network/interfaces
in a text editor and insert mtu 9000
below the line iface ethX inet static
:
auto ethXiface ethX inet staticmtu 9000[...]
service network restart
/etc/netplan/01-netcfg.yaml
in a text editor and add the line mtu: 9000
in the configuration of the RPN interface:
ethernets:enp3s0:dhcp4: trueenp4s0:addresses:- 192.168.0.10/24gateway4: 192.168.0.1mtu: 9000nameservers:addresses:- 1.1.1.1- 2.2.2.2
sudo netplan apply
To change the MTU settings on Windows, you can use a tool like TCP Optimizer to modify the MTU settings.
9000
.