I have a working windows 2008 R2 file share that I can connect to from one server (running redhat 6.6) with the following syntax in /etc/fstab
//servername/ELK\es1 /ES1 cifs username=domain\user,password=password 0 0
From here I run sudo mount -a and it mounts successfully, and I can view files in the share if I run ls /ES1
I have another server (the one I actually want the share mounted on), which runs redhat 7.2, and using the exact same syntax in /etc/fstab, and running a sudo mount -av I get the following error:
mount error(112): Host is down
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
If I run dmesg I get the following information
CIFS VFS: RFC 1002 unknown response type 0xa
CIFS VFS: RFC 1002 unknown response type 0xa
CIFS VFS: cifs_mount failed w/return code = -112
I've updated my iptables, and even flushed them so I do not believe it's an issue with ports being blocked. The version of cifs-utils is the same, 1.74.
The only thing I can think that's a difference between the two servers is the version of the OS, one being 6.6 and the other being 7.2.