Configure DevKit Network

When setting up the DevKit in standalone mode, the primary task is configuring its IP address. The method you use depends on network availability. There are three possible ways to assign an IP address to the DevKit.

../../../_images/devkit-to-network-directly.png

Note

  • Suitable when the developer’s network is less restrictive and provides available ethernet port.

  • Connect the DevKit directly to a network with DHCP enabled. The DevKit will automatically receive an IP address.

  • The assigned IP can be determined by accessing the DevKit’s console through the UART interface.

From the serial console, run the following command to check the IP address:

ifconfig eth0 | grep -w inet

The output will display the IP address assigned to the DevKit. For example:

davinci:~$ ifconfig eth0 | grep -w inet
inet 192.168.1.130  netmask 255.255.255.0  broadcast 192.168.1.255

The 192.168.1.130 is the IP address assigned to the DevKit.