From 84fba3c1bc962804259f201d465acfdf0cd3c6a8 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 10 Feb 2010 08:39:37 -0800 Subject: [PATCH] Change the default of "nmbd bind explicit broadcast" to "no" until the double processing problem in bug #7118 is fixed. Jeremy. --- docs-xml/smbdotconf/misc/nmbdbindexplicitbroadcast.xml | 5 ++--- source3/param/loadparm.c | 6 +++--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/docs-xml/smbdotconf/misc/nmbdbindexplicitbroadcast.xml b/docs-xml/smbdotconf/misc/nmbdbindexplicitbroadcast.xml index 3a44a69d543..8d2135b3ff7 100644 --- a/docs-xml/smbdotconf/misc/nmbdbindexplicitbroadcast.xml +++ b/docs-xml/smbdotconf/misc/nmbdbindexplicitbroadcast.xml @@ -7,11 +7,10 @@ This option causes nmbd 8 to explicitly bind to the - broadcast address of the local subnets. This is needed to make nmbd + broadcast address of the local subnets. This can be used to make nmbd work correctly in combination with the option. - You should not need to unset this option. -yes +no diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 8308e995660..3ada45e2ca7 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -4969,10 +4969,10 @@ static void init_globals(bool first_time_only) string_set(&Globals.szPidDir, get_dyn_PIDDIR()); string_set(&Globals.szSocketAddress, "0.0.0.0"); /* - * By default support explicit binding to broadcast - * addresses. + * By default don't support explicit binding to broadcast + * addresses (until the nmbd "process twice" bug is fixed). */ - Globals.bNmbdBindExplicitBroadcast = true; + Globals.bNmbdBindExplicitBroadcast = false; if (asprintf(&s, "Samba %s", samba_version_string()) < 0) { smb_panic("init_globals: ENOMEM"); -- 2.11.4.GIT