2

This is a really weird one and all the research I've done so far isn't panning out.

I'm trying to connect to a Windows share from CentOS 7.5.1804 to Windows Server 2008 R2 (no snickering and let's stay on topic please).

Details about the W2K8 server:

  • has not been promoted to a domain controller
  • resides on a flat network
  • Everyone group has read/write to the share (I changed this for troubleshooting)
  • the share is named MyShare

When I run this command from Linux:

smbclient -L <IP> -U Administrator

I get this:

Sharename       Type      Comment
---------       ----      -------
ADMIN$          Disk      Remote Admin
C$              Disk      Default share
IPC$            IPC       Remote IPC
MyShare         Disk      
Users           Disk      
Reconnecting with SMB1 for workgroup listing.
Connection to <IP> failed (Error NT_STATUS_RESOURCE_NAME_NOT_FOUND)
Failed to connect with SMB1 -- no workgroup available

Weird. It throws an error but still lists all the shares. Googling "NT_STATUS_RESOURCE_NAME_NOT_FOUND" hasn't yielded a lot of info.

Since the share was found, I pressed on with:

mount -v -t cifs //<IP>/MyShare /mnt -o username=Administrator

It returns this:

mount error(2): No such file or directory
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

So I read the man page and this: https://unix.stackexchange.com/questions/120677/can-not-use-mount-cifs-mount-error2-no-such-file-or-directory

...and started thinking I need to specify the version or ntlm level.

I tried this:

mount -v -t cifs //<IP>/MyShare /mnt -o username=Administrator, vers=2.0

and

mount -v -t cifs //<IP>/MyShare /mnt -o username=Administrator, sec=ntlmv2

and they both error out because of incorrect syntax... but that's what was supplied as an example on that webpage and in the man page!

Any suggestions how to get the mount command working would be greatly appreciated. Thanks!

0

You must log in to answer this question.

Browse other questions tagged .