tests: Add test_preserve_case.sh
[Samba.git] / docs-xml / smbdotconf / misc / rpcserver.xml
blobd28587258407a2b782aa096f8e4fb312018ed72e
1 <samba:parameter name="rpc_server:SERVER"
2                  context="G"
3                  type="string"
4                  xmlns:samba="http://www.samba.org/samba/DTD/samba-doc">
5 <description>
6         <para>
7                 With this option you can define if a rpc service should be
8                 running internal/embedded in smbd or should be redirected to an
9                 external daemon like Samba4, the endpoint mapper daemon, the
10                 spoolss daemon or the new LSA service daemon. The rpc_server
11                 prefix must be followed by the pipe name, and a value.
12         </para>
14         <para>
15                 This option can be set for each available rpc service in Samba.
16                 The following list shows all available pipe names services you
17                 can modify with this option.
18         </para>
20         <itemizedlist>
21                 <listitem><para>epmapper     - Endpoint Mapper</para></listitem>
22                 <listitem><para>winreg       - Remote Registry Service</para></listitem>
23                 <listitem><para>srvsvc       - Remote Server Services</para></listitem>
24                 <listitem><para>lsarpc       - Local Security Authority</para></listitem>
25                 <listitem><para>samr         - Security Account Management</para></listitem>
26                 <listitem><para>netlogon     - Netlogon Remote Protocol</para></listitem>
27                 <listitem><para>netdfs       - Settings for Distributed File System</para></listitem>
28                 <listitem><para>dssetup      - Active Directory Setup</para></listitem>
29                 <listitem><para>wkssvc       - Workstation Services</para></listitem>
30                 <listitem><para>spoolss      - Network Printing Spooler</para></listitem>
31                 <listitem><para>svcctl       - Service Control</para></listitem>
32                 <listitem><para>ntsvcs       - Plug and Play Services</para></listitem>
33                 <listitem><para>eventlog     - Event Logger</para></listitem>
34                 <listitem><para>initshutdown - Init Shutdown Service</para></listitem>
35         </itemizedlist>
37         <para>
38                 Three possible values currently supported are:
39                 <command moreinfo="none">embedded</command>
40                 <command moreinfo="none">external</command>
41                 <command moreinfo="none">disabled</command>
42         </para>
44         <para>
45                 The classic method is to run every pipe as an internal function
46                 <emphasis>embedded</emphasis> in smbd. The defaults may vary
47                 depending on the service.
48         </para>
50         <para>
51                 Choosing the <emphasis>external</emphasis> option allows to run
52                 a separate daemon or even a completely independent (3rd party)
53                 server capable of interfacing with samba via the MS-RPC
54                 interface over named pipes.
55         </para>
57         <para>
58                 Currently in Samba3 we support three daemons, spoolssd, epmd and
59                 lsasd. These daemons can be enabled using the
60                 <emphasis>rpc_daemon</emphasis> option. For spoolssd you have
61                 to enable the daemon and proxy the named pipe with:
62         </para>
64         <para>
65                 Examples:
66                 <programlisting>
67                         rpc_daemon:lsasd = fork
68                         rpc_server:lsarpc = external
69                         rpc_server:samr = external
70                         rpc_server:netlogon = external
72                         rpc_server:spoolss = external
73                         rpc_server:epmapper = disabled
74                 </programlisting>
75         </para>
77         <para>
78                 There is one special option which allows you to enable rpc
79                 services to listen for ncacn_ip_tcp connections too. Currently
80                 this is only used for testing and doesn't scale!
82                 <programlisting>
83                         rpc_server:tcpip = yes
84                 </programlisting>
85         </para>
87 </description>
89 <value type="default">embedded</value>
90 </samba:parameter>