Likewise Open 5.0.3964 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Likewise Open 5.0.3964 (Default branch)
# 1  
Old 01-13-2009
Likewise Open 5.0.3964 (Default branch)

Likewise Open is an application that joins Linux,Unix, and Mac OS machines to Microsoft ActiveDirectory and securely authenticates users withtheir domain credentials. Features include:joining non-Windows systems to Active Directorydomains in a single step from the command line orfrom a GUI; authenticating users with a singleuser name and password; enforcing the samepassword policies for all platforms; supportingmultiple forests with one-way and two-way crossforest trusts; caching credentials in case yourdomain controller goes down; and providing singlesign-on for SSH and Putty. It does not requireActive Directory schema changes for installation.License: GNU General Public License v2Changes:
Improved performance. When a duplicate UID is found, it will go to AD to get info on a user rather than updating the cache. When a bad username/password is given to domainjoin, it will report "password is incorrect for this account" instead of "call to krb5 failed." Unix attributes from AD are no longer ignored in the default cell.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
DateTime::Format::Epoch::ActiveDirectory(3pm)		User Contributed Perl Documentation	     DateTime::Format::Epoch::ActiveDirectory(3pm)

NAME
DateTime::Format::Epoch::ActiveDirectory - Active Directory epoch seconds SYNOPSIS
use DateTime::Format::Epoch::ActiveDirectory; my $dt = DateTime::Format::Epoch::ActiveDirectory ->parse_datetime( 1051488000 ); DateTime::Format::Epoch::ActiveDirectory->format_datetime($dt); # 1051488000 my $formatter = DateTime::Format::Epoch::ActiveDirectory->new(); my $dt2 = $formatter->parse_datetime( 1051488000 ); $formatter->format_datetime($dt2); DESCRIPTION
This module can convert a DateTime object (or any object that can be converted to a DateTime object) to the number of seconds since the epoch used in Microsoft Active Directory. Note that this epoch is defined in the local time zone. This means that these two pieces of code will print the same number of seconds, even though they represent two datetimes 6 hours apart: $dt = DateTime->new( year => 2003, month => 5, day => 2, time_zone => 'Europe/Amsterdam' ); print $formatter->format_datetime($dt); $dt = DateTime->new( year => 2003, month => 5, day => 2, time_zone => 'America/Chicago' ); print $formatter->format_datetime($dt); METHODS
Most of the methods are the same as those in DateTime::Format::Epoch. The only difference is the constructor. o new() Constructor of the formatter/parser object. It has no parameters. SUPPORT
Support for this module is provided via the datetime@perl.org email list. See http://lists.perl.org/ for more details. AUTHOR
Eugene van der Pijll <pijll@gmx.net> COPYRIGHT
Copyright (c) 2004 Eugene van der Pijll. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
DateTime datetime@perl.org mailing list perl v5.10.1 2007-12-03 DateTime::Format::Epoch::ActiveDirectory(3pm)