42a05b069f
first working version |
||
---|---|---|
src | ||
ssl | ||
.eslintrc.js | ||
.gitignore | ||
.prettierrc | ||
config.js | ||
eapol_test | ||
notes | ||
package-lock.json | ||
package.json | ||
README.md | ||
tsconfig.eslint.json | ||
tsconfig.json |
Basic RADIUS Server for node.js for Google LDAP Service and WPA2 Enteprise WLAN Authentification.
- supports LDAP Authentification Backend
- supports WPA2 Entprise (TTLS over PAP)
Protect your WIFI access with a username and password by a credential provider you already use!
Known Issues / Disclaimer
This is a first implementation draft, which is currently only working with a nodejs fork (see https://github.com/nodejs/node/pull/31814).
- PAP / CHAP RFC not found to implement this correctly
- a lot of bugs
CONTRIBUTIONS WELCOME! If you are willing to help, just open a PR or contact me via bug system or simon.tretter@hokify.com.
Installation
npm install
npm run build
Introduction
This app provides a radius server to authenticate against google's SLDAP service. To get this running you need:
- Running LDAP Service (E.g. Google Suite Enterprise or Gloud Identity Premium)
- Optional: Create your own SSL certificate (e.g. self signed via npm run create-certificate)
- Check config.js and adapt to your needs
- configure authentication (passport config), e.g. for LDAP
var config = {
// ....
authentication: 'ldap',
authenticationOptions: {
url: 'ldap://127.0.0.1:1636',
base: 'dc=hokify,dc=com'
}
};
- set radius secret
- Install und build server: npm install && npm run build
- Start server "npm run start"
Authentications
right now only one simple ldap implementation is done, the idea is though to use passport.js as authentication provider, therefore it would be possible to use the radius server with your email provider authentication or any other auth mechanismus you use (well everything with no 2factor or anything else that requries an extra step).
Usage
You need to specify at least a radius password and the base DN for LDAP:
npm run start