I am working with WP7607 module and I would like to use “openssh” instead of dropbear package.
I am tried to modify the image recipe mdm9x28-image.inc with
IMAGE_INSTALL_append = " openssh"
But this resulus in below error during build
Collected errors:
* check_conflicts_for: The following packages conflict with dropbear:
* check_conflicts_for: openssh * check_conflicts_for: openssh-sshd *
* opkg_solver_install: Cannot install package packagegroup-swi-image-target.
I wanted to know is it safe to replace dropbear with openssh? Will there be any issues connecting via ssh later? I generally connect to the module using PuTTY with root@10.9.1.1
Yes, I want to use ssh from OpenSSH package. Because dropbear has limited options. For example, openssh ssh -o supports “ConnectTimeout” , “StrictHostKeyChecking”, “ServerAliveInterval” parameters
I am trying around with dropbear. But no success till now:
Background:
I have a custom script which tries to connect to a remote server via ssh. This works flawlessly with openssh ssh-client. but I am having issues with dropbear ssh client.