Connecting to CIFS Error 115
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
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 -a
The 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 -a
The 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 -a
The 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 -a
The 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
![](https://lh5.googleusercontent.com/-TI6jouqfUac/AAAAAAAAAAI/AAAAAAAAAGM/ZJGpz-_YPsw/photo.jpg?sz=32)
![](https://lh5.googleusercontent.com/-TI6jouqfUac/AAAAAAAAAAI/AAAAAAAAAGM/ZJGpz-_YPsw/photo.jpg?sz=32)
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