-
Notifications
You must be signed in to change notification settings - Fork 1
Command line access to SB Radio and SB Touch
You may need to use legacy algorithms and ciphers to log in or for secure copying. And maybe the -O
option with scp
. I think it's supposed to force the use of the legacy SCP protocol for file transfers instead of the SFTP protocol (which is probably not supported on old devices).
-
log in:
ssh -o KexAlgorithms=+diffie-hellman-group1-sha1 -c aes256-cbc root@deviceIPaddress
-
secure copy:
scp -O -o KexAlgorithms=+diffie-hellman-group1-sha1 -c aes256-cbc /localpath/to/file root@deviceIPaddress:/path/to/folder_on_device/
I'm not sure you still need to use the legacy algorithms and ciphers for SB Radio/SB Touch devices running firmware version 8.x.
-
log in:
ssh root@deviceIPaddress
-
secure copy:
scp -O /localpath/to/file root@deviceIPaddress:/path/to/folder_on_device/