I want to login form my Linux based PC to ES8000 over ssh without password, only using rsa certificates procedure. /mnt/etc/init.d/02_01_sshd.init starts dropbear. I changed line in this file to:
to allow root login without password. Than I placed generated by ssh-keygen (on Linux PC) public key in to /mtd_rwarea/authorized_keys (permissions 600)
The same key I use to connect to other Linux servers and it works without problems. But when I try to connect to ES8000 using syntax below and error about public key problem
Code: Select all
[maciek@piotr Pobrane]$ ssh -x -i ~/.ssh/id_rsa root@tv-w
Permission denied (publickey).
When I remove /mtd_rwarea/authorized_keys file, ssh login is possible but with password.
What I am doing wrong?