Skip to content

Remote file access

Boris Rybalkin edited this page Mar 5, 2023 · 10 revisions

Details

Files can be accessed remotely using SFTP protocol.

  • URL: sftp://[device].syncloud.it (or sftp://[IP])

  • Login: root

  • Password: Device password

  • Data directory: /opt/disk/external or /opt/disk/internal

It will only work in local network unless you open port 22 on your router.

UI Tools

There are many apps which support SFTP for example:

Mount a dir on linux

If you have a linux box (non Syncloud) and you want to mount remote Syncloud dir on then the following commands may help you.

mkdir /any/directory/on/client
# Mount ./root/ folder with:
sshfs [email protected]: /any/directory/on/client -o allow_other
# Mount Syncloud root with:
sshfs [email protected]:'/' /any/directory/on/client -o allow_other
# Unmound dir
umount /any/directory/on/client
Clone this wiki locally