- Enable ssl for replication.

- Add replication management script that allows listing
  adding, and deleting replicas.
This commit is contained in:
Karl MacMillan 0001-01-01 00:00:00 +00:00
parent 5f6a67da4b
commit 19bdd1f166
5 changed files with 129 additions and 4 deletions

View File

@ -8,6 +8,7 @@ sbin_SCRIPTS = \
ipa-server-install \
ipa-replica-install \
ipa-replica-prepare \
ipa-replica-manage \
ipa-server-certinstall \
$(NULL)

View File

@ -121,7 +121,7 @@ def main():
config = ReplicaConfig()
read_info(dir, config)
config.host_name = get_host_name()
config.repl_password = "box"
config.repl_password = ipautil.ipa_generate_password()
config.dir = dir
# get the directory manager password

View File

@ -0,0 +1,119 @@
#! /usr/bin/python -E
# Authors: Karl MacMillan <kmacmillan@mentalrootkit.com>
#
# Copyright (C) 2007 Red Hat
# see file 'COPYING' for use and warranty information
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; version 2 or later
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
import sys
sys.path.append("/usr/share/ipa")
import getpass, ldap, re, krbV
from ipa import ipautil
from ipaserver import replication, ipaldap, dsinstance, installutils
def parse_options():
from optparse import OptionParser
parser = OptionParser()
parser.add_option("-H", "--host", dest="host", help="starting host")
parser.add_option("-p", "--password", dest="dirman_passwd", help="Directory Manager password")
parser.add_option("-v", "--verbose", dest="verbose", action="store_true", default=False,
help="provide additional information")
options, args = parser.parse_args()
if not len(args) or not ("list" in args[0] or "add" in args[0] or "del" in args[0]):
parser.error("must provide a comment [list | add | del]")
return options, args
def get_realm_name():
c = krbV.default_context()
return c.default_realm
def get_suffix():
suffix = ipaldap.IPAdmin.normalizeDN(dsinstance.realm_to_suffix(get_realm_name()))
return suffix
def get_host_name():
hostname = installutils.get_fqdn()
try:
installutils.verify_fqdn(hostname)
except RuntimeError, e:
logging.error(str(e))
sys.exit(1)
return hostname
def list_masters(replman, verbose):
dns = replman.find_replication_dns(replman.conn)
for dn in dns:
entry = replman.conn.search_s(dn, ldap.SCOPE_SUBTREE)[0]
cn = entry.cn
other = re.search("meTo([a-zA-Z\.]*)[0-9]*", cn).groups()[0]
print other
if verbose:
print " last update status: %s" % entry.nsds5replicalastupdatestatus
print " last update ended: %s" % str(ipautil.parse_generalized_time(entry.nsds5replicalastupdateend))
def del_master(replman, hostname):
dirman_passwd = getpass.getpass("Directory Manager password (%s): " % hostname)
other_replman = replication.ReplicationManager(hostname, dirman_passwd)
other_replman.suffix = get_suffix()
replman.delete_agreement(other_replman.conn)
other_replman.delete_agreement(replman.conn)
def add_master(replman, hostname):
replman.setup_replication(hostname, get_realm_name())
def main():
options, args = parse_options()
if options.dirman_passwd:
dirman_passwd = options.dirman_passwd
else:
dirman_passwd = getpass.getpass("Directory Manager password: ")
if options.host:
host = options.host
else:
host = get_host_name()
r = replication.ReplicationManager(host, dirman_passwd)
r.suffix = get_suffix()
if args[0] == "list":
list_masters(r, options.verbose)
elif args[0] == "del":
if len(args) != 2:
print "must provide hostname of master to delete"
sys.exit(1)
del_master(r, args[1])
elif args[0] == "add":
if len(args) != 2:
print "must provide hostname of master to add"
sys.exit(1)
add_master(r, args[1])
try:
main()
except Exception, e:
print "unexpected error: %s" % str(e)

View File

@ -93,6 +93,7 @@ fi
%{_sbindir}/ipa-server-install
%{_sbindir}/ipa-replica-install
%{_sbindir}/ipa-replica-prepare
%{_sbindir}/ipa-replica-manage
%{_sbindir}/ipa-server-certinstall
%{_sbindir}/ipa_kpasswd
%{_sbindir}/ipa-webgui

View File

@ -23,7 +23,7 @@ import ipaldap, ldap, dsinstance
from ipa import ipaerror
DIRMAN_CN = "cn=directory manager"
PORT = 389
PORT = 636
TIMEOUT = 120
class ReplicationManager:
@ -43,9 +43,9 @@ class ReplicationManager:
self.suffix = ""
def find_replication_dns(self, conn):
filt = "(objectlcass=nsds5ReplicationAgreement)"
filt = "(objectclass=nsDS5ReplicationAgreement)"
try:
ents = conn.search_s("cn=mapping tree,cn-config", ldap.SCOPE_SUBTREE, filt, ["cn"])
ents = conn.search_s("cn=mapping tree,cn=config", ldap.SCOPE_SUBTREE, filt)
except ldap.NO_SUCH_OBJECT:
return []
return [ent.dn for ent in ents]
@ -223,12 +223,16 @@ class ReplicationManager:
entry.setValues('nsds5replicabindmethod', 'simple')
entry.setValues('nsds5replicaroot', self.suffix)
entry.setValues('nsds5replicaupdateschedule', '0000-2359 0123456')
entry.setValues('nsds5replicatransportinfo', 'SSL')
entry.setValues('description', "me to %s%d" % (b.host, PORT))
a.add_s(entry)
entry = a.waitForEntry(entry)
def delete_agreement(self, other):
cn, dn = self.agreement_dn(other)
return self.conn.deleteEntry(dn)
def check_repl_init(self, conn, agmtdn):
done = False