MTU é algo como: "Unidade Máxima de Transmissão", ou seja o tamanho máximo que cada pacote TCP/IP pode assumir, se este valor estiver igual ao do roteador (no meu caso velox) a conexão vai ficar mais rápida, já que os pacotes não necessitarão ser quebrados. :)
Source: http://monespaceperso.org/blog-en/2009/02/26/how-to-change-the-default-mtu-of-a-network-card-on-ubuntu/
Permanent change
To make this change permanent without having to redo this command after each reboot, we need to add a small script to be executed during the computer start-up when the network card become active. To do this, we must first create the script in the "/etc/network/if-up" folder.
You can use gedit, kate or your favorite text editor like this:
sudo vim /etc/network/if-up.d/mtu
# conteúdo do script
#!/bin/sh
ifconfig eth0 mtu 1492
# altere as permissões
sudo chmod 755 /etc/network/if-up.d/mtu
Veja o script completo
Massa! ;-)
ResponderExcluirMassa! ;-)
ResponderExcluir