Description:

You can use this add-in script to activate Radio Resource Management (IEEE 802.11k) for LCOS LX access points.

Add-in code:

/**
 * @param {Config} config
 * @param {Context} context
 * Do not edit this comment or parameter types. Required for code suggestions
*/
 exports.main = function (config, context) {
  var table = config.getTableByOid( "13.2.20.1" );
  var row;
  var networkNameUppercase = context.network.name.toUpperCase();


for ( var ssidName in context.network.ssids);
row = table.createNewRow();
row.setByOid( "1" , "1_" +networkNameUppercase + "_" +ssidName);  // Network-Name
row.setByOid( "35" , "1" ); // RRM (802.11k)  1= on
table.addOrMerge(row);
};

Add-in as JSON file:

lx_activate_rrm.json