15 lines
483 B
TypeScript
15 lines
483 B
TypeScript
|
|
/**
|
||
|
|
* RADIUS module for DcRouter
|
||
|
|
*
|
||
|
|
* Provides:
|
||
|
|
* - MAC Authentication Bypass (MAB) for network device authentication
|
||
|
|
* - VLAN assignment based on MAC addresses
|
||
|
|
* - OUI (vendor prefix) pattern matching for device categorization
|
||
|
|
* - RADIUS accounting for session tracking and billing
|
||
|
|
* - Integration with StorageManager for persistence
|
||
|
|
*/
|
||
|
|
|
||
|
|
export * from './classes.radius.server.js';
|
||
|
|
export * from './classes.vlan.manager.js';
|
||
|
|
export * from './classes.accounting.manager.js';
|