From eefe65c04299b453767473c1ba96614edcf13379 Mon Sep 17 00:00:00 2001 From: Roman Date: Sun, 16 Oct 2022 16:10:47 +0200 Subject: [PATCH] example_configs: Add Dell iDrac --- README.md | 1 + example_configs/dell_idrac.md | 57 +++++++++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 example_configs/dell_idrac.md diff --git a/README.md b/README.md index 6695731..f6d563e 100644 --- a/README.md +++ b/README.md @@ -228,6 +228,7 @@ folder for help with: - [Authelia](example_configs/authelia_config.yml) - [Bookstack](example_configs/bookstack.env.example) - [Calibre-Web](example_configs/calibre_web.md) + - [Dell iDRAC](example_configs/dell_idrac.md) - [Dokuwiki](example_configs/dokuwiki.md) - [Dolibarr](example_configs/dolibarr.md) - [Emby](example_configs/emby.md) diff --git a/example_configs/dell_idrac.md b/example_configs/dell_idrac.md new file mode 100644 index 0000000..3840e61 --- /dev/null +++ b/example_configs/dell_idrac.md @@ -0,0 +1,57 @@ +# Configuration for Dell iDRAC + +## iDRAC 9 + +iDRAC 9 can only be connected to LDAPS, so make sure you have that enabled. + +The settings then are as follows: + +### Use Distinguished Name to Search Group Membership +``` +Enabled +``` + +### LDAP Server Address +``` +Your server address eg. localhost +``` + +### LDAP Server Port +``` +Your LDAPS port, eg. 6360 or 636 +``` + +### Bind DN +``` +uid=admin,ou=people,dc=example,dc=com +``` + +### Bind Password +``` +Enabled +``` + +### Bind Password +``` +Your admin user password +``` + +### Attribute of User Login +``` +uid +``` + +### Attribute of Group Membership +``` +member +``` + +### Search Filter +``` +(&(objectClass=person)(memberof=cn=idrac_users,ou=groups,dc=example,dc=com)) +``` + +For the Group Role Mappings, you define groups by their full `Group DN`, eg. +``` +cn=idrac_users,ou=groups,dc=example,dc=com +```