Active Directory ドメインに参加する2023/06/15 |
Windows の Active Directory ドメインに参加します。
ローカルネットワーク内に Active Directory Domain Service が稼働していることが前提です。
当例では、以下のような Active Directory ドメイン環境で設定します。
|
|||||||||||
[1] | 必要なパッケージをインストールしておきます。 |
root@dlp:~# apt -y install realmd sssd sssd-tools libnss-sss libpam-sss adcli samba-common-bin oddjob oddjob-mkhomedir packagekit
|
[2] | Active Directory ドメインに参加します。 |
domain srv.world search srv.world nameserver 10.0.0.100 # * resolvconf や Networkmanager を使用中の場合は # それぞれのプログラムが必要とする箇所を変更 # 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 Serverworld@srv.world uid=1065401103(serverworld@srv.world) gid=1065400513(domain users@srv.world) groups=1065400513(domain users@srv.world),1065401153(esx admins@srv.world),1065400512(domain admins@srv.world),1065400572(denied rodc password replication group@srv.world) # 最終行に追記 : ログイン時にホームディレクトリを自動作成 session optional pam_mkhomedir.so skel=/etc/skel umask=077 # 任意の AD ユーザーでログイン可能か確認 root@dlp:~# exit
logout Debian GNU/Linux 12 dlp.srv.world ttyS0 dlp login: serverworld@srv.world Password: Linux dlp.srv.world 6.1.0-9-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.27-1 (2023-05-08) x86_64 The programs included with the Debian GNU/Linux system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law. 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:~#
root@dlp:~# systemctl restart sssd id Administrator uid=1065400500(administrator) gid=1065400513(domain users) groups=1065400513(domain users),1065401153(esx admins),1065400572(denied rodc password replication group),1065400512(domain admins),1065400518(schema admins),1065400520(group policy creator owners),1065400519(enterprise admins) |
[4] |
AD ユーザーの UID/GID はランダムに割り当てられますが、固定したい場合は、以下のように設定します。
事前に、こちらを参考に Active Directory 側で
AD ユーザーに UNIX 属性を追加しておきます。
次に Debian 側で SSSD の設定を変更します。
当例ではリンク先の通り、[uidNumber/gidNumber] 属性を追加して進めます。 |
root@dlp:~#
vi /etc/sssd/sssd.conf # 17行目 : 変更 ldap_id_mapping = False
# 最終行に追記 ldap_user_uid_number = uidNumber ldap_user_gid_number = gidNumber id serverworld uid=5000(serverworld) gid=100(users) groups=100(users) |
Sponsored Link |