summaryrefslogtreecommitdiffstats
path: root/VERSION
diff options
context:
space:
mode:
authorAlexander Bokovoy <abokovoy@redhat.com>2015-06-05 12:57:02 +0000
committerTomas Babej <tbabej@redhat.com>2015-07-08 01:56:52 +0200
commitd5aa1ee04e2e4923f42bccd60d51f063df144a0b (patch)
tree74df23dea20969b91cc881eb79ae13346c4012ae /VERSION
parent14992a07fc7ea6bb5c028e5fefaf7394af00a555 (diff)
downloadfreeipa-d5aa1ee04e2e4923f42bccd60d51f063df144a0b.tar.gz
freeipa-d5aa1ee04e2e4923f42bccd60d51f063df144a0b.tar.xz
freeipa-d5aa1ee04e2e4923f42bccd60d51f063df144a0b.zip
trusts: add support for one-way trust and switch to it by default
One-way trust is the default now, use 'trust add --two-way ' to force bidirectional trust https://fedorahosted.org/freeipa/ticket/4959 In case of one-way trust we cannot authenticate using cross-realm TGT against an AD DC. We have to use trusted domain object from within AD domain and access to this object is limited to avoid compromising the whole trust configuration. Instead, IPA framework can call out to oddjob daemon and ask it to run the script which can have access to the TDO object. This script (com.redhat.idm.trust-fetch-domains) is using cifs/ipa.master principal to retrieve TDO object credentials from IPA LDAP if needed and then authenticate against AD DCs using the TDO object credentials. The script pulls the trust topology out of AD DCs and updates IPA LDAP store. Then IPA framework can pick the updated data from the IPA LDAP under normal access conditions. Part of https://fedorahosted.org/freeipa/ticket/4546 Reviewed-By: Tomas Babej <tbabej@redhat.com>
Diffstat (limited to 'VERSION')
-rw-r--r--VERSION4
1 files changed, 2 insertions, 2 deletions
diff --git a/VERSION b/VERSION
index bd69d1cc8..16bd11798 100644
--- a/VERSION
+++ b/VERSION
@@ -90,5 +90,5 @@ IPA_DATA_VERSION=20100614120000
# #
########################################################
IPA_API_VERSION_MAJOR=2
-IPA_API_VERSION_MINOR=143
-# Last change: ab - trusts: pass AD DC hostname if specified explicitly
+IPA_API_VERSION_MINOR=144
+# Last change: ab - trusts: add support for one-way trust and switch to it by default