Re: [yocto] How to fix SSH interfactive promotion for Yocto Linux embedded system

2019-07-25 Thread JH
Thanks Zoran and Burton. - jupiter On 7/25/19, Zoran Stojsavljevic wrote: > And, YES, since BysuBox supplies very reduced set of commands... > > You should put these options >> -o ServerAliveInterval=60 -o ExitOnForwardFailure=yes -o >> ServerAliveCountMax=3 -o StrictHostKeyChecking=no -o >>

Re: [yocto] How to fix SSH interfactive promotion for Yocto Linux embedded system

2019-07-25 Thread Burton, Ross
You're using busybox's scp, which is limited compared to openssh. If you want to use openssh's binaries install openssh-clients, otherwise adapt your options to work with busybox's scp. Ross On Thu, 25 Jul 2019 at 02:10, JH wrote: > > Hi, > > I am running busybox in imx6 using ssh and scp in

Re: [yocto] How to fix SSH interfactive promotion for Yocto Linux embedded system

2019-07-24 Thread Zoran Stojsavljevic
And, YES, since BysuBox supplies very reduced set of commands... You should put these options > -o ServerAliveInterval=60 -o ExitOnForwardFailure=yes -o > ServerAliveCountMax=3 -o StrictHostKeyChecking=no -o > UserKnownHostsFile=/dev/null ... in the following file:/etc/ssh/ssh_config Hope this

Re: [yocto] How to fix SSH interfactive promotion for Yocto Linux embedded system

2019-07-24 Thread Zoran Stojsavljevic
> scp -o ServerAliveInterval=60 -o ExitOnForwardFailure=yes -o > ServerAliveCountMax=3 -o StrictHostKeyChecking=no -o > UserKnownHostsFile=/dev/null ... Format of your command is wrong... scp assumes your options as files to be transferred. You need to compile better command, something

[yocto] How to fix SSH interfactive promotion for Yocto Linux embedded system

2019-07-24 Thread JH
Hi, I am running busybox in imx6 using ssh and scp in shell scripts, but I troubled to run the scripts to run ssh and scp, it did not have ssh options stopped at following: scp -o ServerAliveInterval=60 -o ExitOnForwardFailure=yes -o ServerAliveCountMax=3 -o StrictHostKeyChecking=no -o