diff options
author | Michael Adam <obnox@samba.org> | 2010-12-02 00:42:21 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-12-17 15:59:44 +0100 |
commit | b8f19df53e66bf0260b4ae6c49acea87ac379deb (patch) | |
tree | c42b0131fdb9a4dd757ed050d464922584de3920 /source3/utils | |
parent | b3d4b2052534395c97cd959db5db87f78d108d4e (diff) | |
download | samba-b8f19df53e66bf0260b4ae6c49acea87ac379deb.tar.gz samba-b8f19df53e66bf0260b4ae6c49acea87ac379deb.tar.xz samba-b8f19df53e66bf0260b4ae6c49acea87ac379deb.zip |
s3:net: disable dynamic dns updates at the end of "net ads join" in a cluster (bug #7871)
In a clustered environment, registering the set of ip addresses that are
assigned to the interfaces of the node that performs the join does usually
not have the desired effect, since the local interfaces do not carry
complete set of the cluster's public IP addresses. And it can also contain
internal addresses that should not be visible to the outside at all.
In order to do dns updates in a clustererd setup, use net ads dns register.
This fixes the net ads join part of bug #7871.
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/net_ads.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/source3/utils/net_ads.c b/source3/utils/net_ads.c index 0b2165d73fe..8f0d2fb8155 100644 --- a/source3/utils/net_ads.c +++ b/source3/utils/net_ads.c @@ -1407,6 +1407,23 @@ int net_ads_join(struct net_context *c, int argc, const char **argv) } #if defined(WITH_DNS_UPDATES) + /* + * In a clustered environment, don't do dynamic dns updates: + * Registering the set of ip addresses that are assigned to + * the interfaces of the node that performs the join does usually + * not have the desired effect, since the local interfaces do not + * carry the complete set of the cluster's public IP addresses. + * And it can also contain internal addresses that should not + * be visible to the outside at all. + * In order to do dns updates in a clustererd setup, use + * net ads dns register. + */ + if (lp_clustering()) { + d_fprintf(stderr, _("Not doing automatic DNS update in a" + "clustered setup.\n")); + goto done; + } + if (r->out.domain_is_ad) { /* We enter this block with user creds */ ADS_STRUCT *ads_dns = NULL; @@ -1433,6 +1450,8 @@ int net_ads_join(struct net_context *c, int argc, const char **argv) ads_destroy(&ads_dns); } #endif + +done: TALLOC_FREE(r); TALLOC_FREE( ctx ); |