Wrong domain master name

Christopher R. Hertel crh at ubiqx.mn.org
Thu May 13 22:02:54 GMT 2004


I'm not sure I understand the problem.  Could you break it down a bit more 
for me?  It's probably my fault but I'm interested.  Naming issues are my 
special niche.  :)

Chris -)-----

On Thu, May 13, 2004 at 10:28:34AM +0200, Jerome Borsboom wrote:
> When a, differently named, windows 2000 domain server is setup 
> on the same network to use WINS resolution from a samba 
> server, the name of that server is registered wrongly into the 
> WINS database. The registered name includes the <1b> that is 
> at the end if the received name and the spaces used for 
> padding the name to 15 characters. The problem seems to be 
> that the trim_char function does not trim the spaces off, 
> because of the <1b> character at the end of the name.
> 
> I have solved the problem with the patch below, but I do not 
> feel that it is the most elegant solution.
> 
> Additionally, when the server is turned off, the nmbd log file 
> is flooded with messages that the server cannot be contacted. 
> This does not seem an error condition to me, so maybe a 
> loglevel 0 is a bit too high for this error.
> 
> Greetz,
> Jerome Borsboom
> 
> 
> [2004/05/13 09:30:01, 1] libsmb/cliconnect.c:cli_connect(1297)
>   Error connecting to 130.115.239.18 (No route to host)
> [2004/05/13 09:42:02, 0] nmbd/nmbd_browsesync.c:get_domain_master_name_node_status_fail(486)
>   get_domain_master_name_node_status_fail:
>   Doing a node status request to the domain master browser at IP 130.115.239.18 failed.
>   Cannot get workgroup name.
> 
> 
> --- samba-3.0.4/source/nmbd/nmbd_browsesync.c	2004-04-04 09:37:36.000000000 +0200
> +++ samba-3.0.4/source/nmbd/nmbd_browsesync.c	2004-05-12 21:04:42.000000000 +0200
> @@ -424,9 +424,10 @@
>  			uint16 nb_flags;
>  			int name_type;
>  
> -			pull_ascii_nstring(qname, sizeof(qname), p);
>  			name_type = CVAL(p,15);
>  			nb_flags = get_nb_flags(&p[16]);
> +			p[15] = '\0';
> +			pull_ascii_nstring(qname, sizeof(qname), p);
>  			trim_char(qname,'\0',' ');
>  
>  			p += 18;
> 

-- 
"Implementing CIFS - the Common Internet FileSystem" ISBN: 013047116X
Samba Team -- http://www.samba.org/     -)-----   Christopher R. Hertel
jCIFS Team -- http://jcifs.samba.org/   -)-----   ubiqx development, uninq.
ubiqx Team -- http://www.ubiqx.org/     -)-----   crh at ubiqx.mn.org
OnLineBook -- http://ubiqx.org/cifs/    -)-----   crh at ubiqx.org


More information about the samba-technical mailing list