2 !== BROWSING.txt for Samba release 2.2.0-alpha3 24 Mar 2001
4 Author/s: Many (Thanks to Luke, Jeremy, Andrew, etc.)
6 Status: Current - For VERY Advanced Users ONLY
8 Summary: This describes how to configure Samba for improved browsing.
9 =====================================================================
14 SMB networking provides a mechanism by which clients can access a list
15 of machines in a network, a so-called "browse list". This list
16 contains machines that are ready to offer file and/or print services
17 to other machines within the network. Thus it does not include
18 machines which aren't currently able to do server tasks. The browse
19 list is heavily used by all SMB clients. Configuration of SMB
20 browsing has been problematic for some Samba users, hence this
23 Browsing will NOT work if name resolution from NetBIOS names to IP
24 addresses does not function correctly. Use of a WINS server is highly
25 recommended to aid the resolution of NetBIOS (SMB) names to IP addresses.
26 WINS allows remote segment clients to obtain NetBIOS name_type information
27 that can NOT be provided by any other means of name resolution.
29 =====================================================================
33 Samba now fully supports browsing. The browsing is supported by nmbd
34 and is also controlled by options in the smb.conf file (see smb.conf(5)).
36 Samba can act as a local browse master for a workgroup and the ability
37 for samba to support domain logons and scripts is now available. See
38 DOMAIN.txt for more information on domain logons.
40 Samba can also act as a domain master browser for a workgroup. This
41 means that it will collate lists from local browse masters into a
42 wide area network server list. In order for browse clients to
43 resolve the names they may find in this list, it is recommended that
44 both samba and your clients use a WINS server.
46 Note that you should NOT set Samba to be the domain master for a
47 workgroup that has the same name as an NT Domain: on each wide area
48 network, you must only ever have one domain master browser per workgroup,
49 regardless of whether it is NT, Samba or any other type of domain master
50 that is providing this service.
52 [Note that nmbd can be configured as a WINS server, but it is not
53 necessary to specifically use samba as your WINS server. NTAS can
54 be configured as your WINS server. In a mixed NT server and
55 samba environment on a Wide Area Network, it is recommended that
56 you use the NT server's WINS server capabilities. In a samba-only
57 environment, it is recommended that you use one and only one nmbd
60 To get browsing to work you need to run nmbd as usual, but will need
61 to use the "workgroup" option in smb.conf to control what workgroup
62 Samba becomes a part of.
64 Samba also has a useful option for a Samba server to offer itself for
65 browsing on another subnet. It is recommended that this option is only
66 used for 'unusual' purposes: announcements over the internet, for
67 example. See "remote announce" in the smb.conf man page.
69 If something doesn't work then hopefully the log.nmb file will help
70 you track down the problem. Try a debug level of 2 or 3 for finding
71 problems. Also note that the current browse list usually gets stored
72 in text form in a file called browse.dat.
74 Note that if it doesn't work for you, then you should still be able to
75 type the server name as \\SERVER in filemanager then hit enter and
76 filemanager should display the list of available shares.
78 Some people find browsing fails because they don't have the global
79 "guest account" set to a valid account. Remember that the IPC$
80 connection that lists the shares is done as guest, and thus you must
81 have a valid guest account.
83 Also, a lot of people are getting bitten by the problem of too many
84 parameters on the command line of nmbd in inetd.conf. This trick is to
85 not use spaces between the option and the parameter (eg: -d2 instead
86 of -d 2), and to not use the -B and -N options. New versions of nmbd
87 are now far more likely to correctly find your broadcast and network
88 address, so in most cases these aren't needed.
90 The other big problem people have is that their broadcast address,
91 netmask or IP address is wrong (specified with the "interfaces" option
95 BROWSING ACROSS SUBNETS
96 =======================
98 With the release of Samba 1.9.17(alpha1 and above) Samba has been
99 updated to enable it to support the replication of browse lists
100 across subnet boundaries. New code and options have been added to
101 achieve this. This section describes how to set this feature up
102 in different settings.
104 To see browse lists that span TCP/IP subnets (ie. networks separated
105 by routers that don't pass broadcast traffic) you must set up at least
106 one WINS server. The WINS server acts as a DNS for NetBIOS names, allowing
107 NetBIOS name to IP address translation to be done by doing a direct
108 query of the WINS server. This is done via a directed UDP packet on
109 port 137 to the WINS server machine. The reason for a WINS server is
110 that by default, all NetBIOS name to IP address translation is done
111 by broadcasts from the querying machine. This means that machines
112 on one subnet will not be able to resolve the names of machines on
113 another subnet without using a WINS server.
115 Remember, for browsing across subnets to work correctly, all machines,
116 be they Windows 95, Windows NT, or Samba servers must have the IP address
117 of a WINS server given to them by a DHCP server, or by manual configuration
118 (for Win95 and WinNT, this is in the TCP/IP Properties, under Network
119 settings) for Samba this is in the smb.conf file.
121 How does cross subnet browsing work ?
122 =====================================
124 Cross subnet browsing is a complicated dance, containing multiple
125 moving parts. It has taken Microsoft several years to get the code
126 that achieves this correct, and Samba lags behind in some areas.
127 However, with the 1.9.17 release, Samba is capable of cross subnet
128 browsing when configured correctly.
130 Consider a network set up as follows :
133 N1_A N1_B N1_C N1_D N1_E
135 -------------------------------------------------------
138 |R1 | Router 1 Router 2 |R2 |
141 | subnet 2 subnet 3 |
142 -------------------------- ------------------------------------
144 N2_A N2_B N2_C N2_D N3_A N3_B N3_C N3_D
147 Consisting of 3 subnets (1, 2, 3) conneted by two routers
148 (R1, R2) - these do not pass broadcasts. Subnet 1 has 5 machines
149 on it, subnet 2 has 4 machines, subnet 3 has 4 machines. Assume
150 for the moment that all these machines are configured to be in the
151 same workgroup (for simplicities sake). Machine N1_C on subnet 1
152 is configured as Domain Master Browser (ie. it will collate the
153 browse lists for the workgroup). Machine N2_D is configured as
154 WINS server and all the other machines are configured to register
155 their NetBIOS names with it.
157 As all these machines are booted up, elections for master browsers
158 will take place on each of the three subnets. Assume that machine
159 N1_C wins on subnet 1, N2_B wins on subnet 2, and N3_D wins on
160 subnet 3 - these machines are known as local master browsers for
161 their particular subnet. N1_C has an advantage in winning as the
162 local master browser on subnet 1 as it is set up as Domain Master
165 On each of the three networks, machines that are configured to
166 offer sharing services will broadcast that they are offering
167 these services. The local master browser on each subnet will
168 receive these broadcasts and keep a record of the fact that
169 the machine is offering a service. This list of records is
170 the basis of the browse list. For this case, assume that
171 all the machines are configured to offer services so all machines
172 will be on the browse list.
174 For each network, the local master browser on that network is
175 considered 'authoritative' for all the names it receives via
176 local broadcast. This is because a machine seen by the local
177 master browser via a local broadcast must be on the same
178 network as the local master browser and thus is a 'trusted'
179 and 'verifiable' resource. Machines on other networks that
180 the local master browsers learn about when collating their
181 browse lists have not been directly seen - these records are
182 called 'non-authoritative'.
184 At this point the browse lists look as follows (these are
185 the machines you would see in your network neighborhood if
186 you looked in it on a particular network right now).
188 Subnet Browse Master List
189 ------ ------------- ----
190 Subnet1 N1_C N1_A, N1_B, N1_C, N1_D, N1_E
192 Subnet2 N2_B N2_A, N2_B, N2_C, N2_D
194 Subnet3 N3_D N3_A, N3_B, N3_C, N3_D
196 Note that at this point all the subnets are separate, no
197 machine is seen across any of the subnets.
199 Now examine subnet 2. As soon as N2_B has become the local
200 master browser it looks for a Domain master browser to synchronize
201 its browse list with. It does this by querying the WINS server
202 (N2_D) for the IP address associated with the NetBIOS name
203 WORKGROUP<1B>. This name was registerd by the Domain master
204 browser (N1_C) with the WINS server as soon as it was booted.
206 Once N2_B knows the address of the Domain master browser it
207 tells it that is the local master browser for subnet 2 by
208 sending a MasterAnnouncement packet as a UDP port 138 packet.
209 It then synchronizes with it by doing a NetServerEnum2 call. This
210 tells the Domain Master Browser to send it all the server
211 names it knows about. Once the domain master browser receives
212 the MasterAnnouncement packet it schedules a synchronization
213 request to the sender of that packet. After both synchronizations
214 are done the browse lists look like :
216 Subnet Browse Master List
217 ------ ------------- ----
218 Subnet1 N1_C N1_A, N1_B, N1_C, N1_D, N1_E,
219 N2_A(*), N2_B(*), N2_C(*), N2_D(*)
221 Subnet2 N2_B N2_A, N2_B, N2_C, N2_D
222 N1_A(*), N1_B(*), N1_C(*), N1_D(*), N1_E(*)
224 Subnet3 N3_D N3_A, N3_B, N3_C, N3_D
226 Servers with a (*) after them are non-authoritative names.
228 At this point users looking in their network neighborhood on
229 subnets 1 or 2 will see all the servers on both, users on
230 subnet 3 will still only see the servers on their own subnet.
232 The same sequence of events that occured for N2_B now occurs
233 for the local master browser on subnet 3 (N3_D). When it
234 synchronizes browse lists with the domain master browser (N1_A)
235 it gets both the server entries on subnet 1, and those on
236 subnet 2. After N3_D has synchronized with N1_C and vica-versa
237 the browse lists look like.
239 Subnet Browse Master List
240 ------ ------------- ----
241 Subnet1 N1_C N1_A, N1_B, N1_C, N1_D, N1_E,
242 N2_A(*), N2_B(*), N2_C(*), N2_D(*),
243 N3_A(*), N3_B(*), N3_C(*), N3_D(*)
245 Subnet2 N2_B N2_A, N2_B, N2_C, N2_D
246 N1_A(*), N1_B(*), N1_C(*), N1_D(*), N1_E(*)
248 Subnet3 N3_D N3_A, N3_B, N3_C, N3_D
249 N1_A(*), N1_B(*), N1_C(*), N1_D(*), N1_E(*),
250 N2_A(*), N2_B(*), N2_C(*), N2_D(*)
252 Servers with a (*) after them are non-authoritative names.
254 At this point users looking in their network neighborhood on
255 subnets 1 or 3 will see all the servers on all sunbets, users on
256 subnet 2 will still only see the servers on subnets 1 and 2, but not 3.
258 Finally, the local master browser for subnet 2 (N2_B) will sync again
259 with the domain master browser (N1_C) and will recieve the missing
260 server entries. Finally - and as a steady state (if no machines
261 are removed or shut off) the browse lists will look like :
263 Subnet Browse Master List
264 ------ ------------- ----
265 Subnet1 N1_C N1_A, N1_B, N1_C, N1_D, N1_E,
266 N2_A(*), N2_B(*), N2_C(*), N2_D(*),
267 N3_A(*), N3_B(*), N3_C(*), N3_D(*)
269 Subnet2 N2_B N2_A, N2_B, N2_C, N2_D
270 N1_A(*), N1_B(*), N1_C(*), N1_D(*), N1_E(*)
271 N3_A(*), N3_B(*), N3_C(*), N3_D(*)
273 Subnet3 N3_D N3_A, N3_B, N3_C, N3_D
274 N1_A(*), N1_B(*), N1_C(*), N1_D(*), N1_E(*),
275 N2_A(*), N2_B(*), N2_C(*), N2_D(*)
277 Servers with a (*) after them are non-authoritative names.
279 Synchronizations between the domain master browser and local
280 master browsers will continue to occur, but this should be a
281 steady state situation.
283 If either router R1 or R2 fails the following will occur:
285 1) Names of computers on each side of the inaccessible network fragments
286 will be maintained for as long as 36 minutes, in the network neighbourhood
289 2) Attempts to connect to these inaccessible computers will fail, but the
290 names will not be removed from the network neighbourhood lists.
292 3) If one of the fragments is cut off from the WINS server, it will only
293 be able to access servers on its local subnet, by using subnet-isolated
294 broadcast NetBIOS name resolution. The effects are similar to that of
295 losing access to a DNS server.
297 Setting up a WINS server
298 ========================
300 Either a Samba machine or a Windows NT Server machine may be set up
301 as a WINS server. To set a Samba machine to be a WINS server you must
302 add the following option to the smb.conf file on the selected machine :
303 in the [globals] section add the line
307 Versions of Samba previous to 1.9.17 had this parameter default to
308 yes. If you have any older versions of Samba on your network it is
309 strongly suggested you upgrade to 1.9.17 or above, or at the very
310 least set the parameter to 'no' on all these machines.
312 Machines with "wins support = yes" will keep a list of all NetBIOS
313 names registered with them, acting as a DNS for NetBIOS names.
315 You should set up only ONE wins server. Do NOT set the
316 "wins support = yes" option on more than one Samba server.
318 To set up a Windows NT Server as a WINS server you need to set up
319 the WINS service - see your NT documentation for details. Note that
320 Windows NT WINS Servers can replicate to each other, allowing more
321 than one to be set up in a complex subnet environment. As Microsoft
322 refuse to document these replication protocols Samba cannot currently
323 participate in these replications. It is possible in the future that
324 a Samba->Samba WINS replication protocol may be defined, in which
325 case more than one Samba machine could be set up as a WINS server
326 but currently only one Samba server should have the "wins support = yes"
329 After the WINS server has been configured you must ensure that all
330 machines participating on the network are configured with the address
331 of this WINS server. If your WINS server is a Samba machine, fill in
332 the Samba machine IP address in the "Primary WINS Server" field of
333 the "Control Panel->Network->Protocols->TCP->WINS Server" dialogs
334 in Windows 95 or Windows NT. To tell a Samba server the IP address
335 of the WINS server add the following line to the [global] section of
338 wins server = <name or IP address>
340 where <name or IP address> is either the DNS name of the WINS server
341 machine or its IP address.
343 Note that this line MUST NOT BE SET in the smb.conf file of the Samba
344 server acting as the WINS server itself. If you set both the
345 "wins support = yes" option and the "wins server = <name>" option then
346 nmbd will fail to start.
348 There are two possible scenarios for setting up cross subnet browsing.
349 The first details setting up cross subnet browsing on a network containing
350 Windows 95, Samba and Windows NT machines that are not configured as
351 part of a Windows NT Domain. The second details setting up cross subnet
352 browsing on networks that contain NT Domains.
354 Setting up Browsing in a WORKGROUP
355 ==================================
357 To set up cross subnet browsing on a network containing machines
358 in up to be in a WORKGROUP, not an NT Domain you need to set up one
359 Samba server to be the Domain Master Browser (note that this is *NOT*
360 the same as a Primary Domain Controller, although in an NT Domain the
361 same machine plays both roles). The role of a Domain master browser is
362 to collate the browse lists from local master browsers on all the
363 subnets that have a machine participating in the workgroup. Without
364 one machine configured as a domain master browser each subnet would
365 be an isolated workgroup, unable to see any machines on any other
366 subnet. It is the presense of a domain master browser that makes
367 cross subnet browsing possible for a workgroup.
369 In an WORKGROUP environment the domain master browser must be a
370 Samba server, and there must only be one domain master browser per
371 workgroup name. To set up a Samba server as a domain master browser,
372 set the following option in the [global] section of the smb.conf file :
376 The domain master browser should also preferrably be the local master
377 browser for its own subnet. In order to achieve this set the following
378 options in the [global] section of the smb.conf file :
382 preferred master = yes
385 The domain master browser may be the same machine as the WINS
386 server, if you require.
388 Next, you should ensure that each of the subnets contains a
389 machine that can act as a local master browser for the
390 workgroup. Any NT machine should be able to do this, as will
391 Windows 95 machines (although these tend to get rebooted more
392 often, so it's not such a good idea to use these). To make a
393 Samba server a local master browser set the following
394 options in the [global] section of the smb.conf file :
398 preferred master = yes
401 Do not do this for more than one Samba server on each subnet,
402 or they will war with each other over which is to be the local
405 The "local master" parameter allows Samba to act as a local master
406 browser. The "preferred master" causes nmbd to force a browser
407 election on startup and the "os level" parameter sets Samba high
408 enough so that it should win any browser elections.
410 If you have an NT machine on the subnet that you wish to
411 be the local master browser then you can disable Samba from
412 becoming a local master browser by setting the following
413 options in the [global] section of the smb.conf file :
417 preferred master = no
420 Setting up Browsing in a DOMAIN
421 ===============================
423 If you are adding Samba servers to a Windows NT Domain then
424 you must not set up a Samba server as a domain master browser.
425 By default, a Windows NT Primary Domain Controller for a Domain
426 name is also the Domain master browser for that name, and many
427 things will break if a Samba server registers the Domain master
428 browser NetBIOS name (DOMAIN<1B>) with WINS instead of the PDC.
430 For subnets other than the one containing the Windows NT PDC
431 you may set up Samba servers as local master browsers as
432 described. To make a Samba server a local master browser set
433 the following options in the [global] section of the smb.conf
438 preferred master = yes
441 If you wish to have a Samba server fight the election with machines
442 on the same subnet you may set the "os level" parameter to lower
443 levels. By doing this you can tune the order of machines that
444 will become local master browsers if they are running. For
445 more details on this see the section "FORCING SAMBA TO BE THE MASTER"
448 If you have Windows NT machines that are members of the domain
449 on all subnets, and you are sure they will always be running then
450 you can disable Samba from taking part in browser elections and
451 ever becoming a local master browser by setting following options
452 in the [global] section of the smb.conf file :
456 preferred master = no
459 FORCING SAMBA TO BE THE MASTER
460 ==============================
462 Who becomes the "master browser" is determined by an election process
463 using broadcasts. Each election packet contains a number of parameters
464 which determine what precedence (bias) a host should have in the
465 election. By default Samba uses a very low precedence and thus loses
466 elections to just about anyone else.
468 If you want Samba to win elections then just set the "os level" global
469 option in smb.conf to a higher number. It defaults to 0. Using 34
470 would make it win all elections over every other system (except other
473 A "os level" of 2 would make it beat WfWg and Win95, but not NTAS. A
474 NTAS domain controller uses level 32.
476 The maximum os level is 255
478 If you want samba to force an election on startup, then set the
479 "preferred master" global option in smb.conf to "yes". Samba will
480 then have a slight advantage over other potential master browsers
481 that are not preferred master browsers. Use this parameter with
482 care, as if you have two hosts (whether they are windows 95 or NT or
483 samba) on the same local subnet both set with "preferred master" to
484 "yes", then periodically and continually they will force an election
485 in order to become the local master browser.
487 If you want samba to be a "domain master browser", then it is
488 recommended that you also set "preferred master" to "yes", because
489 samba will not become a domain master browser for the whole of your
490 LAN or WAN if it is not also a local master browser on its own
491 broadcast isolated subnet.
493 It is possible to configure two samba servers to attempt to become
494 the domain master browser for a domain. The first server that comes
495 up will be the domain master browser. All other samba servers will
496 attempt to become the domain master browser every 5 minutes. They
497 will find that another samba server is already the domain master
498 browser and will fail. This provides automatic redundancy, should
499 the current domain master browser fail.
502 MAKING SAMBA THE DOMAIN MASTER
503 ==============================
505 The domain master is responsible for collating the browse lists of
506 multiple subnets so that browsing can occur between subnets. You can
507 make samba act as the domain master by setting "domain master = yes"
508 in smb.conf. By default it will not be a domain master.
510 Note that you should NOT set Samba to be the domain master for a
511 workgroup that has the same name as an NT Domain.
513 When samba is the domain master and the master browser it will listen
514 for master announcements (made roughly every twelve minutes) from local
515 master browsers on other subnets and then contact them to synchronise
518 If you want samba to be the domain master then I suggest you also set
519 the "os level" high enough to make sure it wins elections, and set
520 "preferred master" to "yes", to get samba to force an election on
523 Note that all your servers (including samba) and clients should be
524 using a WINS server to resolve NetBIOS names. If your clients are only
525 using broadcasting to resolve NetBIOS names, then two things will occur:
527 a) your local master browsers will be unable to find a domain master
528 browser, as it will only be looking on the local subnet.
530 b) if a client happens to get hold of a domain-wide browse list, and
531 a user attempts to access a host in that list, it will be unable to
532 resolve the NetBIOS name of that host.
534 If, however, both samba and your clients are using a WINS server, then:
536 a) your local master browsers will contact the WINS server and, as long as
537 samba has registered that it is a domain master browser with the WINS
538 server, your local master browser will receive samba's ip address
539 as its domain master browser.
541 b) when a client receives a domain-wide browse list, and a user attempts
542 to access a host in that list, it will contact the WINS server to
543 resolve the NetBIOS name of that host. as long as that host has
544 registered its NetBIOS name with the same WINS server, the user will
545 be able to see that host.
547 NOTE ABOUT BROADCAST ADDRESSES
548 ==============================
550 If your network uses a "0" based broadcast address (for example if it
551 ends in a 0) then you will strike problems. Windows for Workgroups
552 does not seem to support a 0's broadcast and you will probably find
553 that browsing and name lookups won't work.
559 Samba now supports machines with multiple network interfaces. If you
560 have multiple interfaces then you will need to use the "interfaces"
561 option in smb.conf to configure them. See smb.conf(5) for details.