Blocking NAS Freebox Pro access on certain PCs.
Solvedsteph810 Posted messages 1865 Registration date Status Member Last intervention -
Hello everyone,
I'm reaching out to you because I'm completely stuck on a network issue in our association and it's starting to drive me crazy!
Our setup:
-
We have a Freebox Pro.
-
The NAS (local storage) is properly enabled.
-
Since we have two different rooms, the PCs are connected via 2 Netgear switches.
The problem: The NAS works... but not everywhere. I have 3 PCs that can access it perfectly and open the files. However, for all the other PCs in the office, it's impossible.
Yet, when I do a ping from the command prompt on the PCs that are blocked, the NAS responds perfectly (0% loss). So the PCs can "see" the NAS on the network.
But as soon as I try to open it (via Windows + R or in Explorer), I get an immediate error saying: "Windows cannot access . No username or password is requested, it blocks before that.
What I've already tried:
-
I tried enabling the SMBv1 protocol in Windows features.
-
I attempted to modify the registry key
AllowInsecureGuestAuthto force guest access. -
I tried using the Windows Credential Manager to manually enter the
admincredentials.
Nothing works, the commands are blocked or unresponsive. Could this be a security block specific to Windows 11 on these machines? Or is it a communication/configuration issue between our two switches isolating certain PCs?
If anyone has a specific idea to help me out, I’m all ears!
Thank you very much in advance for your help.
2 answers
-
Hello, to be done on all machines:
net view \\IP_OF_THE_NAS
What errors does it return to you?
- System error 53 --> network resolution.
- System error 5 --> rights.
- System error 67 --> SMB share.
- Error 1231/1232 --> network
-
Thank you,
Have you tested them with the IP? Have you tested them with the NAS name?
We'll see if it's a name issue or SMB.
net view \\NASName
And the results of:
Test-NetConnection NASIPAddress -Port 445
If it is properly on the default port.
The script above can help you diagnose, check the SMB and remote shares tabs.
-
Thank you for testing on a single machine that is not working:
See the config:
Get-SmbClientConfiguration | Select-Object EnableInsecureGuestLogons, RequireSecuritySignature, EnableSecuritySignature, EnableMultiChannel
Allow guest access without a password:
Set-SmbClientConfiguration -EnableInsecureGuestLogons $true
To revert, replace $true with $false
it's just a test.
If it works, we will see later about securing it a bit more
-
Thank you. I tried the first command on two PCs (one that works and another that doesn't). Here are the results:
-
On the PC that doesn't work: all 4 categories are set to
True. - On the PC that works:
RequireSecuritySignatureis set toFalse, whileEnableSecuritySignatureandEnableMultiChannelare set toTrue.
By setting
RequireSecuritySignaturetoFalse, it worked! I will try it on another PC. Thank you for your help, you have been a great help. Have a nice day!
On another PC, it worked too! To get everything to work, I had to enableAllowInsecureGuestLogonsand setRequireSecuritySignaturetoFalse. Thanks again, have a nice day.If everything is okay, don't forget to mark it as --> Resolved topic
-
-