Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hardillb/node-red-contrib-ldap-auth
A Node-RED authentication plugin that uses LDAP as the backend user store.
https://github.com/hardillb/node-red-contrib-ldap-auth
Last synced: 3 months ago
JSON representation
A Node-RED authentication plugin that uses LDAP as the backend user store.
- Host: GitHub
- URL: https://github.com/hardillb/node-red-contrib-ldap-auth
- Owner: hardillb
- License: apache-2.0
- Created: 2015-05-11T09:03:37.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-11-10T12:48:49.000Z (about 2 years ago)
- Last Synced: 2024-09-23T21:24:40.863Z (4 months ago)
- Language: JavaScript
- Size: 39.1 KB
- Stars: 8
- Watchers: 6
- Forks: 13
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Node-red-contrib-ldap-auth
This is a Node-RED authentication plugin that uses LDAP as the backend user store.
It can be installed with:
npm install -g node-red-contrib-ldap-auth
And then to enable it add the following to your settings.js file:
adminAuth: require('node-red-contrib-ldap-auth').setup({
uri:'ldap://url.to.server',
base: 'ou=group,o=company.com',
filterTemplate: 'mail={{username}}'
}),## Bind Authentication
If your LDAP server requires authentication before it can search, you can use the ``bind_dn`` and ``bind_pw`` parameters:
adminAuth: require('node-red-contrib-ldap-auth').setup({
uri:'ldap://url.to.server',
base: 'ou=group,o=company.com',
filterTemplate: 'mail={{username}}',
bind_dn: 'cn=authuser,o=company.com',
bind_pw: 'yourlittlesecret',
}),## Security Group Filtering
If your LDAP login needs to be restricted to a specifc group, you can use an advanced ``filterTemplate`` to filter users to a specific group.
```js
filterTemplate: '(&(sAMAccountName={{username}})(memberOf=CN=ExampleGroup,OU=Security Groups,OU=Groups,OU=Corp,DC=example,DC=com))',
````You can also combine multiple filters, see https://ldap.com/ldap-filters/.
* AND Filters `(&()()())`
* OR Filters `(|()()())`
* Combined Filters `(&()(|()()))` (e.g. filter for multiple groups that should have access)## Certificate Verification
If your LDAP server is not using a verifiable SSL certificate, you can set the ``no_verify_ssl`` parameter to ``true`` (boolean) and it will not validate the connection.## Anonymous Access
To allow anonymous read access to the NodeRed Admin UI, you can set the ``anon_read`` parameter to ``true``.