Description:
With the following Add-in script you can configure an external RADIUS Server on LANCOM Switches of the GS-23xx series.
List of used variables:
Addin code:
/** * @param {Config} config * @param {Context} context * Do not edit this comment or parameter types. Required for code suggestions */ exports.main = function (config, context) { config.addScriptLine( "aaa" ); config.addScriptLine( "radius 1 enable 10.20.0.81 1812 macmon123" ); config.addScriptLine( "exit" ); }; |
---|
Add-in as JSON file:
