Beagle Board is not able to connect to internet..

Hi,

I am using Beagle Board for project purpose.
I loaded Angstrom/2.6.27 linux in it and I am able to boot it and see
the boot messages on hyperterminal of my PC.

Now , I want to connect it to internet. I have connected a "USB to
ethernet 10/100 adapter" to the beagle board with the use of a "USB
hub 2.0".

Manufacturer of my "USB to ethernet 10/100" is Enter.(http://www.enter-
world.com/).

But when I boot the beagle board(with the above setup), beagle board
is unable to get the ethernet connected. with ifconfig command, it
shows below:

[root@beagleboard /]# ifconfig eth0
ifconfig: eth0: error fetching interface information: Device not found

what may be the issue here,

(1) does beagle board not support this USB to ethernet adapter? if
yes, which one is supported?
(2) Do I need to install a device driver in beagle board to support
this usb to ethernet adapter? if yes, where I can find it in internet?

below is a piece of the message I get on boot.

Texas Instruments X-Loader 1.41
U-Boot 1.3.3 (Jul 10 2008 - 16:33:09)

## Booting kernel from Legacy Image at 80300000 ...
   Image Name: Angstrom/2.6.27/beagleboard
   Image Type: ARM Linux Kernel Image (uncompressed)
   Data Size: 2231060 Bytes = 2.1 MB
   Load Address: 80008000
   Entry Point: 80008000
   Verifying Checksum ... OK
   Loading Kernel Image ... OK
OK

Thanks,
Best Regards,
Manish

manish wrote:

Hi,

I am using Beagle Board for project purpose.
I loaded Angstrom/2.6.27 linux in it and I am able to boot it and see
the boot messages on hyperterminal of my PC.

Now , I want to connect it to internet. I have connected a "USB to
ethernet 10/100 adapter" to the beagle board with the use of a "USB
hub 2.0".

Manufacturer of my "USB to ethernet 10/100" is Enter.(http://www.enter-
world.com/).

But when I boot the beagle board(with the above setup), beagle board
is unable to get the ethernet connected. with ifconfig command, it
shows below:

[root@beagleboard /]# ifconfig eth0

try usb0

Try a ethernet manual configuration, use a Terminal or a USB serial port the next commands:

ifconfig usb0 IPADDRES netmask 255.255.255.0
route add default gw IPGATEWAY

Example in command line, the addres must correspond to your ethernet network:
ifconfig usb0 192.168.60.243 netmask 255.255.255.0
route add default gw 192.168.60.1

Then try to connect to web site:
pin google.com

that’s all

I hope to be helpful in your purposes,