Install your
network cards and give them IP address. You can use ifconfig for this, for
example ifconfig 192.168.42.1 netmask 255.255.255.0. The IPv4 address use 32-bit
integers so the address are broken down to 11111111.11111111.11111111.11111111.
Each section consisting of 8-bits. Part of the address is used as the network
identifier and the other used as the host identifier, so 192.168.42.2 with a
netmask of 255.255.255.0 is on 192.168.42 network with the host ID 2 and the
broadcast address would be 192.168.42.255. There's more to network address, but
we don't need to use it here.
Ping your
embedded board after the network addresses are setup on both computers. This
should have been easy, but if there is a problem you could have a device
connected to the network that is using the same network address as one of
computers we just setup, like a modem for example. Make sure your drivers are
loaded using lsmod and verify the network address on both machines, they must be
using the same network identifier and the host number must be unique on the
network.