Debian 9 Stretch
Sponsored Link

Active Directory ドメインに参加する2017/06/26

 
Windows の Active Directory ドメインに参加します。
LAN 内に Windows Active Directory Domain Service が稼働していることが前提です。
ここでは例として、以下のような Active Directory ドメイン環境で設定します。
ドメインサーバー : Windows Server 2016
ドメイン名 : FD3S01
レルム : SRV.WORLD
ホスト名 : fd3s.srv.world
[1] 必要なものをインストールしておきます。
root@dlp:~#
apt -y install realmd sssd sssd-tools adcli krb5-user packagekit samba-common samba-common-bin samba-libs resolvconf
# レルム名を指定

 +------------------+ Configuring Kerberos Authentication +------------------+
 | When users attempt to use Kerberos and specify a principal or user name   |
 | without specifying what administrative Kerberos realm that principal      |
 | belongs to, the system appends the default realm.  The default realm may  |
 | also be used as the realm of a Kerberos service running on the local      |
 | machine.  Often, the default realm is the uppercase version of the local  |
 | DNS domain.                                                               |
 |                                                                           |
 | Default Kerberos version 5 realm:                                         |
 |                                                                           |
 | SRV.WORLD________________________________________________________________ |
 |                                                                           |
 |                                  <Ok>                                     |
 |                                                                           |
 +---------------------------------------------------------------------------+
# AD DS のホスト名を指定

     +--------------+ Configuring Kerberos Authentication +---------------+
     | Enter the hostnames of Kerberos servers in the SRV.WORLD           |
     | Kerberos realm separated by spaces.                                |
     |                                                                    |
     | Kerberos servers for your realm:                                   |
     |                                                                    |
     | fd3s.srv.world____________________________________________________ |
     |                                                                    |
     |                               <Ok>                                 |
     |                                                                    |
     +--------------------------------------------------------------------+
# AD DS のホスト名を指定

 +------------------+ Configuring Kerberos Authentication +------------------+
 | Enter the hostname of the administrative (password changing) server for   |
 | the SRV.WORLD Kerberos realm.                                             |
 |                                                                           |
 | Administrative server for your Kerberos realm:                            |
 |                                                                           |
 | fd3s.srv.world___________________________________________________________ |
 |                                                                           |
 |                                  <Ok>                                     |
 |                                                                           |
 +---------------------------------------------------------------------------+
[2] Active Directory ドメインに参加します。
# 参照する DNS を AD に変更しておく

root@dlp:~#
vi /etc/network/interfaces
dns-nameservers
10.0.0.100
root@dlp:~#
systemctl restart ifup@ens3 resolvconf
root@dlp:~#
vi /etc/pam.d/common-session
# 必要があれば、最終行に追記 ( ログイン時にホームディレクトリを自動作成 )

session optional        pam_mkhomedir.so skel=/etc/skel umask=077

# Active Directory ドメインを discover する

root@dlp:~#
realm discover SRV.WORLD

srv.world
  type: kerberos
  realm-name: SRV.WORLD
  domain-name: srv.world
  configured: no
  server-software: active-directory
  client-software: sssd
  required-package: sssd-tools
  required-package: sssd
  required-package: libnss-sss
  required-package: libpam-sss
  required-package: adcli
  required-package: samba-common-bin

# Active Directory ドメインに join する

root@dlp:~#
realm join SRV.WORLD

Password for Administrator:    
# AD の Administrator パスワード
# 任意の AD ユーザーの情報が取得できるか確認

root@dlp:~#
id FD3S01\\Serverworld

uid=1066601000(serverworld@srv.world) gid=1066600513(domain users@srv.world) groups=1066600513(domain users@srv.world
# 任意の AD ユーザーに遷移可能か確認

root@dlp:~#
su - FD3S01\\Serverworld

Creating directory '/home/serverworld@srv.world'.
serverworld@srv.world@dlp:~$    
# 遷移できた
[3] AD ユーザーを指定する際に、ドメイン名を省略したい場合は、以下のように設定します。
root@dlp:~#
vi /etc/sssd/sssd.conf
# 16行目:変更

use_fully_qualified_names =
False
root@dlp:~#
systemctl restart sssd

root@dlp:~#
id Administrator

uid=1066600500(administrator) gid=1066600513(domain users) groups=1066600513(domain users),
1066600518(schema admins),1066600572(denied rodc password replication group),
1066600520(group policy creator owners),1066600512(domain admins),1066600519(enterprise admins)
関連コンテンツ