Ethernet connection with an embedded linux board

Hi , I’ve bought an embedded OLIMEX linux board powered by an AT91SAM9260 ARM processor which has an ethernet port.

I 'd like to download files over ethernet using TFTP protocol from a host PC (equipped with ubuntu 8.04 ) to the embedded board but I don’t know how to do it.

I own an ethernet cross cable and when I plug it both to the PC and the board on the bar I see a notification that says “wired network connection”.

The home page of the board manufacturer is :

http://www.olimex.com/dev/sam9-L9260.html

and the user manual of the board is:

http://www.olimex.com/dev/pdf/ARM/ATMEL/SAM9-L9260.pdf

I don’t know how to discover the IP address of my laptop to issue commands like wget to download in the embedded board the files compiled in the laptop pc with a C cross compiler .

Please , can somebody give me some advice?

Thank you very much in advance.

On the Ubuntu box, run “ifconfig” (or “/sbin/ifconfig”) to list all your network interfaces and the addresses they have. “arp” will show the ethernet addresses currently known to be on the same network.

When I give ifconfig i get this:

caccolillo@caccolillo-laptop:~$ ifconfig

eth0 Link encap:Ethernet HWaddr 00:40:d0:8a:64:c9

UP BROADCAST MULTICAST MTU:1500 Metric:1

RX packets:0 errors:0 dropped:0 overruns:0 frame:0

TX packets:0 errors:0 dropped:0 overruns:0 carrier:0

collisions:0 txqueuelen:1000

RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)

Interrupt:18 Base address:0x6100

wlan0 Link encap:Ethernet HWaddr 00:10:60:63:26:e9

UP BROADCAST MULTICAST MTU:1500 Metric:1

RX packets:0 errors:0 dropped:0 overruns:0 frame:0

TX packets:0 errors:0 dropped:0 overruns:0 carrier:0

collisions:0 txqueuelen:1000

RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)

wlan0:avahi Link encap:Ethernet HWaddr 00:10:60:63:26:e9

inet addr:169.254.7.31 Bcast:169.254.255.255 Mask:255.255.0.0

UP BROADCAST MULTICAST MTU:1500 Metric:1

wmaster0 Link encap:UNSPEC HWaddr 00-10-60-63-26-E9-00-00-00-00-00-00-00-00-00-00

UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1

RX packets:0 errors:0 dropped:0 overruns:0 frame:0

TX packets:0 errors:0 dropped:0 overruns:0 carrier:0

collisions:0 txqueuelen:1000

RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)

caccolillo@caccolillo-laptop:~$

Could you please tell me now how I can go on to configure the eth0 port please?

Thank you very much.

When I give ifconfig i get this:

caccolillo@caccolillo-laptop:~$ ifconfig

eth0 Link encap:Ethernet HWaddr 00:40:d0:8a:64:c9

UP BROADCAST MULTICAST MTU:1500 Metric:1

RX packets:0 errors:0 dropped:0 overruns:0 frame:0

TX packets:0 errors:0 dropped:0 overruns:0 carrier:0

collisions:0 txqueuelen:1000

RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)

Interrupt:18 Base address:0x6100

wlan0 Link encap:Ethernet HWaddr 00:10:60:63:26:e9

UP BROADCAST MULTICAST MTU:1500 Metric:1

RX packets:0 errors:0 dropped:0 overruns:0 frame:0

TX packets:0 errors:0 dropped:0 overruns:0 carrier:0

collisions:0 txqueuelen:1000

RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)

wlan0:avahi Link encap:Ethernet HWaddr 00:10:60:63:26:e9

inet addr:169.254.7.31 Bcast:169.254.255.255 Mask:255.255.0.0

UP BROADCAST MULTICAST MTU:1500 Metric:1

wmaster0 Link encap:UNSPEC HWaddr 00-10-60-63-26-E9-00-00-00-00-00-00-00-00-00-00

UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1

RX packets:0 errors:0 dropped:0 overruns:0 frame:0

TX packets:0 errors:0 dropped:0 overruns:0 carrier:0

collisions:0 txqueuelen:1000

RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)

caccolillo@caccolillo-laptop:~$

Please, could you tell me now how I can go on to configure the eth0 port ?

Thank you very much.