Hi
However, as can be seen from the figure, this IP has been conflicted, and replacing a network segment should be able to solve it.
1. I assume that you already have a router, your PC has access to the Internet through the router, and your router currently has a network port, so please connect the development board to this network port with a network cable.
2. Log in to the development board using USB mode, and switch to root:
ssh HwHiAiUser@host_ip
For the Atlas 200 DK, host_ip defaults to 192.168.1.2 (USB connection).
su root
3. Edit the interfaces file to configure dynamic IP allocation (make sure your router has DHCP capability enabled) :
vim /etc/network/interfaces
In the interfaces file, change the configuration of eth0 to the following two lines:
auto eth0
iface eth0 inet dhcp
3. Restart the development board
reboot
After rebooting, the development board can be connected to the Internet. At this time, you can try Ping Baidu:
ping www.google.com
Note: If you do not want to restart the development board, you can also execute the following command: ifdown eth0
ifup eth0
service networking restart
I hope I can help you.
:)