NET

Copy the client for ARM to board, and server for x86 to PC, they can be find in the ”/Examples/network”. Set IP, For example, eht0 as “192.168.1.2”, and host pc as “192.168.1.1”. Connect the board to PC, PC as a server, and board as a client, Enter the following command:

    $ ./server 192.168.1.2

And run the client on the board, then will show the follow info.

    # ./client 192.168.1.1
    send messages: 1234567890 to 192.168.1.1
    send messages: 1234567890 to 192.168.1.1
    send messages: 1234567890 to 192.168.1.1

At the same time, you can see the data on the PC which from the board:

    $ ./server 192.168.1.2
    received messages: 1234567890 from 192.168.1.2
    received messages: 1234567890 from 192.168.1.2
    received messages: 1234567890 from 192.168.1.2