According to the notes when you enable SSH/telnet a user has to be part of the administrators group. So technically you don't have to have root access just part of the administrators group.
You haven't specified which OS you're using but below is using Mac OSX Sierra.
I have tested this and appears to work from a mac type the following in terminal:
ssh username@192.168.0.11
- replace
username with the user's login name. And if you have used SSH default port that should work. After the @ symbol replace with the IP address of your Synology box.
More information
One thing that isn't that clear is why would you not use the sharing features within Synology by default? It has windows services and mac services out of the box.
This means you can use CMD prompt batch scripts auto mapping via Mac to map network drives and not have to worry about SSH. Using the security advisor within the DSM ssh on it's default port is a security risk and should only be opened if you are willing to accept this and can mitigate any issues arising from opening these particular features.
UPDATE FOR LINUX
As stated above I believe if you use the native tools it will put you in good stead. From your comment please find this part that's updated.
Please use the following to setup sharing for Linux clients:
Before accessing a shared folder with your NFS client, you will need to change the system settings of your Synology NAS to allow sharing via NFS. Please follow the steps below.
- Log into DSM with an account belonging to the administrators group.
- Go to Control Panel > File Services
- On the Win/Mac/NFS tab, tick the box Enable NFS.
- Click Apply to save settings.
Assign NFS Permissions to Shared Folders
Before accessing any shared folders with your NFS client, you must first configure the NFS permissions of the shared folder you wish to access. The steps below will guide you through the process of changing NFS permissions of the shared folders on your Synology NAS.
You need set up sharing permissions once this is set up for your users, no need to add them to the admin group, and you can then mount the share as you would normally:
On your Linux computer, open the command console.
Enter the mount command as follows:
mount [Synology NAS IP address] : [mount path of shared folder] / [mount point on NFS client]
Enter the disk free (df) command to confirm you have successfully mounted the shared folder.
For a guide with screen shots etc please go here:
Synology NFS Guide
Hope this helps.