I’m just getting started with the duo so if this simple please forgive me. I’m connected to the duo via usb to my computer. I can ssh into the duo fine but I need to be able to transfer a file over to the duo. scp is failing with an error that sftp-server is not found. Is this just me or is scp not supported on the official image or the buildroot?
1 Like
You will need to use scp -O
in this case. Rationale:
-O Use the legacy SCP protocol for file transfers instead of the SFTP protocol.
Forcing the use of the SCP protocol may be necessary for servers that do not implement SFTP
2 Likes
Thanks, Didn’t know that was an option.
1 Like