Hi, I am getting an error when trying to mount a drive on a win2000 server. unknown host "domain controller" ignoring "domain controller" Session Setup Failed: ERRDOS - ERRnoaccess (access denied.) SMB Connection Failed I do not know if this is a known win2000 server problem or not. I can connect to my NT4.0 server?s fine. Any help is greatly appreciated Thanks -miket ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ SciTech Software, Inc. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Michael E. Todd Chico, CA 95928 530-894-8400 #151
On Thu, 7 Sep 2000 MikeT@scitechsoft.com wrote:> I am getting an error when trying to mount a drive on a win2000 server. > > unknown host "domain controller" > ignoring "domain controller" > Session Setup Failed: ERRDOS - ERRnoaccess (access denied.) > SMB Connection FailedWhat command are you using? and which samba version?> I do not know if this is a known win2000 server problem or not. I can > connect to my NT4.0 server?s fine.It could very well be a win2k thing. /Urban
Dear all, I need you help to solve my problem. I want to mount my shared directory in NT server to mnt directory in Linux Redhat 6.2. I type the command # smbmount //NT server/shared directory /mnt/shared directory but I get error message session setup failed: ERRSRV - 2240 SMB connection failed I check the shared directory of that both server, they are no used/mounted yet. How can I mount them? I appreciate your kind respond soon. Thanks in advance, Santi -------------- next part -------------- HTML attachment scrubbed and removed
Dear all, I need you help to solve my problem. I want to mount my shared directory in NT server to mnt directory in Linux Redhat 6.2. I type the command # smbmount //NT server/shared directory /mnt/shared directory but I get error message session setup failed: ERRSRV - 2240 SMB connection failed I check the shared directory of that both server, they are no used/mounted yet. How can I mount them? I appreciate your kind respond soon. Thanks in advance, Santi -------------- next part -------------- HTML attachment scrubbed and removed
Try mount -t smbfs -o username=[user,password=[pass] //server/share /mnt/samba. The Archimage> Santi Saraswati wrote: > > Dear all, > > I need you help to solve my problem. I want to mount my shared > directory in NT server to mnt directory in Linux Redhat 6.2. I type > the command > > # smbmount //NT server/shared directory /mnt/shared directory > > but I get error message > > session setup failed: ERRSRV - 2240 > SMB connection failed > > I check the shared directory of that both server, they are no > used/mounted yet. How can I mount them? > > I appreciate your kind respond soon. > > Thanks in advance, > Santi
Hi, I get the following error when i try to mount a windows share on my embedded target>>93: session setup failed: SUCCESS - 0 >>SMB connection failed.I am using the command>>smbmount //win-mac-netbios-name/share-name /mnt/sambashareSamba then complains about some codepages missing, but moves on and prompts me the password. I have set no password on the windows machine for the "guest" account. [I have pasted the smb.conf used in both the server and client below ( i use the same smb.conf ).] I leave the password empty and press enter. It then gives the above mentioned errors. This was working fine a few weeks ago when we were using the full blown Red-Hat distribution built for our embedded target (MIPS). Now we have scaled down the linux to minimal files ( to fit to our flash ) and i beleive something is missing; which causes the problem. Can somebody please help me resolve this. Thanks and Regards, Abdij ************** smb.conf ************************* ; Configuration file for smbd. ; ===========================================================================; For the format of this file and comprehensive descriptions of all the ; configuration option, please refer to the man page for smb.conf(5). [global] ; set the work group name workgroup = DOMAIN ; set machine name netbios name = Sambabu ; set description field server string = Sambabu Server ; set a separate log file for each client log file = /usr/local/samba/log.%m ; set lock directory lock directory = /var/lock/samba ; set share mode share modes = yes ; allow guests guest ok = yes [home] comment = Home Directory ; set path path = /home ; make browsable browseable = yes ; allow guests guest ok = yes ; make writable read only = no ; set create mode create mode = 0750 [public] comment = Publicaly Shared Data ; set the path path = /home/abdij/downloads ; make public public = yes ; make writable writable = yes ; make unprintable printable = no [tmp] comment = Temporary file space ; set path path = /tmp ; make writable read only = no ; make public public = yes
Hello, as far as I know the command to mount an SMB Filesystem is: mount -t smbfs -o username=YOURNAME,password=pass //server/sharename/ /folder/pointer YOURNAME and pass must be an Account on the Windows OS, who has Admin-Rights On the UNIX Side you need to be root to execute the command Hope this helps, Best regards, Roland> Can somebody please help me resolve this.> Thanks and Regards, > Abdij
On Thu, 23 May 2002, Roland Schmid wrote:> Hello, > > as far as I know the command to mount an SMB Filesystem is: > mount -t smbfs -o username=YOURNAME,password=pass //server/sharename/ > /folder/pointer > > YOURNAME and pass must be an Account on the Windows OS, who has Admin-RightsYou do not need admin-rights to connect. Just normal read and write (or whatever it is you do ... :) /Urban
Hi, I got the following schemma: +---------------+ +---------------+ | 192.168.1.2 | | Linux Box | +------------- -+ +---------------+ ------ | Router | | LAN | +---------------+ | 192.168.1.1 | |192.168.5.0/24| +---------------+ +---------------+ | | | | +-----------------+ +-----------------+ | LAN | | LAN | +-----------------+ +-----------------+ | 192.168.1.0/24 | | 192.168.1.0/24 | +-----------------+ +-----------------+ I'm connecting via Samba from the Linux Box, to a Windows XP machine on the 192.168.1.0/24 LAN, of IP address 192.168.1.10, using the following script: ################################################### #!/bin/bash IPADDR="192.168.1.10" SERVERUNC="//Server/C$" SERVERMNT="/mnt/server/" USER="username" PASS="password" smbmount ${SERVERUNC} ${SERVERMNT} ip=${IPADDR} fmask=644 -o username=${USER},password=${PASS} > /dev/null #################################################### It works OK... Now, when I try to connect from the Linux box to another Windows XP machine, that's in the 192.168.5.0/24 LAN, of IP address 192.168.5.15, using an identical script but using that machine's information, I receive a "SMB connection failed" error. There are no routing problems, the Linux box can see the XP 192.168.5.15, I can ping it. There are no forewall rules or anything that could be blocking any type of access between both of them... Moreover, I can connect from the XP 192.168.1.10 to the XP 192.168.5.15 and mount it's hard drive without any problem The Linux Box is a Debian 3.0 Woody with Kernel 2.4.18 Any ideas?? Thanks in advanced, Juan