Connecting to CIFS Error 115

Clash Royale CLAN TAG#URR8PPP up vote
0
down vote
favorite
I'm trying to connect to a data share via the VPN of my university. I have contacted support and set the following:
In my /et/fstab:
//serverlocatoin/share /mnt/Ldrive cifs credentials=/home/laurens/.smbcredentials,iocharset=utf8,sec=ntlm 0 0
And double checked the smbcredentials file.
When running sudo mount -a the following error is returned:
My university IT guy simply told me to just revert to using a windows machine.
What I've tried
- Read the wiki
- Read this post, tried switching off ipv6, did not help
- ping the server, returned 'unknown host'
- Checked if VPN connection is active via
ifconfig -aThe VPN seems to be active.
- Tried to approach via chrome browser, returns a 'your file was not found' error, suggesting that the server returns something, right?

- Changing the SMB protocol as in the below answer. Rebooted, still error 115.

Other post that had the same question but did not have an answer:
post1
What could be the problem and/or how could I troubleshoot it?
mount vpn cifs
add a comment |Â
up vote
0
down vote
favorite
I'm trying to connect to a data share via the VPN of my university. I have contacted support and set the following:
In my /et/fstab:
//serverlocatoin/share /mnt/Ldrive cifs credentials=/home/laurens/.smbcredentials,iocharset=utf8,sec=ntlm 0 0
And double checked the smbcredentials file.
When running sudo mount -a the following error is returned:
My university IT guy simply told me to just revert to using a windows machine.
What I've tried
- Read the wiki
- Read this post, tried switching off ipv6, did not help
- ping the server, returned 'unknown host'
- Checked if VPN connection is active via
ifconfig -aThe VPN seems to be active.
- Tried to approach via chrome browser, returns a 'your file was not found' error, suggesting that the server returns something, right?

- Changing the SMB protocol as in the below answer. Rebooted, still error 115.

Other post that had the same question but did not have an answer:
post1
What could be the problem and/or how could I troubleshoot it?
mount vpn cifs
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm trying to connect to a data share via the VPN of my university. I have contacted support and set the following:
In my /et/fstab:
//serverlocatoin/share /mnt/Ldrive cifs credentials=/home/laurens/.smbcredentials,iocharset=utf8,sec=ntlm 0 0
And double checked the smbcredentials file.
When running sudo mount -a the following error is returned:
My university IT guy simply told me to just revert to using a windows machine.
What I've tried
- Read the wiki
- Read this post, tried switching off ipv6, did not help
- ping the server, returned 'unknown host'
- Checked if VPN connection is active via
ifconfig -aThe VPN seems to be active.
- Tried to approach via chrome browser, returns a 'your file was not found' error, suggesting that the server returns something, right?

- Changing the SMB protocol as in the below answer. Rebooted, still error 115.

Other post that had the same question but did not have an answer:
post1
What could be the problem and/or how could I troubleshoot it?
mount vpn cifs
I'm trying to connect to a data share via the VPN of my university. I have contacted support and set the following:
In my /et/fstab:
//serverlocatoin/share /mnt/Ldrive cifs credentials=/home/laurens/.smbcredentials,iocharset=utf8,sec=ntlm 0 0
And double checked the smbcredentials file.
When running sudo mount -a the following error is returned:
My university IT guy simply told me to just revert to using a windows machine.
What I've tried
- Read the wiki
- Read this post, tried switching off ipv6, did not help
- ping the server, returned 'unknown host'
- Checked if VPN connection is active via
ifconfig -aThe VPN seems to be active.
- Tried to approach via chrome browser, returns a 'your file was not found' error, suggesting that the server returns something, right?

- Changing the SMB protocol as in the below answer. Rebooted, still error 115.

Other post that had the same question but did not have an answer:
post1
What could be the problem and/or how could I troubleshoot it?
mount vpn cifs
mount vpn cifs
edited Feb 2 at 19:47
asked Feb 2 at 11:47
LMB
1015
1015
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
Perhaps the windows server are no longer accepting smbv1.
Try adding
client min protocol = SMB2
client max protocol = SMB3
in the global section of smb.conf. Then restart smbd
Your chrome browser test will not work. By typing file:///something you are trying to access a file on you local file system, not a web server. Apparently you don't have a file named like your server on your computer.
Using ping you should omit // in front of names/ip-addresses
Try ping serveraddress
Thank you. I tried adding the lines to the smb.conf. Error 115 remains. The pinging without the '//' did yield a return, confirming that I can contact the server.
â LMB
Feb 2 at 19:46
What is the output of: 'mount -t cifs //<serverlocation>/share /mnt/Ldrive -o username=<yourusername>'? (Replace <serverlocation> with the correct address and <yourusername> with your actual username on the windows machine. Did this command ask for a password? Does a folder named /mnt/Ldrive exist on your local computer?
â ReineS
Feb 5 at 6:34
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
Perhaps the windows server are no longer accepting smbv1.
Try adding
client min protocol = SMB2
client max protocol = SMB3
in the global section of smb.conf. Then restart smbd
Your chrome browser test will not work. By typing file:///something you are trying to access a file on you local file system, not a web server. Apparently you don't have a file named like your server on your computer.
Using ping you should omit // in front of names/ip-addresses
Try ping serveraddress
Thank you. I tried adding the lines to the smb.conf. Error 115 remains. The pinging without the '//' did yield a return, confirming that I can contact the server.
â LMB
Feb 2 at 19:46
What is the output of: 'mount -t cifs //<serverlocation>/share /mnt/Ldrive -o username=<yourusername>'? (Replace <serverlocation> with the correct address and <yourusername> with your actual username on the windows machine. Did this command ask for a password? Does a folder named /mnt/Ldrive exist on your local computer?
â ReineS
Feb 5 at 6:34
add a comment |Â
up vote
0
down vote
Perhaps the windows server are no longer accepting smbv1.
Try adding
client min protocol = SMB2
client max protocol = SMB3
in the global section of smb.conf. Then restart smbd
Your chrome browser test will not work. By typing file:///something you are trying to access a file on you local file system, not a web server. Apparently you don't have a file named like your server on your computer.
Using ping you should omit // in front of names/ip-addresses
Try ping serveraddress
Thank you. I tried adding the lines to the smb.conf. Error 115 remains. The pinging without the '//' did yield a return, confirming that I can contact the server.
â LMB
Feb 2 at 19:46
What is the output of: 'mount -t cifs //<serverlocation>/share /mnt/Ldrive -o username=<yourusername>'? (Replace <serverlocation> with the correct address and <yourusername> with your actual username on the windows machine. Did this command ask for a password? Does a folder named /mnt/Ldrive exist on your local computer?
â ReineS
Feb 5 at 6:34
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Perhaps the windows server are no longer accepting smbv1.
Try adding
client min protocol = SMB2
client max protocol = SMB3
in the global section of smb.conf. Then restart smbd
Your chrome browser test will not work. By typing file:///something you are trying to access a file on you local file system, not a web server. Apparently you don't have a file named like your server on your computer.
Using ping you should omit // in front of names/ip-addresses
Try ping serveraddress
Perhaps the windows server are no longer accepting smbv1.
Try adding
client min protocol = SMB2
client max protocol = SMB3
in the global section of smb.conf. Then restart smbd
Your chrome browser test will not work. By typing file:///something you are trying to access a file on you local file system, not a web server. Apparently you don't have a file named like your server on your computer.
Using ping you should omit // in front of names/ip-addresses
Try ping serveraddress
edited Feb 5 at 6:44
answered Feb 2 at 13:45
ReineS
464
464
Thank you. I tried adding the lines to the smb.conf. Error 115 remains. The pinging without the '//' did yield a return, confirming that I can contact the server.
â LMB
Feb 2 at 19:46
What is the output of: 'mount -t cifs //<serverlocation>/share /mnt/Ldrive -o username=<yourusername>'? (Replace <serverlocation> with the correct address and <yourusername> with your actual username on the windows machine. Did this command ask for a password? Does a folder named /mnt/Ldrive exist on your local computer?
â ReineS
Feb 5 at 6:34
add a comment |Â
Thank you. I tried adding the lines to the smb.conf. Error 115 remains. The pinging without the '//' did yield a return, confirming that I can contact the server.
â LMB
Feb 2 at 19:46
What is the output of: 'mount -t cifs //<serverlocation>/share /mnt/Ldrive -o username=<yourusername>'? (Replace <serverlocation> with the correct address and <yourusername> with your actual username on the windows machine. Did this command ask for a password? Does a folder named /mnt/Ldrive exist on your local computer?
â ReineS
Feb 5 at 6:34
Thank you. I tried adding the lines to the smb.conf. Error 115 remains. The pinging without the '//' did yield a return, confirming that I can contact the server.
â LMB
Feb 2 at 19:46
Thank you. I tried adding the lines to the smb.conf. Error 115 remains. The pinging without the '//' did yield a return, confirming that I can contact the server.
â LMB
Feb 2 at 19:46
What is the output of: 'mount -t cifs //<serverlocation>/share /mnt/Ldrive -o username=<yourusername>'? (Replace <serverlocation> with the correct address and <yourusername> with your actual username on the windows machine. Did this command ask for a password? Does a folder named /mnt/Ldrive exist on your local computer?
â ReineS
Feb 5 at 6:34
What is the output of: 'mount -t cifs //<serverlocation>/share /mnt/Ldrive -o username=<yourusername>'? (Replace <serverlocation> with the correct address and <yourusername> with your actual username on the windows machine. Did this command ask for a password? Does a folder named /mnt/Ldrive exist on your local computer?
â ReineS
Feb 5 at 6:34
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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%2faskubuntu.com%2fquestions%2f1002358%2fconnecting-to-cifs-error-115%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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