jonathanza / mock-radius

Mock RADIUS server for testing.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mock-radius

Build Status Codacy Badge

Radius server for testing purposes.

Listens on all interfaces by default and port 1812.

Install

$ npm install mock-radius

Usage

var config = {
    address: '0.0.0.0',
    port: 1812,
    secret: 'radiusSuperSecret',
    userName: 'hulk',
    userPassword: 'smash12345'
};

var mockradius = new MockRadius(config);

mockradius.bind();

Run Tests

$ npm test

License

MIT

About

Mock RADIUS server for testing.

License:MIT License


Languages

Language:JavaScript 100.0%