Skip to content

Command line access to SB Radio and SB Touch

AF-1 edited this page Oct 31, 2023 · 2 revisions

Firmware version 7.x:

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/


Firmware version 8.x:

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/