[svn-commits] russell: branch group/res_config_ldap r39402 - /team/group/res_config_ldap/doc/

svn-commits at lists.digium.com svn-commits at lists.digium.com
Tue Aug 8 13:02:37 MST 2006


Author: russell
Date: Tue Aug  8 15:02:37 2006
New Revision: 39402

URL: http://svn.digium.com/view/asterisk?rev=39402&view=rev
Log:
add ldap.txt

Added:
    team/group/res_config_ldap/doc/ldap.txt   (with props)

Added: team/group/res_config_ldap/doc/ldap.txt
URL: http://svn.digium.com/view/asterisk/team/group/res_config_ldap/doc/ldap.txt?rev=39402&view=auto
==============================================================================
--- team/group/res_config_ldap/doc/ldap.txt (added)
+++ team/group/res_config_ldap/doc/ldap.txt Tue Aug  8 15:02:37 2006
@@ -1,0 +1,65 @@
+Asterisk Realtime LDAP Driver
+---------------------------
+
+With this driver Asterisk can retrieve information from a LDAP drectory, including 
+sip/iax users, extensions and configuration.
+
+See configs/res_ldap.conf.sample for a configuration file sample
+
+
+Here is a LDAP dif sample:
+
+# Base SIP Phones Entry
+dn: uid=phone-base,dc=myDomain,dc=myDomainExt
+objectClass: top
+objectClass: oxyPBXAccount
+objectClass: oxyPBXAccountSIP
+uid: phone-base
+oxyPBXAccountAccountingCode: baseacccode
+oxyPBXAccountHost: dynamic
+preferredLanguage: FR
+oxyPBXAccountAMAFlags: billing
+oxyPBXAccountContext: ldaptest
+
+
+# A Phone. realmedPassword md5 hash should be the result of 
+#  echo -n "UID:SIPRealm:Password" | md5sum
+dn: uid=phone-test,dc=myDomain,dc=myDomainExt
+objectClass: top
+objectClass: oxyPBXAccount
+objectClass: oxyPBXAccountSIP
+uid: phone-test
+oxyPBXAccountAccountingCode: acc-phone-base
+oxyPBXAccountFullContact: Noone <1234>
+oxyPBXAccountCallerID: 1234
+oxyPBXAccountBaseDN: uid=phone-base,dc=myDomain,dc=myDomainExt
+realmedPassword: {MD5}f67965da780bf9c70d6e337f938cee6f
+
+
+# extensions, 
+dn: ou=extensions,dc=myDomain,dc=myDomainExt
+ou: extensions
+objectClass: top
+objectClass: organizationalUnit
+
+# Extension 100 Priority 1 in context ldaptest
+dn: cn=100-1,ou=extensions,dc=myDomain,dc=myDomainExt
+oxyPBXExtensionApplication: NoOp
+oxyPBXExtensionApplicationData: TEST LDAP
+objectClass: top
+objectClass: oxyPBXExtension
+oxyPBXExtensionExten: 100
+oxyPBXExtensionContext: ldaptest
+cn: 100-1
+oxyPBXExtensionPriority: 1
+
+# Extension 100 Priority 1 in context ldaptest
+dn: cn=100-2,ou=extensions,dc=myDomain,dc=myDomainExt
+objectClass: top
+objectClass: oxyPBXExtension
+oxyPBXExtensionExten: 100
+oxyPBXExtensionContext: ldaptest
+cn: 100-2
+oxyPBXExtensionPriority: 2
+oxyPBXExtensionApplication: hangup
+

Propchange: team/group/res_config_ldap/doc/ldap.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: team/group/res_config_ldap/doc/ldap.txt
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: team/group/res_config_ldap/doc/ldap.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain



More information about the svn-commits mailing list