How to encrypt smb2 traffic?

Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I have set up a shared folder to my linux maschine . It runs over the samba server present in Linux . the only problem is that this protocol in not encrypted and I do not feel comfortable with that . Is there any way to encrypt the smb traffic ( without ssh tunnel or VPN server ) .
raspberry-pi samba encryption
add a comment |Â
up vote
0
down vote
favorite
I have set up a shared folder to my linux maschine . It runs over the samba server present in Linux . the only problem is that this protocol in not encrypted and I do not feel comfortable with that . Is there any way to encrypt the smb traffic ( without ssh tunnel or VPN server ) .
raspberry-pi samba encryption
1
What protocol? Samba is capable of speaking several versions of the SMB/CIFS protocol. For starters, read the manual page for smb.conf and try settingsmb encrypt = required.
â AlexP
Nov 12 '17 at 18:54
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have set up a shared folder to my linux maschine . It runs over the samba server present in Linux . the only problem is that this protocol in not encrypted and I do not feel comfortable with that . Is there any way to encrypt the smb traffic ( without ssh tunnel or VPN server ) .
raspberry-pi samba encryption
I have set up a shared folder to my linux maschine . It runs over the samba server present in Linux . the only problem is that this protocol in not encrypted and I do not feel comfortable with that . Is there any way to encrypt the smb traffic ( without ssh tunnel or VPN server ) .
raspberry-pi samba encryption
asked Nov 12 '17 at 17:11
Richard R. Matthews
1116
1116
1
What protocol? Samba is capable of speaking several versions of the SMB/CIFS protocol. For starters, read the manual page for smb.conf and try settingsmb encrypt = required.
â AlexP
Nov 12 '17 at 18:54
add a comment |Â
1
What protocol? Samba is capable of speaking several versions of the SMB/CIFS protocol. For starters, read the manual page for smb.conf and try settingsmb encrypt = required.
â AlexP
Nov 12 '17 at 18:54
1
1
What protocol? Samba is capable of speaking several versions of the SMB/CIFS protocol. For starters, read the manual page for smb.conf and try setting
smb encrypt = required.â AlexP
Nov 12 '17 at 18:54
What protocol? Samba is capable of speaking several versions of the SMB/CIFS protocol. For starters, read the manual page for smb.conf and try setting
smb encrypt = required.â AlexP
Nov 12 '17 at 18:54
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
You cannot encrypt data if you're using the 2.XX family of SMB dialects. Encryption support was brought in from 3.XX. You can enable signing to see if your packets were tampered with, though.
So to get encryption working just change the dialect to SMB3+ and smb encrypt = required as @AlexP pointed out.
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
You cannot encrypt data if you're using the 2.XX family of SMB dialects. Encryption support was brought in from 3.XX. You can enable signing to see if your packets were tampered with, though.
So to get encryption working just change the dialect to SMB3+ and smb encrypt = required as @AlexP pointed out.
add a comment |Â
up vote
0
down vote
You cannot encrypt data if you're using the 2.XX family of SMB dialects. Encryption support was brought in from 3.XX. You can enable signing to see if your packets were tampered with, though.
So to get encryption working just change the dialect to SMB3+ and smb encrypt = required as @AlexP pointed out.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
You cannot encrypt data if you're using the 2.XX family of SMB dialects. Encryption support was brought in from 3.XX. You can enable signing to see if your packets were tampered with, though.
So to get encryption working just change the dialect to SMB3+ and smb encrypt = required as @AlexP pointed out.
You cannot encrypt data if you're using the 2.XX family of SMB dialects. Encryption support was brought in from 3.XX. You can enable signing to see if your packets were tampered with, though.
So to get encryption working just change the dialect to SMB3+ and smb encrypt = required as @AlexP pointed out.
answered Aug 6 at 12:39
Sushant Mathur
11
11
add a comment |Â
add a comment |Â
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f404079%2fhow-to-encrypt-smb2-traffic%23new-answer', 'question_page');
);
Post as a guest
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
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
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
1
What protocol? Samba is capable of speaking several versions of the SMB/CIFS protocol. For starters, read the manual page for smb.conf and try setting
smb encrypt = required.â AlexP
Nov 12 '17 at 18:54