I'm having a strange problem with samba, 2.2.3a running on an out-of-the-box SuSE 8.0 system. This is the first time I've set it up (hence the dumb questions I was asking on here a day or two ago). I've now worked my way through diagnosis.txt and a couple of odd netBIOS issues with the NT4 PDC, and at last I have some shares set up that my Windows client can use quite happily. However smbclient on the local machine comes up with the following error: wild:~ # smbclient //wild/art -U username%password added interface ip=127.0.0.1 bcast=127.255.255.255 nmask=255.0.0.0 added interface ip=172.17.1.3 bcast=172.17.3.255 nmask=255.255.252.0 session request to WILD failed (Not listening for calling name) session request to *SMBSERVER failed (Not listening for calling name) smbd and nmbd are running as daemons; this is my smb.conf: [global] netbios name = SAMBA workgroup = DOMAIN1 os level = 2 wins server = 172.17.1.2 hosts allow = 172.17.1.2 172.17.3. 127. encrypt passwords = yes guest account = Nobody map to guest = Bad User add user script = /usr/sbin/useradd %u delete user script = /usr/sbin/userdel %u unix password sync = yes passwd program = /usr/bin/passwd %u passwd chat = "New password:*" %n\n "Re-enter new password:*" %n\n "Pas\ sword changed*" log file = /var/log/samba/%m log level = 3 security = domain password server = 172.17.1.2 socket options = SO_KEEPALIVE IPTOS_LOWDELAY TCP_NODELAY local master = No interfaces = lo eth0 wins support = no wins server = 172.17.1.2 character set = ISO8859-15 client code page = 850 veto files = /*.eml/*.nws/riched20.dll/*.{*}/ [vicky] comment = Linux home directory for Vicky browseable = no valid users = vclarke root Administrator path = /home/vclarke read only = no create mask = 0600 directory mask = 0700 [homes] comment = PC home directories path = /share/pchomes/%S read only = No create mask = 0640 directory mask = 0750 browseable = No writeable = yes [art] comment = Art directories path= /share/art read only = no create mask = 0666 directory mask = 0777 Can anyone help me work out what's going wrong? Thanks in advance, Vicky Clarke
You should probably be typing smbclient //samba/art since you specified the netbios name of the machine to be samba. If the name samba is not in your /etc/hosts file (or DNS) you would need to add the "-I wild" switch (assuming the DNS name of your machine was wild Vicky Clarke wrote:> > I'm having a strange problem with samba, 2.2.3a running on an > out-of-the-box SuSE 8.0 system. This is the first time I've set it up > (hence the dumb questions I was asking on here a day or two ago). I've now > worked my way through diagnosis.txt and a couple of odd netBIOS issues with > the NT4 PDC, and at last I have some shares set up that my Windows client > can use quite happily. However smbclient on the local machine comes up with > the following error: > > wild:~ # smbclient //wild/art -U username%password > added interface ip=127.0.0.1 bcast=127.255.255.255 nmask=255.0.0.0 > added interface ip=172.17.1.3 bcast=172.17.3.255 nmask=255.255.252.0 > session request to WILD failed (Not listening for calling name) > session request to *SMBSERVER failed (Not listening for calling name) > > smbd and nmbd are running as daemons; this is my smb.conf: > > [global] > netbios name = SAMBA > workgroup = DOMAIN1-- =====================================================================Herb Lewis Silicon Graphics Networking Engineer 1600 Amphitheatre Pkwy MS-510 Strategic Software Organization Mountain View, CA 94043-1351 herb@sgi.com Tel: 650-933-2177 http://www.sgi.com Fax: 650-932-2177 ======================================================================
At 11:09 09/07/2002 -0700, you wrote:>I don't know if this has anything to do with it, but on my Linux >system, the line for 127.0.0.1 (localhost) does not appear.The same problem was occurring before I added the localhost line, that was just one of the suggestions Google Groups came up with as to what might help.> > added interface ip=172.17.1.3 bcast=172.17.3.255 nmask=255.255.252.0 > >This looks suspect. First, if you want this network to >be private, your address should be in the range of 172.16.[0-31].x, >not 172.16.17.*.*.OK; I picked 172.17.<foo> using the selector at http://www.ucam.org/cam-grin/ , which happens to be run by someone I usually trust to be competent in this respect. RFC1918 seems to say that anything from 172.16.0.0 - 172.31.255.255 (ie. 172.16/12 prefix) is valid as a private address range; have I missed something / is the selector giving out bogus ranges?>Then set your broadcast and netmask appropriately. >For my 172.16.1.x network, I have: > > bcast = 172.16.1.255 > netmask = 255.255.255.0 > >(This is using a class C address space, which is all I need here. >But it looks like you are using a classless system there.)I'm assuming that since I don't recognise what you're talking about, I must be missing something. Our network is a little complicated (and I freely admit I'm not the most clueful of DNS admins): we only actually use three subnets, 172.17.1.x, 172.17.2.x and 172.17.3.x, which was originally the reason for the hacky netmask. Vicky
At 11:13 09/07/2002 -0700, Herb Lewis wrote:>You should probably be typing > >smbclient //samba/art > >since you specified the netbios name of the machine to be samba. >If the name samba is not in your /etc/hosts file (or DNS) you >would need to add the "-I wild" switch (assuming the DNS name >of your machine was wildNope, not even with the IP address: smbclient //samba/art -I 172.17.1.3 added interface ip=127.0.0.1 bcast=127.255.255.255 nmask=255.0.0.0 added interface ip=172.17.1.3 bcast=172.17.3.255 nmask=255.255.252.0 session request to SAMBA failed (Not listening for calling name) session request to *SMBSERVER failed (Not listening for calling name) I'm starting to think it must be something to do with my weird DNS setup after all. Vicky
This seems to indicate that your netbios name is set wrong. Run 'testparm < /dev/null | grep -i netbios' and see what it thinks it is listening for. if it says something other than netbios name = SAMBA then you need to work out what smb.conf samba is actually looking at : 'testparm < /dev/null | grep smb.conf' should tell you that. and then you can alter the netbios name to SAMBA and everything should work. A trick I used once when I needed to look at all the options to play with was to redirect the output of testparm to the smb.conf - this gave me a very long smb.conf with lots to play with! I don't know how recommended that is though (I would imagine not at all because parameters change from rev. to rev.). At 10:56 AM 7/10/02 +0100, Vicky Clarke wrote:>Nope, not even with the IP address: > >smbclient //samba/art -I 172.17.1.3 >added interface ip=127.0.0.1 bcast=127.255.255.255 nmask=255.0.0.0 >added interface ip=172.17.1.3 bcast=172.17.3.255 nmask=255.255.252.0 >session request to SAMBA failed (Not listening for calling name) >session request to *SMBSERVER failed (Not listening for calling name) > >I'm starting to think it must be something to do with my weird DNS setup >after all. > >Vicky-------------- Martyn Ranyard I am not a member of the samba team, and anything that I say may not be as accurate as a response from one of the team. I reply to save those more qualified time, which can more usefully be spent developing SAMBA further.
At 11:15 10/07/2002 +0100, Martyn Ranyard wrote:>This seems to indicate that your netbios name is set wrong. > >Run 'testparm < /dev/null | grep -i netbios' and see what it thinks it is >listening for. > >if it says something other than netbios name = SAMBA then you need to work >out what smb.conf samba is actually looking at :Nope. I get: netbios name = SAMBA netbios aliases netbios scope Strangely, there's nothing in the log for the machine in question either - nothing at all, that is, rather than nothing relevant. I've just added a CNAME record for 'samba' to the DNS, and that changed the response slightly: vclarke@wild:~> smbclient //samba/art added interface ip=127.0.0.1 bcast=127.255.255.255 nmask=255.0.0.0 added interface ip=172.17.1.3 bcast=172.17.3.255 nmask=255.255.252.0 Got a positive name query response from 172.17.1.2 ( 172.17.1.3 ) session request to SAMBA failed (Not listening for calling name) Got a positive name query response from 172.17.1.2 ( 172.17.1.3 ) session request to *SMBSERVER failed (Not listening for calling name) Vicky
Have you just tried the expedient of putting the appropriate address in /etc/hosts (If it is not there already) and then using the "-R host" option with smbclient. (This seems to be your default lookup method, according to your error messages.) Or, putting the client into your lmhosts file on the samba server and using the "-R lmhosts" option? If either of these work, then you could change the lookup sequence in your smb.conf global section, eg. name resolve order = lmhosts wins bcast host What this error message is saying is that it is trying to broadcast for the host name. Now, you ask, whey doesn't this foolish thing just keep looking, one the DNS lookup fails. I wish I knew, but it doesn't. Joel On Tue, Jul 09, 2002 at 06:20:32PM +0100, Vicky Clarke wrote:> > I'm having a strange problem with samba, 2.2.3a running on an > out-of-the-box SuSE 8.0 system. This is the first time I've set it up > (hence the dumb questions I was asking on here a day or two ago). I've now > worked my way through diagnosis.txt and a couple of odd netBIOS issues with > the NT4 PDC, and at last I have some shares set up that my Windows client > can use quite happily. However smbclient on the local machine comes up with > the following error: > > wild:~ # smbclient //wild/art -U username%password > added interface ip=127.0.0.1 bcast=127.255.255.255 nmask=255.0.0.0 > added interface ip=172.17.1.3 bcast=172.17.3.255 nmask=255.255.252.0 > session request to WILD failed (Not listening for calling name) > session request to *SMBSERVER failed (Not listening for calling name) > > smbd and nmbd are running as daemons; this is my smb.conf: > > [global] > netbios name = SAMBA > workgroup = DOMAIN1 > os level = 2 > wins server = 172.17.1.2 > hosts allow = 172.17.1.2 172.17.3. 127. > encrypt passwords = yes > guest account = Nobody > map to guest = Bad User > add user script = /usr/sbin/useradd %u > delete user script = /usr/sbin/userdel %u > unix password sync = yes > passwd program = /usr/bin/passwd %u > passwd chat = "New password:*" %n\n "Re-enter new password:*" %n\n > "Pas\ > sword changed*" > log file = /var/log/samba/%m > log level = 3 > security = domain > password server = 172.17.1.2 > socket options = SO_KEEPALIVE IPTOS_LOWDELAY TCP_NODELAY > local master = No > interfaces = lo eth0 > wins support = no > wins server = 172.17.1.2 > character set = ISO8859-15 > client code page = 850 > veto files = /*.eml/*.nws/riched20.dll/*.{*}/ > [vicky] > comment = Linux home directory for Vicky > browseable = no > valid users = vclarke root Administrator > path = /home/vclarke > read only = no > create mask = 0600 > directory mask = 0700 > [homes] > comment = PC home directories > path = /share/pchomes/%S > read only = No > create mask = 0640 > directory mask = 0750 > browseable = No > writeable = yes > [art] > comment = Art directories > path= /share/art > read only = no > create mask = 0666 > directory mask = 0777 > > Can anyone help me work out what's going wrong? > > Thanks in advance, > Vicky Clarke > > > -- > To unsubscribe from this list go to the following URL and read the > instructions: http://lists.samba.org/mailman/listinfo/samba
At 07:39 10/07/2002 -0400, you wrote:>Have you just tried the expedient of putting the appropriate address in >/etc/hosts (If it is not there already) >and then using the "-R host" option with smbclient. (This seems to be your >default lookup method, according to your error messages.) >Or, putting the client into your lmhosts file on the samba server and using >the "-R lmhosts" option? >If either of these work, then you could change the lookup sequence in your >smb.conf global section, eg. > > name resolve order = lmhosts wins bcast hostHmm. I've tested all four of these options with smbclient -R and they all fail in some way. WINS and bcast get a positive name query response and the same 'calling name' error. Also, I've just discovered that any Windows client that isn't logged in as me (ie. doesn't have a UNIX account on the server) gets 'The network path cannot be found' when trying to connect to any share. So it's definitely some freak of the DNS/netBIOS interaction. I found these rather bizarre-looking entries in my nmbd log: added interface ip=172.17.1.3 bcast=172.17.3.255 nmask=255.255.252.0 ^^^^^^^^^^ ^^^^^^^^^^^^ making subnet name:172.17.1.3 Broadcast address:172.17.3.255 Subnet mask:255.255.252.0 ^^^^^^^^^^ ^^^^^^^^^^^^ This is the latest chunk of log.nmbd. I can't set domain master browser since we have an NT4 PDC.. process_name_registration_request: Name registration for name SAMBA<03> IP 172 .17.1.3 on subnet 172.17.1.3 [2002/07/09 18:06:33, 0] nmbd/nmbd_responserecordsdb.c:find_response_record(237) find_response_record: response packet id 8334 received with no matching record . [2002/07/09 18:06:33, 3] nmbd/nmbd_packets.c:find_subnet_for_nmb_packet(1437) find_subnet_for_nmb_packet: response record not found for response id 8334 [2002/07/09 18:06:33, 3] nmbd/nmbd_incomingrequests.c:process_name_registration_ request(237) process_name_registration_request: Name registration for name SAMBA<00> IP 172 .17.1.3 on subnet 172.17.1.3 [2002/07/09 18:06:33, 0] nmbd/nmbd_responserecordsdb.c:find_response_record(237) find_response_record: response packet id 8335 received with no matching record . [2002/07/09 18:06:33, 3] nmbd/nmbd_packets.c:find_subnet_for_nmb_packet(1437) find_subnet_for_nmb_packet: response record not found for response id 8335 [2002/07/09 18:06:33, 3] nmbd/nmbd_incomingrequests.c:process_name_registration_ request(237) process_name_registration_request: Name registration for name DOMAIN1<00> IP 1 72.17.1.3 on subnet 172.17.1.3 [2002/07/09 18:06:33, 3] nmbd/nmbd_incomingrequests.c:process_name_registration_ request(237) process_name_registration_request: Name registration for name DOMAIN1<1e> IP 1 72.17.1.3 on subnet 172.17.1.3 [2002/07/09 18:06:53, 3] nmbd/nmbd_serverlistdb.c:write_browse_list(449) write_browse_list: Wrote browse list into file //var/lib/samba/browse.dat [2002/07/09 18:07:43, 3] nmbd/nmbd_sendannounce.c:send_host_announcement(217) send_host_announcement: type 9b03 for host SAMBA on subnet 172.17.1.3 for work group DOMAIN1 [2002/07/09 18:08:13, 0] nmbd/nmbd.c:sig_hup(91) Got SIGHUP dumping debug info. [2002/07/09 18:08:13, 0] nmbd/nmbd_workgroupdb.c:dump_workgroups(290) dump_workgroups() dump workgroup on subnet 172.17.1.3: netmask= 255.255.252.0: DOMAIN1(1) current master browser = UNKNOWN SAMBA 40009b03 (Samba 2.2.3a) [2002/07/09 18:08:13, 0] nmbd/nmbd_workgroupdb.c:dump_workgroups(290) dump_workgroups() dump workgroup on subnet UNICAST_SUBNET: netmask= 172.17.1.2: DOMAIN1(1) current master browser = UNKNOWN SAMBA 40009b03 (Samba 2.2.3a) [2002/07/09 18:08:13, 3] nmbd/nmbd_serverlistdb.c:write_browse_list(449) write_browse_list: Wrote browse list into file //var/lib/samba/browse.dat [2002/07/09 18:08:13, 3] param/loadparm.c:init_globals(1221) Initialising global parameters [2002/07/09 18:08:13, 3] param/params.c:pm_process(577) params.c:pm_process() - Processing configuration file "//etc/samba/smb.conf" [2002/07/09 18:08:13, 3] param/loadparm.c:do_section(2948) Processing section "[global]" [2002/07/09 18:08:13, 1] lib/debug.c:debug_message(250) INFO: Debug class all level = 3 (pid 18016 from pid 18016) /var/lib/samba/browse.dat contains: "DOMAIN1" c0001000 "" "DOMAIN1" "SAMBA" 40009b03 "Samba 2.2.3a" "DOMAIN1" Thanks, Vicky Clarke
> -----Original Message----- > From: Vicky Clarke [mailto:vclarke@frontier.co.uk] > Sent: Tuesday, July 09, 2002 10:21 AM > To: samba@lists.samba.org > Subject: [Samba] 'Not listening for calling name' > > > > I'm having a strange problem with samba, 2.2.3a running on an > out-of-the-box SuSE 8.0 system. This is the first time I've set it up > (hence the dumb questions I was asking on here a day or two > ago). I've now > worked my way through diagnosis.txt and a couple of odd > netBIOS issues with > the NT4 PDC, and at last I have some shares set up that my > Windows client > can use quite happily. However smbclient on the local machine > comes up with > the following error: > > wild:~ # smbclient //wild/art -U username%password > added interface ip=127.0.0.1 bcast=127.255.255.255 nmask=255.0.0.0 > added interface ip=172.17.1.3 bcast=172.17.3.255 nmask=255.255.252.0 > session request to WILD failed (Not listening for calling name) > session request to *SMBSERVER failed (Not listening for calling name) > > smbd and nmbd are running as daemons; this is my smb.conf: > > [global] > netbios name = SAMBA > workgroup = DOMAIN1 > os level = 2 > wins server = 172.17.1.2 > hosts allow = 172.17.1.2 172.17.3. 127.<snip> If you're using 172.17.1.x, 172.17.2.x, 172.17.3.x should this read: hosts allow = 172.17.1. 172.17.2. 172.17.3. 127. It seems like you're not allowing all of the subnets with the original entry. Jim
Vicky, Remark out the "hosts allow" entry, restart samba see if it changes anything. You said in an earlier post that you're using 171.17.1.x, 171.17.2.x, and 171.17.3.x, and the "hosts allow=" line isn't set for that (as it is now). Jim> -----Original Message----- > From: Vicky Clarke [mailto:vclarke@frontier.co.uk] > Sent: Friday, July 12, 2002 8:24 AM > To: samba@lists.samba.org > Subject: Re: [Samba] 'Not listening for calling name' > > > At 17:34 11/07/2002 -0700, you wrote: > > >It's just a CIDR (Classless Internet Domain Routing) > netmask, which is > >an extension used to get over some limitations of the IP address > >"class" system. Your netmask of 255.255.252.0 is > >[...] > >What's happening is that you have 2 extra bits to use for > >the host. So instead of being limited to 254 hosts on the > >subnet, your subnet can have 1022 hosts (not 1024, because > >the .0 is reserved for a network address, and .255 is for > >the broadcast address). > > > >I think Jim Van Sickler pointed out that this may have something > >to do with your problem. If you don't have things working yet, > >you might want to look into it a bit. > > In smb.conf I've added "netbios name = SAMBA", and I've added > SAMBA to > /etc/samba/lmhosts, but when I run smbclient I get this sort > of response: > > vclarke@wild:~> smbclient //samba/art -R lmhosts > added interface ip=127.0.0.1 bcast=127.255.255.255 nmask=255.0.0.0 > added interface ip=172.17.1.3 bcast=172.17.255.255 > nmask=255.255.0.0 << > Yes, I've fiddled a bit > session request to SAMBA failed (Called name not present) > Password: > Domain=[DOMAIN1] OS=[Windows NT 4.0] Server=[NT LAN Manager 4.0] > tree connect failed: NT_STATUS_BAD_NETWORK_NAME > > vclarke@wild:~> smbclient //samba/art -R lmhosts -M SAMBA > added interface ip=127.0.0.1 bcast=127.255.255.255 nmask=255.0.0.0 > added interface ip=172.17.1.3 bcast=172.17.255.255 nmask=255.255.0.0 > session request failed > > I can see how all this might be related to the netmask > oddness but for the > life of me I can't put my finger on the connection.. time to > speak to my > friendly DNS guru I think. > > In case it isn't: how do I get Samba to tell me what it > thinks it *should* > be hearing? > > I'm also curious as to why my own Win2K machine can see the shares > perfectly, but nobody else's can (network path not found) - > would this be > because I'm the only person with a proper UNIX account on the > server and a > smbpasswd entry and so on? If so, why on earth can't I see it > when I run > smbclient while logged in on the server itself? > > lmhosts and output of testparm included below: > > [global] > coding system > client code page = 850 > code page directory = /usr/share/samba/codepages > workgroup = DOMAIN1 > netbios name = SAMBA > netbios aliases > netbios scope > server string = Samba 2.2.3a > interfaces = lo eth0 > bind interfaces only = No > security = DOMAIN > encrypt passwords = Yes > update encrypted = No > allow trusted domains = Yes > hosts equiv > min passwd length = 5 > map to guest = Bad User > null passwords = No > obey pam restrictions = No > password server = 172.17.1.2 > smb passwd file = //etc/samba/smbpasswd > root directory > pam password change = No > passwd program = /usr/bin/passwd %u > passwd chat = "New password:*" %n\n "Re-enter new > password:*" %n\n > "Pass > word changed*" > passwd chat debug = No > username map > password level = 0 > username level = 0 > unix password sync = Yes > restrict anonymous = No > lanman auth = Yes > use rhosts = No > ssl = No > ssl hosts > ssl hosts resign > ssl CA certDir > ssl CA certFile > ssl server cert > ssl server key > ssl client cert > ssl client key > ssl egd socket > ssl entropy file > ssl entropy bytes = 256 > ssl require clientcert = No > ssl require servercert = No > ssl ciphers > ssl version = ssl2or3 > ssl compatibility = No > log level = 2 > syslog = 1 > syslog only = No > log file = /var/log/samba/%m > max log size = 5000 > timestamp logs = Yes > debug hires timestamp = No > debug pid = No > debug uid = No > protocol = NT1 > large readwrite = No > max protocol = NT1 > min protocol = CORE > read bmpx = No > read raw = Yes > write raw = Yes > nt smb support = Yes > nt pipe support = Yes > announce version = 4.5 > announce as = NT > max mux = 50 > max xmit = 65535 > name resolve order = lmhosts host wins bcast > max packet = 65535 > max ttl = 259200 > max wins ttl = 518400 > min wins ttl = 21600 > time server = No > unix extensions = No > change notify timeout = 60 > deadtime = 0 > getwd cache = Yes > keepalive = 300 > lpq cache time = 10 > max smbd processes = 0 > max disk size = 0 > max open files = 10000 > read size = 16384 > socket options = SO_KEEPALIVE IPTOS_LOWDELAY TCP_NODELAY > stat cache size = 50 > use mmap = Yes > total print jobs = 0 > load printers = Yes > printcap name = /etc/printcap > disable spoolss = No > enumports command > addprinter command > deleteprinter command > show add printer wizard = Yes > os2 driver map > strip dot = No > character set = ISO8859-15 > mangled stack = 50 > stat cache = Yes > domain admin group > domain guest group > machine password timeout = 604800 > add user script = /usr/sbin/useradd %u > delete user script = /usr/sbin/userdel %u > logon script > logon path = \\%N\%U\profile > logon drive > logon home = \\%N\%U > domain logons = No > os level = 2 > lm announce = Auto > lm interval = 60 > preferred master = Auto > local master = No > domain master = Auto > browse list = Yes > enhanced browsing = Yes > dns proxy = Yes > wins proxy = No > wins server = 172.17.1.2 > wins support = No > wins hook > kernel oplocks = Yes > oplock break wait time = 0 > add share command > change share command > delete share command > config file > preload > lock dir = //var/lib/samba > pid dir = //var/run/samba > utmp directory > wtmp directory > utmp = No > default service > message command > dfree command > valid chars > remote announce > remote browse sync > socket address = 0.0.0.0 > homedir map = auto.home > time offset = 0 > NIS homedir = No > source environment > panic action > hide local users = No > host msdfs = No > winbind uid > winbind gid > template homedir = /home/%D/%U > template shell = /bin/false > winbind separator = \ > winbind cache time = 15 > winbind enum users = Yes > winbind enum groups = Yes > comment > path > alternate permissions = No > username > guest account = Nobody > invalid users > valid users > admin users > read list > write list > printer admin > force user > force group > read only = Yes > create mask = 0744 > force create mode = 00 > security mask = 0777 > force security mode = 00 > directory mask = 0755 > force directory mode = 00 > directory security mask = 0777 > force directory security mode = 00 > inherit permissions = No > guest only = No > guest ok = No > only user = No > hosts allow = 172.17.1.2 172.17.3. 127. > hosts deny > status = Yes > nt acl support = Yes > max connections = 0 > min print space = 0 > strict allocate = No > strict sync = No > sync always = No > write cache size = 0 > max print jobs = 1000 > printable = No > postscript = No > printing = bsd > print command = lpr -r -P%p %s > lpq command = lpq -P%p > lprm command = lprm -P%p %j > lppause command > lpresume command > queuepause command > queueresume command > printer name > use client driver = No > default devmode = No > printer driver > printer driver file = //etc/samba/printers.def > printer driver location > default case = lower > case sensitive = No > preserve case = Yes > short preserve case = Yes > mangle case = No > mangling char = ~ > hide dot files = Yes > hide unreadable = No > delete veto files = No > veto files = /*.eml/*.nws/riched20.dll/*.{*}/ > hide files > veto oplock files > map system = No > map hidden = No > map archive = Yes > mangled names = Yes > mangled map > browseable = Yes > blocking locks = Yes > fake oplocks = No > locking = Yes > oplocks = Yes > level2 oplocks = Yes > oplock contention limit = 2 > posix locking = Yes > strict locking = No > share modes = Yes > copy > include > exec > preexec close = No > postexec > root preexec > root preexec close = No > root postexec > available = Yes > volume > fstype = NTFS > set directory = No > wide links = Yes > follow symlinks = Yes > dont descend > magic script > magic output > delete readonly = No > dos filemode = No > dos filetimes = No > level2 oplocks = Yes > oplock contention limit = 2 > posix locking = Yes > strict locking = No > share modes = Yes > copy > include > exec > preexec close = No > postexec > root preexec > root preexec close = No > root postexec > available = Yes > volume > fstype = NTFS > set directory = No > wide links = Yes > follow symlinks = Yes > dont descend > magic script > magic output > delete readonly = No > dos filemode = No > dos filetimes = No > dos filetime resolution = No > fake directory create times = No > vfs object > vfs options > msdfs root = No > > [vicky] > comment = Linux home directory for Vicky > path = /home/vclarke > valid users = vclarke root Administrator > read only = No > create mask = 0600 > directory mask = 0700 > browseable = No > > [homes] > comment = User home directory > path = /share/pchomes/%S > read only = No > create mask = 0640 > directory mask = 0750 > browseable = No > > [art] > comment = Art directories > path = /share/art > read only = No > create mask = 0666 > directory mask = 0777 > > lmhosts file: > > 127.0.0.1 localhost > 172.17.1.2 SAMBA > > > > -- > To unsubscribe from this list go to the following URL and read the > instructions: http://lists.samba.org/mailman/listinfo/samba >