Sudo の設定2015/05/27 |
root権限の委譲や権限の分離、rootパスワードの使いまわし防止のため Sudo を設定しておきます。
なお、Sudo は最小構成インストールでもデフォルトで入ってきていますので、新たにインストールする必要はありません。
|
|
[1] | root権限を特定のユーザーに全て委譲する。 |
[root@dlp ~]#
# 最終行に追記: fedoraはroot権限を全て利用できる fedora ALL=(ALL) ALL # 書式 ⇒ 委譲先 ホスト=(委譲元) コマンド # ユーザー「fedora」で動作確認 [fedora@dlp ~]$ /bin/cat /etc/shadow cat: /etc/shadow: Permission denied # 正常に拒否される
Password:
smmsp:!!:15721::::::# 自身のパスワード sshd:!!:15721:::::: # 実行できた
|
[2] | [1]の設定に加えて、しかし、特定のコマンドは許可しない。 |
[root@dlp ~]#
# 適当に49行目あたりに追記: システム停止系のコマンドエイリアス追記 Cmnd_Alias SHUTDOWN = /sbin/halt, /sbin/shutdown, \ /sbin/poweroff, /sbin/reboot, /sbin/init # [1]の設定部分に追記 ( エイリアス「SHUTDOWN」は許可しない ) fedora ALL=(ALL) ALL, !SHUTDOWN
# ユーザー「fedora」で動作確認 [fedora@dlp ~]$ Password: Sorry, user fedora is not allowed to execute '/sbin/shutdown -r now' as root on dlp.srv.world. # 拒否された
|
[3] | root権限が必要な特定のコマンドを特定のグループに属するユーザーに委譲する。 |
[root@dlp ~]#
# 適当に51行目あたりに追記: ユーザー管理系のコマンドエイリアス追記 Cmnd_Alias USERMGR = /sbin/useradd, /sbin/userdel, /sbin/usermod, \ /bin/passwd # 最終行: グループ「usermgr」に属するユーザーに「USERMGR」で定義したコマンド許可設定追記 %usermgr ALL=(ALL) USERMGR # ユーザー「fedora」で動作確認 [fedora@dlp ~]$ [fedora@dlp ~]$ # 正常に完了 [fedora@dlp ~]$ Changing password for user testuser. New UNIX password: # testuserのパスワード設定 Retype new UNIX password: passwd: all authentication tokens updated successfully. |
[4] | root権限が必要な特定のコマンドを特定のユーザーに委譲する。 |
[root@dlp ~]#
# 最終行: それぞれのユーザーに特定のコマンドの許可設定追記 fedora ALL=(ALL) /sbin/visudo cent ALL=(ALL) /sbin/useradd, /sbin/userdel, /sbin/usermod, /bin/passwd ubuntu ALL=(ALL) /bin/vi # ユーザー「fedora」で動作確認 # 正常に開き保存編集もできる ## Sudoers allows particular users to run various commands as ## the root user, without needing the root password. ## # ユーザー「cent」で動作確認 [cent@dlp ~]$
[cent@dlp ~]$
# 正常に完了 # ユーザー「ubuntu」で動作確認 # 正常に開き保存編集もできる # grub.conf generated by anaconda # # Note that you do not have to rerun grub after making changes to this file # NOTICE: You have a /boot partition. This means that |
[5] | デフォルトでは /var/log/secure に sudo の実行ログが残ります。
/var/log/secure には sudo のログのみではないため、sudo のログのみを見たいときは、何かしらする必要があります。 「grep 'sudo' /var/log/secure」でsudoのみ拾って見るのもよいし、または以下のように sudo のログを別ファイルに記録していくようにもできます。 |
[root@dlp ~]#
# 最終行に追記 Defaults syslog=local1
[root@dlp ~]#
vi /etc/rsyslog.conf # 59,60行目: 追記 *.info;mail.none;authpriv.none;cron.none; local1.none /var/log/messageslocal1.* /var/log/sudo.log # The authpriv file has restricted access. authpriv.* /var/log/secure[root@dlp ~]# systemctl restart rsyslog |
Sponsored Link |