Hello everyone,
I'm using the TDA4 evaluation board for debugging. And I want to have possibility to connect to it easily through SSH, not UART (with connected only ethernet between PC and TDA4, without router). So IP is not assigned to TDA4.
I can do it manually using UART with next command:
sudo ip addr add 192.168.1.151/24 dev eth0
But i want to keep it after reboot. Do you have solution for that?
I also tried do next:
sudo vi /etc/network/interfaces
auto eth0
iface eth0 inet static
address 192.168.1.151
netmask 255.255.255.0
gateway 192.168.1.1
But it didn't help