Issue with SMB/CIFS on OpenMediaVault 3.0.59 with Windows 10 PC?
I have installed OpenMediaVault 3.0.59 on my Rpi3. I'm trying to use it as a NAS for my other Windows 10 PC. But even after enabling the SMB/CIFS, it does not shows up in the network of the Windows 10 PC but shows up perfectly in another Win 7 PC and a android device?
windows-10 nas raspberry-pi cifs
add a comment |
I have installed OpenMediaVault 3.0.59 on my Rpi3. I'm trying to use it as a NAS for my other Windows 10 PC. But even after enabling the SMB/CIFS, it does not shows up in the network of the Windows 10 PC but shows up perfectly in another Win 7 PC and a android device?
windows-10 nas raspberry-pi cifs
@ITSolutions try that. still can't access it.
– Lokesh Sah
Jan 15 '17 at 7:12
Does Windows 10 PC is able to see other share on your network? Try also to access NAS by IP (\ip.ip.ip.ipshare) instead of name. Check W10, may it pick "public" network profile that will prevent to browse local network
– Alex
Jan 25 '17 at 5:59
add a comment |
I have installed OpenMediaVault 3.0.59 on my Rpi3. I'm trying to use it as a NAS for my other Windows 10 PC. But even after enabling the SMB/CIFS, it does not shows up in the network of the Windows 10 PC but shows up perfectly in another Win 7 PC and a android device?
windows-10 nas raspberry-pi cifs
I have installed OpenMediaVault 3.0.59 on my Rpi3. I'm trying to use it as a NAS for my other Windows 10 PC. But even after enabling the SMB/CIFS, it does not shows up in the network of the Windows 10 PC but shows up perfectly in another Win 7 PC and a android device?
windows-10 nas raspberry-pi cifs
windows-10 nas raspberry-pi cifs
asked Jan 14 '17 at 16:57
Lokesh SahLokesh Sah
6614
6614
@ITSolutions try that. still can't access it.
– Lokesh Sah
Jan 15 '17 at 7:12
Does Windows 10 PC is able to see other share on your network? Try also to access NAS by IP (\ip.ip.ip.ipshare) instead of name. Check W10, may it pick "public" network profile that will prevent to browse local network
– Alex
Jan 25 '17 at 5:59
add a comment |
@ITSolutions try that. still can't access it.
– Lokesh Sah
Jan 15 '17 at 7:12
Does Windows 10 PC is able to see other share on your network? Try also to access NAS by IP (\ip.ip.ip.ipshare) instead of name. Check W10, may it pick "public" network profile that will prevent to browse local network
– Alex
Jan 25 '17 at 5:59
@ITSolutions try that. still can't access it.
– Lokesh Sah
Jan 15 '17 at 7:12
@ITSolutions try that. still can't access it.
– Lokesh Sah
Jan 15 '17 at 7:12
Does Windows 10 PC is able to see other share on your network? Try also to access NAS by IP (\ip.ip.ip.ipshare) instead of name. Check W10, may it pick "public" network profile that will prevent to browse local network
– Alex
Jan 25 '17 at 5:59
Does Windows 10 PC is able to see other share on your network? Try also to access NAS by IP (\ip.ip.ip.ipshare) instead of name. Check W10, may it pick "public" network profile that will prevent to browse local network
– Alex
Jan 25 '17 at 5:59
add a comment |
1 Answer
1
active
oldest
votes
Windows 10 has disabled guest access to remote file shares for security reasons:
While the server may be fine not distinguishing among clients for files [...], this can actually put you at risk elsewhere. Without an account and password, the client doesn't end up with a secure connection to the server. A malicious server can put itself in the middle (also known as the Man-In-The-Middle attack), and trick the client into sending files or accepting malicious data.
The safe solution is to add an account to your NAS and use it to access the share.
The unsafe solution is to edit the registry. You need to create a DWORD
parameter named
HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesLanmanWorkstationParametersAllowInsecureGuestAuth
and set it to 1
.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1167289%2fissue-with-smb-cifs-on-openmediavault-3-0-59-with-windows-10-pc%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Windows 10 has disabled guest access to remote file shares for security reasons:
While the server may be fine not distinguishing among clients for files [...], this can actually put you at risk elsewhere. Without an account and password, the client doesn't end up with a secure connection to the server. A malicious server can put itself in the middle (also known as the Man-In-The-Middle attack), and trick the client into sending files or accepting malicious data.
The safe solution is to add an account to your NAS and use it to access the share.
The unsafe solution is to edit the registry. You need to create a DWORD
parameter named
HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesLanmanWorkstationParametersAllowInsecureGuestAuth
and set it to 1
.
add a comment |
Windows 10 has disabled guest access to remote file shares for security reasons:
While the server may be fine not distinguishing among clients for files [...], this can actually put you at risk elsewhere. Without an account and password, the client doesn't end up with a secure connection to the server. A malicious server can put itself in the middle (also known as the Man-In-The-Middle attack), and trick the client into sending files or accepting malicious data.
The safe solution is to add an account to your NAS and use it to access the share.
The unsafe solution is to edit the registry. You need to create a DWORD
parameter named
HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesLanmanWorkstationParametersAllowInsecureGuestAuth
and set it to 1
.
add a comment |
Windows 10 has disabled guest access to remote file shares for security reasons:
While the server may be fine not distinguishing among clients for files [...], this can actually put you at risk elsewhere. Without an account and password, the client doesn't end up with a secure connection to the server. A malicious server can put itself in the middle (also known as the Man-In-The-Middle attack), and trick the client into sending files or accepting malicious data.
The safe solution is to add an account to your NAS and use it to access the share.
The unsafe solution is to edit the registry. You need to create a DWORD
parameter named
HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesLanmanWorkstationParametersAllowInsecureGuestAuth
and set it to 1
.
Windows 10 has disabled guest access to remote file shares for security reasons:
While the server may be fine not distinguishing among clients for files [...], this can actually put you at risk elsewhere. Without an account and password, the client doesn't end up with a secure connection to the server. A malicious server can put itself in the middle (also known as the Man-In-The-Middle attack), and trick the client into sending files or accepting malicious data.
The safe solution is to add an account to your NAS and use it to access the share.
The unsafe solution is to edit the registry. You need to create a DWORD
parameter named
HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesLanmanWorkstationParametersAllowInsecureGuestAuth
and set it to 1
.
edited Jan 24 '17 at 16:29
answered Jan 24 '17 at 16:24
Dmitry GrigoryevDmitry Grigoryev
5,83612057
5,83612057
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1167289%2fissue-with-smb-cifs-on-openmediavault-3-0-59-with-windows-10-pc%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
@ITSolutions try that. still can't access it.
– Lokesh Sah
Jan 15 '17 at 7:12
Does Windows 10 PC is able to see other share on your network? Try also to access NAS by IP (\ip.ip.ip.ipshare) instead of name. Check W10, may it pick "public" network profile that will prevent to browse local network
– Alex
Jan 25 '17 at 5:59