PHP 通過LDAP協議,操作Windows Active Directory

來源:互聯網
上載者:User

標籤:style   blog   class   code   java   c   

原文地址:http://hi.baidu.com/lllangxx/item/3ccb7cdfa13b56eb3dc2cb39

一、學習如何管理Active Directory

       Active Directory 循序漸進系列指南

 

二、ADExplorer

     到網上下載一個ADExplorer,它是Active Directory瀏覽器,可以讓我們更加清楚認識Active Directory的資料存放區方式及格式。

三、域外訪問Active Directory

     確保將域外電腦的 DNS 分析 程式配置 為與 Active Directory 運用 相同的 DNS 名稱伺服器;在大多數情況下,假定您要運用 Active Directory 整合的 DNS,則我們把此域外電腦的DNS設定為此Active Directory伺服器IP地址。

      詳細內容請參照《 運用 Active Directory 執行 Linux 用戶端驗證 》

 

四、php 代碼

      為了使用方便,我使用 adLDAP 來進行編程,這樣可以簡便很多。

<?phprequire_once(dirname(__FILE__) . ‘/adLDAP.php‘); $options=array();try {    $options[‘account_suffix‘]="@mydomain.com";    $options[‘base_dn‘]="OU=Accounts,DC=mydomain,DC=com";//    $options[‘domain_controllers‘]=array("mydomain.com");    $options[‘ad_username‘]="administrator";    $options[‘ad_password‘]="123456";    $ldap = new adLDAP($options);}catch (adLDAPException $e) {    echo $e; exit();   }//var_dump($ldap); echo ("<pre>\n");$result=$ldap->authenticate("qiujiayu","qiujiayu");var_dump($result);echo("----------------------------------------------------");$result=$ldap->folder_list(array(‘Marketing‘), ADLDAP_FOLDER, true,‘contact‘);var_dump ($result); echo("----------------------------------------------------"); $result=$ldap->all_users();var_dump ($result); echo("----------------------------------------------------"); $result=$ldap->all_contacts();var_dump ($result); echo(json_encode( ($ldap->contact_info($result[0],array(‘telephonenumber‘)))));echo("----------------------------------------------------");?>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.