(Ethernet) (replace "eno1" for the correct name of your ethernet linux device)
sudo ifconfig eno1:0 192.168.200.10 netmask 255.255.255.0
sudo ifconfig eno1 up
(WIFI) (replace wlan0 for the correct name of your wifi network linux device)
sudo ifconfig wlan0:0 192.168.200.10 netmask 255.255.255.0
ping 192.168.200.1 -c 4
NOTE: Since new versions of debian an ssh vulnerability was fixed, but the hand operating system (qnx) has not fixed the same bug. Therefore, if you try to connect to the hand using ssh you will get the following error:
SSH: DH_GEX group out of range
To fix this, add the following line to your file ~/.ssh/config at the beginning of the file, if you dont have this file, create it:
Host 192.168.200.1
HostKeyAlgorithms=+ssh-dss
Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc
KexAlgorithms diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1
PubkeyAcceptedKeyTypes +ssh-rsa
ssh root@192.168.200.1
(The password is qnxqnx)
cd .ssh
echo "ssh-rsa FADFGRAGAs....." >> authorized_keys