LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 04-18-2012, 11:28 AM   #1
Electrode
Member
 
Registered: Oct 2002
Location: Michigan
Distribution: Debian
Posts: 158

Rep: Reputation: 16
CIFS share on old WinNT host - smbclient works, mount -t cifs doesn't


I'm trying to access a network share on a Windows NT 3.51 host from a Linux client (Gentoo x86, kernel 3.2.1).

smbclient works:
Code:
electrode@linux:~$ smbclient -N //winnt/share
Domain=[SMS] OS=[Windows NT 3.51] Server=[NT LAN Manager 3.51]
smb: \> ls
(file listing)
smb: \> quit
mount does not:
Code:
electrode@linux:~$ sudo mount -t cifs -o guest,ro //winnt/share /mnt/net
mount error(112): Host is down
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
So, where to begin debugging this?

Edit: smbnetfs works!

Last edited by Electrode; 04-19-2012 at 09:38 AM. Reason: Solution found
 
Old 04-18-2012, 12:32 PM   #2
wpeckham
LQ Guru
 
Registered: Apr 2010
Location: Continental USA
Distribution: Debian, Ubuntu, RedHat, DSL, Puppy, CentOS, Knoppix, Mint-DE, Sparky, VSIDO, tinycore, Q4OS,Manjaro
Posts: 5,507

Rep: Reputation: 2656Reputation: 2656Reputation: 2656Reputation: 2656Reputation: 2656Reputation: 2656Reputation: 2656Reputation: 2656Reputation: 2656Reputation: 2656Reputation: 2656
Naturally

You should look up when CIFS (as such) was introduced. It is not the original SMB standard and has gone through several modifications since OS/2 was new. The latest versions were not available for WinNT. IN fact the latest standard was released with VISTA, and WIN8 has an even newer update! (Just because MS likes to improve things, or just because they like to mess with us, take your pick: same outcome.)

The break that make CIFS drivers preferable over older SMB names came in 2007. Since WinNT was ANCIENT by then it did not get the memo (or any updates)!

The older standard is just fine, a little network chatty but solid, still available for *nix, still used by many *smb* tools, and I recommend it for connection to a server that dated.

I will not even ask WHY you are using an OS that old. I myself have NT4 in the back in an original box - just in case I ever need it, because a new license for MS Server 2008 is priced beyond my comfort level. (OS/2 Warp 3.2 and 4 also, though I cannot imagine what I would ever do with them.)
 
Old 04-18-2012, 02:23 PM   #3
Electrode
Member
 
Registered: Oct 2002
Location: Michigan
Distribution: Debian
Posts: 158

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by wpeckham View Post
The older standard is just fine, a little network chatty but solid, still available for *nix, still used by many *smb* tools, and I recommend it for connection to a server that dated.
So, how do I go about mounting using the old standard? The "smbfs" stuff doesn't appear to be in the kernel anymore...
 
Old 04-19-2012, 06:55 AM   #4
wpeckham
LQ Guru
 
Registered: Apr 2010
Location: Continental USA
Distribution: Debian, Ubuntu, RedHat, DSL, Puppy, CentOS, Knoppix, Mint-DE, Sparky, VSIDO, tinycore, Q4OS,Manjaro
Posts: 5,507

Rep: Reputation: 2656Reputation: 2656Reputation: 2656Reputation: 2656Reputation: 2656Reputation: 2656Reputation: 2656Reputation: 2656Reputation: 2656Reputation: 2656Reputation: 2656
mount old stuff

I should have addresses that question in my earlier post. Did not think it far enough out. Here we go....

1. verify that the mount is really shared out and that you can mount it over the network (even if only from the same old WinNT box). If this is not working, nothing else will.

2. you did not say what kernel version you are on, but in some versions the smbfs was retained even after the cifs was added. There was a warning that its use was depreciated, but the links still worked. You can try.

3. Make sure that the FQDN and hostname (as alias) resolve to its correct IP address in your hosts file or DNS server (preferabley both). Name resolution is a bit different and critical for communications between WinNT and any standard TCPIP nodes. (They do this netbios based thing from the dark ages. Must be something in the Microsoft religion.)

The mount command for smbfs looks like
# mount -t smbfs -o username=guestname,password=ABCD1234 //ntservername/share /mnt/ntserver
where you replace my generic stuff with the real suspects:
guestname with your account name for the share, ABCD1234 with that accounts real password,
ntservername with the hostname if the winNT machine, share with the shared folder name,
/mnt/ntserver with the name of the real folder to mount over.

Actually, the cifs driver should be able to fall back to the older behavior. That mount command you know, but for the record it looks like
# mount -t cifs //ntservername/share -o username=guestname,password=ABCD1234 /mnt/ntserver

If you can mount it manually, then you can update fstab to mount it on boot.
If the share is not taking, or it is but you still cannot do a manual mount, DO NOT mess with fstab!!
We need to get it working for the manual mount before it can be automated.
 
Old 04-19-2012, 09:11 AM   #5
Electrode
Member
 
Registered: Oct 2002
Location: Michigan
Distribution: Debian
Posts: 158

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by wpeckham View Post
1. verify that the mount is really shared out and that you can mount it over the network (even if only from the same old WinNT box). If this is not working, nothing else will.
In the OP, I said I was able to access the share using smbclient. It is also successfully mounted on a few Win2K and WinXP boxes.

Quote:
2. you did not say what kernel version you are on, but in some versions the smbfs was retained even after the cifs was added. There was a warning that its use was depreciated, but the links still worked. You can try.
Again, in the OP I specified I was using kernel 3.2.1. smbfs does not appear to be present in this kernel.

Quote:
3. Make sure that the FQDN and hostname (as alias) resolve to its correct IP address in your hosts file or DNS server (preferabley both). Name resolution is a bit different and critical for communications between WinNT and any standard TCPIP nodes. (They do this netbios based thing from the dark ages. Must be something in the Microsoft religion.)
Confirmed.

Quote:
Actually, the cifs driver should be able to fall back to the older behavior. That mount command you know, but for the record it looks like
# mount -t cifs //ntservername/share -o username=guestname,password=ABCD1234 /mnt/ntserver
As I mentioned in the OP, this doesn't work.

Edit: I've come across a FUSE-based thing called smbnetfs, which seems to work by hooking onto Samba's smb* tools. Might do the trick, will report back once I've tried it.

Last edited by Electrode; 04-19-2012 at 09:18 AM.
 
  


Reply

Tags
cifs, mount, net, samba, windows


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] can't mount CIFS share, but smbclient and smb:// (KIO) works hasi Linux - Networking 17 08-14-2019 01:20 PM
manual mount cifs works but srcipt mount cifs has mount error (13): Permission denied CADIT Linux - Newbie 6 11-20-2009 02:48 PM
can access a share through smbclient but not though mount.cifs seuchato Linux - Server 2 10-13-2007 09:24 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 09:16 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration