SSH protocol to connect and command others equipemnts on ethernet network

there is one problem:
we can connect to other device using app
ssh -o StrictHostKeyChecking=no root@ipaddress 'command'
but you have to write the password for security reasons. No password, no problem (except security :stuck_out_tongue: )
To send a password you need sshpass app, so you can send password:
sshpass -p 'password' ssh user@remote_ip 'command'
To do that, you can create some docker container and call it using SysProcess library or WagoAppConfigTool (SSH command from CoDeSys - #4 by WagoDamRud)