Skip to content

Remote file access

Boris Rybalkin edited this page Dec 3, 2022 · 10 revisions

Details

Files can be accessed remotely using SFTP protocol.

  • URL: sftp://[device].syncloud.it (or sftp://[IP])
  • Login: root
  • Password: Device password

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

UI

There are many apps which support SFTP for example:

Mount a dir on linux

mkdir /any/directory/on/client
# Mount ./root/ folder with:
sshfs root@example.syncloud.it: /any/directory/on/client -o allow_other
# Mount Syncloud root with:
sshfs root@example.syncloud.it:'/' /any/directory/on/client -o allow_other
# Unmound dir
umount /any/directory/on/client
Clone this wiki locally