-
Notifications
You must be signed in to change notification settings - Fork 43
Remote file access
Boris Rybalkin edited this page Mar 5, 2023
·
10 revisions
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.
There are many apps which support SFTP for example:
- FileZilla (Windows): https://filezilla-project.org/download.php
- WinSCP (Windows)
- Files (Gnome Linux)
- Krusader (KDE 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 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