I'm following https://www.linuxbabe.com/redhat/set-up-samba-server-on-centos-8-rhel-8-for-... to set up Samba 4.12.3-12 on my Storinator fileserver running CentOS 8.3. I am trying to share out /tank/Windows/ as a Samba share:
# ls -al /tank total 61 drwxr-xr-x. 6 root root 7 Dec 26 10:43 Backups drwxr-xr-x. 6 root root 6 Dec 4 22:47 Repos drwxrwxrwx. 2 doc doc 4 Dec 28 14:01 VMs drwxrwxrwx. 2 root root 2 Jan 17 17:04 Windows
My /etc/samba/smb.conf file is set up as follows:
# testparm Load smb config files from /etc/samba/smb.conf Loaded services file OK. Server role: ROLE_STANDALONE
Press enter to see a dump of your service definitions
# Global parameters [global] printcap name = cups security = USER idmap config * : backend = tdb cups options = raw hosts allow = 192.168.0
...
[public] comment = public share, no need to enter username and password guest ok = Yes path = /tank/Windows read only = No
When I try to map network drive from my Windows 10 PC using the graphical File Explorer, it asks me for my username and password. It doesn't accept my password. When I try to map it at the CMD cli, I get:
C:> net use S: \192.168.1.20\public\ System error 67 has occurred.
The network name cannot be found.
Could this be a network browsing problem in Samba? What have I missed?
--Doc Savage Fairview Heights, IL
Hi,
Am 18.01.2021 um 20:08 schrieb Robert G. (Doc) Savage via CentOS centos@centos.org:
I'm following https://www.linuxbabe.com/redhat/set-up-samba-server-on-centos-8-rhel-8-for-... to set up Samba 4.12.3-12 on my Storinator fileserver running CentOS 8.3. I am trying to share out /tank/Windows/ as a Samba share:
# ls -al /tank total 61 drwxr-xr-x. 6 root root 7 Dec 26 10:43 Backups drwxr-xr-x. 6 root root 6 Dec 4 22:47 Repos drwxrwxrwx. 2 doc doc 4 Dec 28 14:01 VMs drwxrwxrwx. 2 root root 2 Jan 17 17:04 Windows
My /etc/samba/smb.conf file is set up as follows:
# testparm Load smb config files from /etc/samba/smb.conf Loaded services file OK. Server role: ROLE_STANDALONE
Press enter to see a dump of your service definitions
# Global parameters [global] printcap name = cups security = USER idmap config * : backend = tdb cups options = raw hosts allow = 192.168.0
...
[public] comment = public share, no need to enter username and password guest ok = Yes path = /tank/Windows read only = No
When I try to map network drive from my Windows 10 PC using the graphical File Explorer, it asks me for my username and password. It doesn't accept my password. When I try to map it at the CMD cli, I get:
C:> net use S: \192.168.1.20\public\ System error 67 has occurred.
The network name cannot be found.
Could this be a network browsing problem in Samba? What have I missed?
Anything in the samba logs? May be SELinux/Firewall issues?
Regards . Götz
On Tue, 2021-01-19 at 17:18 +0100, Götz Reinicke wrote:
Hi,
Am 18.01.2021 um 20:08 schrieb Robert G. (Doc) Savage via CentOS centos@centos.org:
I'm
following https://www.linuxbabe.com/redhat/set-up-samba-server-on-centos-8-rhel-8-for-...
to set up Samba 4.12.3-12 on my Storinator fileserver running CentOS 8.3. I am trying to share out /tank/Windows/ as a Samba share:
...
When I try to map network drive from my Windows 10 PC using the graphical File Explorer, it asks me for my username and password. It doesn't accept my password. When I try to map it at the CMD cli, I get:
C:> net use S: \192.168.1.20\public\ System error 67 has occurred.
The network name cannot be found.
Could this be a network browsing problem in Samba? What have I missed?
Anything in the samba logs? May be SELinux/Firewall issues?
Götz,
Unfortunately, no.
The nmbd log verifies that the fileserver's samba service is the local master browser for WORKGROUP on both eth0 and virbr0.
[2021/01/17 19:02:22.190795, 0] ../../source3/nmbd/nmbd_become_lmb.c:397(become_local_master_stage2) ***** Samba name server LIONSTORE is now a local master browser for workgroup WORKGROUP on subnet 192.168.1.20 *****
[2021/01/17 19:02:22.191085, 0] ../../source3/nmbd/nmbd_become_lmb.c:397(become_local_master_stage2) ***** Samba name server LIONSTORE is now a local master browser for workgroup WORKGROUP on subnet 192.168.122.1 *****
The samba smbd log simply reports the connection denials:
[2021/01/17 23:07:40.304626, 0] ../../lib/util/access.c:371(allow_access) Denied connection from 192.168.1.30 (192.168.1.30
There's nothing in the SELinux logs for that date.
I checked firewall-config on the storage server and verified that the samba service is allowed (but not samba-client or samba-dc).
--Doc
On Tue, 2021-01-19 at 17:18 +0100, Götz Reinicke wrote:
Anything in the samba logs? May be SELinux/Firewall issues?
Götz,
Unfortunately, no.
The nmbd log verifies that the fileserver's samba service is the local master browser for WORKGROUP on both eth0 and virbr0.
[2021/01/17 19:02:22.190795, 0] ../../source3/nmbd/nmbd_become_lmb.c:397(become_local_master_stage2) ***** Samba name server LIONSTORE is now a local master browser for workgroup WORKGROUP on subnet 192.168.1.20 *****
[2021/01/17 19:02:22.191085, 0] ../../source3/nmbd/nmbd_become_lmb.c:397(become_local_master_stage2) ***** Samba name server LIONSTORE is now a local master browser for workgroup WORKGROUP on subnet 192.168.122.1 *****
The samba smbd log simply reports the connection denials:
[2021/01/17 23:07:40.304626, 0] ../../lib/util/access.c:371(allow_access) Denied connection from 192.168.1.30 (192.168.1.30
There's nothing in the SELinux logs for that date.
I checked firewall-config on the storage server and verified that the samba service is allowed (but not samba-client or samba-dc).
Is there a really comprehensive setup checklist available for setting up samba on CentOS? The partial how-tos I've been able to find are obviously not enough. I'm looking for completer smb.conf setup, firewall settings, required services, directory permissions, accounts, and anything else that's required. I'm running up against very unhelpful roadblocks that seem to indicate a critical permissions problem but nothing specific.
V/R --Doc Savage Fairview Heights, IL
El 28 ene 2021, a las 6:57, Robert G. (Doc) Savage via CentOS centos@centos.org escribió:
On Tue, 2021-01-19 at 17:18 +0100, Götz Reinicke wrote:
Anything in the samba logs? May be SELinux/Firewall issues?
Götz,
Unfortunately, no.
The nmbd log verifies that the fileserver's samba service is the local master browser for WORKGROUP on both eth0 and virbr0.
....... trimmed .......
There's nothing in the SELinux logs for that date.
I checked firewall-config on the storage server and verified that the samba service is allowed (but not samba-client or samba-dc).
Is there a really comprehensive setup checklist available for setting up samba on CentOS? The partial how-tos I've been able to find are obviously not enough. I'm looking for completer smb.conf setup, firewall settings, required services, directory permissions, accounts, and anything else that's required. I'm running up against very unhelpful roadblocks that seem to indicate a critical permissions problem but nothing specific.
V/R --Doc Savage Fairview Heights, IL _______________________________________________
Do you know guest access to shares is disabled in windows 10?
https://docs.microsoft.com/troubleshoot/windows-server/networking/guest-acce...
On Sun, 2021-01-31 at 08:26 +0100, José María Terry Jiménez wrote:
Do you know guest access to shares is disabled in windows 10?
https://docs.microsoft.com/troubleshoot/windows-server/networking/guest-acce...
The error message this link says I should be seeing is not the one I'm getting, so I don't think this is the problem.
"You can't access this shared folder because your organization's security policies block unauthenticated guest access. These policies help protect your PC from unsafe or malicious devices on the network."
--Doc Savage Fairview Heights, IL