Radio Settings

This script adapts the settings of WLAN-1 to the values of the provided variables Radio_Channel and Tx_Power_Reduction.

/**
 * @param {Config} config
 * @param {Context} context
 * Do not edit this comment or parameter types. Required for code suggestions
*/
exports.main = function (config, context) {
    // /Setup/Interfaces/WLAN/Radio-Settings/
    var radioSettings = config.getTableByOid("1.2.23.20.8");
    var rowWlan1 = radioSettings.getFirstRowByOid("1", "1");
    if (rowWlan1) {
        rowWlan1.setByOid("8", context.vars.Radio_Channel);      // set the radio channel
        rowWlan1.setByOid("2", context.vars.Tx_Power_Reduction); // transmission reduction
        radioSettings.addOrMerge(rowWlan1);
    }
};

results matching ""

    No results matching ""