MikroTik

How to Configure Jumbo Frames on MikroTik: Step by Step

Os Jumbo Frames são pacotes Ethernet maiores que o padrão de 1500 bytes, usados para otimizar o desempenho em redes locais de alto tráfego. Ativar Jumbo Frames no Mikrotik pode melhorar a eficiência em ambientes que exigem transferência intensa de dados, como armazenamento em rede (NAS) ou servidores.

Step-by-Step Guide to Configure Jumbo Frames on MikroTik

1. Access the MikroTik

  • Conecte-se ao roteador via WinBox, SSH, ou interface Web.

2. Verify MTU Support on the Interface

  • Certifique-se de que a interface suporta ajustes no MTU (Maximum Transmission Unit):
    RouterOS
    /interface ethernet print

3. Adjust the Interface MTU

  • Configure o MTU para um valor superior ao padrão, como 9000 bytes, dependendo da sua rede:
    RouterOS
    /interface ethernet set ether1 mtu=9000

4. Adjust MTU on Related Interfaces

  • Se a interface configurada estiver em uma bridge ou VLAN, ajuste também o MTU nessas interfaces:
    RouterOS
    /interface bridge set Bridge1 mtu=9000
    /interface vlan set VLAN10 mtu=9000

5. Check Devices on the Network

  • Make sure all devices on the network support Jumbo Frames. Incompatible devices may cause packet loss.

6. Test the Connection

  • Use o comando ping com pacotes grandes para verificar se o Jumbo Frame está funcionando corretamente: ping 192.168.1.2 size=8972 do-not-fragment=yes

7. Adjust Switch Settings (if necessary)

  • If the MikroTik is connected to a managed switch, enable Jumbo Frames on the switch to avoid fragmentation.

8. Monitor Traffic

  • Verifique se o tráfego está fluindo corretamente após a configuração:
    RouterOS
    /interface monitor-traffic interface=ether1

Final Considerations

Ativar Jumbo Frames no Mikrotik pode melhorar o desempenho em redes locais de alta capacidade. No entanto, é essencial garantir que todos os dispositivos na rede sejam compatíveis para evitar problemas de conectividade.