Ubuntu 16.10 RealTek r8169 nivelando velocidades a 100mb

0

Eu sou relativamente novo no Ubuntu. Eu tenho o Ubuntu 16.10 e notei que minha velocidade é limitada a 100mb. Eu tenho a placa ethernet RealTek r8169. Eu sei que faz até 1g. Alguém pode me ajudar por favor?

Eu executei o ifconfig conforme solicitado e é isso que ele retornou. Foi-me dito para procurar "enp" para que eu pudesse executar um comando nother mas não vejo isso.

eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.1.192  netmask 255.255.255.0  broadcast 192.168.1.255
        inet6 fe80::6758:6b52:24ca:e40c  prefixlen 64  scopeid 0x20<link>
        ether 5c:b9:01:04:dd:cb  txqueuelen 1000  (Ethernet)
        RX packets 152184  bytes 197717227 (197.7 MB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 88917  bytes 19919430 (19.9 MB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1  (Local Loopback)
        RX packets 63880  bytes 3941452 (3.9 MB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 63880  bytes 3941452 (3.9 MB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.1.187  netmask 255.255.255.0  broadcast 192.168.1.255
        inet6 fe80::fccd:fb41:323c:af52  prefixlen 64  scopeid 0x20<link>
        ether ac:b5:7d:c0:3d:e2  txqueuelen 1000  (Ethernet)
        RX packets 43188  bytes 4125698 (4.1 MB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 3969  bytes 741247 (741.2 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
    
por Ryan Moeller 13.03.2017 / 01:28

1 resposta

0

Sanidade básica: você tem suas unidades certas? É limitado a 100 Mega bit por segundo (100Mbps ~ 12MBps) ou 100 Mega Byte por segundo? Porque o último é a velocidade realista para um link de 1Gbit.

Verifique também se você não está medindo a velocidade do Wi-Fi, pois você tem um endereço IP interno atribuído a ambas as interfaces. Se wlan (seu WiFi) for usado como rota padrão, dependendo da qualidade do link, talvez você esteja experimentando velocidades de Ethernet menores. Para verificar a rota padrão, abra um Terminal. Quando o terminal estiver aberto, digite o seguinte comando:

ip route | grep default

Boa sorte.

    
por Michiel 03.04.2018 / 15:51