BeagleBone Usb Networking

From eLinux.org
Jump to: navigation, search

Troubleshooting:

USB networking not available (192.168.7.2 not accessible):

In some linux systems a few kernel modules might be needed to support the BeagleBone usb network.

If your usb network is unreachable and you cannot find the following line (or similar) in your dmesg log:

  "rndis_host 1-4.3:1.0: eth2: register 'rndis_host' at usb-0000:00:1a.7-4.3, RNDIS device, c8:a0:30:ad:27:19"

Follow the next steps:

1) Find your kernel sources and edit them. (usually at /usr/src/linux)

make menuconfig

2) Add the following options as Modules:

  Device Drivers  ---> 
  [*] Network device support  --->
      USB Network Adapters  --->
      <M> Multi-purpose USB Networking Framework  
      <M>   CDC Ethernet support (smart devices such as cable modems) 
      <M>   Host for RNDIS and ActiveSync devices (EXPERIMENTAL)
      <M>   Simple USB Network Links (CDC Ethernet subset)
                       
 Device Drivers  --->   
 [*] USB support  --->  
     <M>   USB Gadget Support  --->
     <M>     Ethernet Gadget (with CDC Ethernet support)
     <M>     CDC Composite Device (Ethernet and ACM)
     <M>     Multifunction Composite Gadget (EXPERIMENTAL
            [*]       RNDIS + CDC Serial + Storage configuration

3) Recompile the kernel and install the modules

make && make modules_install

4) If everything went as expected a new network interface will be created the next time you connect your beaglebone.

ip addr

5) assign an IP address to the freshly created network interface and enjoy!