s3-rpc_server: Disable epmapper by default.
authorAndreas Schneider <asn@samba.org>
Wed, 31 Aug 2011 12:53:52 +0000 (14:53 +0200)
committerAndreas Schneider <asn@cryptomilk.org>
Wed, 31 Aug 2011 14:29:20 +0000 (16:29 +0200)
We need more testing in the real world. We need to be sure that if a
Windows client can access port 135 it doesn't require that a service is
available via ncacn_ip_tcp. If possible please enable it using the
following smb.conf options for testing:

  rpc_daemon:epmd = fork
  rpc_server:epmapper = external

Autobuild-User: Andreas Schneider <asn@cryptomilk.org>
Autobuild-Date: Wed Aug 31 16:29:20 CEST 2011 on sn-devel-104

source3/rpc_server/rpc_config.c

index 76df479cf41514995b586467ced29964da3a0b67..a1c639c4c767d51f28a439229242db57ec653fb7 100644 (file)
@@ -30,7 +30,7 @@ struct rpc_service_defaults {
        const char *name;
        const char *def_mode;
 } rpc_service_defaults[] = {
-       { "epmapper", "external" },
+       { "epmapper", "disabled" },
        /* { "spoolss", "embedded" }, */
        /* { "lsarpc", "embedded" }, */
        /* { "samr", "embedded" }, */
@@ -77,7 +77,7 @@ struct rpc_daemon_defaults {
        const char *name;
        const char *def_type;
 } rpc_daemon_defaults[] = {
-       { "epmd", "fork" },
+       { "epmd", "disabled" },
        /* { "spoolssd", "embedded" }, */
        /* { "lsasd", "embedded" }, */