realtek-dropping-packets-on-linux-ubuntu-and-fedora

JSON

rev 5  |  foxhop  |  1321130733000  |  JSON

rev 4
rev 5
6The Realtek r8168B network card does not work out of the box in Redhat, Centos, 6The Realtek r8168B network card does not work out of the box in Redhat, Centos, 
>Fedora, or Ubuntu: instead of loading the r8168 driver, modprobe loads the r8169>Fedora, or Ubuntu: instead of loading the r8168 driver, modprobe loads the r8169
> driver, which is broken as can be seen with ifconfig which shows large amounts > driver, which is broken as can be seen with ifconfig which shows large amounts 
>of dropped packets.>of dropped packets.
77
t8One solution found by `Barry Mavin <http://www.recital.com/>`_ is to remove the t8One solution found by Barry Mavin is to remove the r8169 driver and install the 
>r8169 driver and install the latest r8168 driver.>latest r8168 driver.
99
10Steps to install Realtek r8168 driver10Steps to install Realtek r8168 driver
rev 4  |  foxhop  |  1315849391000  |  JSON

rev 3
rev 4
5050
51**The dropped packets problem should appear fixed! w00t!**51**The dropped packets problem should appear fixed! w00t!**
tt52 
53Some people notice r8169 driver returning after reboots.  To prevent this you mi
 >ght need to clean the cache using the following command:
54 
55.. code-block:: bash
56 
57  update-initramfs -u
58 
rev 3  |  foxhop  |  1305407962000  |  JSON

rev 2
rev 3
8One solution found by `Barry Mavin <http://www.recital.com/>`_ is to remove the 8One solution found by `Barry Mavin <http://www.recital.com/>`_ is to remove the 
>r8169 driver and install the latest r8168 driver.>r8169 driver and install the latest r8168 driver.
99
t10Steps to install Realtec r8168 drivert10Steps to install Realtek r8168 driver
11-------------------------------------------11-------------------------------------------
1212
rev 2  |  foxhop  |  1305389226000  |  JSON

rev 1
rev 2
6The Realtek r8168B network card does not work out of the box in Redhat, Centos, 6The Realtek r8168B network card does not work out of the box in Redhat, Centos, 
>Fedora, or Ubuntu: instead of loading the r8168 driver, modprobe loads the r8169>Fedora, or Ubuntu: instead of loading the r8168 driver, modprobe loads the r8169
> driver, which is broken as can be seen with ifconfig which shows large amounts > driver, which is broken as can be seen with ifconfig which shows large amounts 
>of dropped packets.>of dropped packets.
77
t8One solution found by Barry Mavin is to remove the r8169 driver and install the t8One solution found by `Barry Mavin <http://www.recital.com/>`_ is to remove the 
>latest r8168 driver.>r8169 driver and install the latest r8168 driver.
99
10Steps to install Realtec r8168 driver10Steps to install Realtec r8168 driver
rev 1  |  foxhop  |  1305388643000  |  JSON

empty
rev 1
tt1Realtek NIC driver r8169 dropping packets on linux ubuntu and fedora
2=========================================================================
3 
4Many motherboards nowadays have integrated gigabit ethernet that use the Realtek
 > NIC chipset.
5 
6The Realtek r8168B network card does not work out of the box in Redhat, Centos, 
 >Fedora, or Ubuntu: instead of loading the r8168 driver, modprobe loads the r8169
 > driver, which is broken as can be seen with ifconfig which shows large amounts 
 >of dropped packets.
7 
8One solution found by Barry Mavin is to remove the r8169 driver and install the 
 >latest r8168 driver.
9 
10Steps to install Realtec r8168 driver
11-------------------------------------------
12 
13* Download the R8168B linux driver: 
14 
15  .. code-block:: bash
16    
17    wget http://www.foxhop.net/attachment/r8168-8.023.00.tar.bz2
18    tar vjxf r8168-8.023.00.tar.bz2
19 
20* Check whether the built-in driver, r8169.ko (or r8169.o for kernel 2.4.x), is 
 >installed:
21 
22  .. code-block:: bash
23 
24     lsmod | grep r8169
25 
26* r8169 seems installed if the lsmod command returns output, so remove r8169 wit
 >h:
27 
28  .. code-block:: bash
29 
30     sudo rmmod r8169
31 
32* install the Realtec r8168b nic driver:
33 
34  .. code-block:: bash
35 
36    cd r8168-8.023.00
37    sudo ./autorun.sh
38 
39* prevent the r8169 driver from loading again:
40 
41  .. code-block:: bash
42 
43    echo "blacklist r8169" >> /etc/modprobe.d/blacklist.conf
44 
45* you may now verify that r8168b has been installed and loaded by running:
46 
47  .. code-block:: bash
48    
49    lsmod | grep r8168
50 
51**The dropped packets problem should appear fixed! w00t!**