Fred wrote:
> [...]
> When I try to mount the -321 to access it:
>
> root@ragnok:/home/fred# mount.nfs 192.168.0.32:Volume_1 /mnt/dns321 -v
> [...]
> mount.nfs: mount(2): Permission denied
> mount.nfs: access denied by server while mounting 192.168.0.32:Volume_1
>
> [...]
>
> root@ragnok:/home/fred# mount.cifs 192.168.0.32:Volume_1 /mnt/dns321 -v
> mount.cifs: bad UNC (192.168.0.32:Volume_1)
>
> What does UNC mean in the above response and where do I go from here?
> Best regards,
> Fred

I don't systemd, so I can't comment on whether or not it is throwing a
spanner into the works.  

The first error looks like your /etc/exports is using a different path
thatn you think it is, or /etc/hosts.allow is broken on the NAS.

Given your command, exports should look something this:

 - Volume_1 192.168.1.0/24(rw,no_subtree_check)

However, in my experience, /etc/exports will use the full path
(commonly, this'll be something like "/srv/Volume_1").  You will likely
have to check the file to verify what it really is.

Your hosts.allow should be something like 
 - "ALL: 192.168.1.0/255.255.255.0" (possibly /24, depending on how your
   system behaves).

The UNC path is "Universal Naming Convention", and essentially means
"path".  Given the error, it reinforces my thinking that you forgot to
provide the full path of the share.

-- 
|_|O|_| Registered Linux user #585947
|_|_|O| Github: https://github.com/dpurgert
|O|O|O| PGP: 05CA 9A50 3F2E 1335 4DC5  4AEE 8E11 DDF3 1279 A281

Reply via email to