Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.
Seiteneigenschaften


Deutsch

Beschreibung:

Liste der verwendeten Variablen:

VariableBeschreibung




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) {
    // Function to create VRRP Entry
    var addVRRPEntry = function (routerID, routerIP, mainPrio, backupPrio, remoteSite, comment) {
        var table1_2_8_21_2 = config.getTableByOid("1.2.8.21.2");
        var table_1_2_8_21_2_row_1 = table1_2_8_21_2.createNewRow();
        table_1_2_8_21_2_row_1.setByOid(1, routerID);
        table_1_2_8_21_2_row_1.setByOid(2, routerIP);
        table_1_2_8_21_2_row_1.setByOid(3, mainPrio);
        table_1_2_8_21_2_row_1.setByOid(4, backupPrio);
        table_1_2_8_21_2_row_1.setByOid(5, remoteSite);
        table_1_2_8_21_2_row_1.setByOid(6, comment);
        table1_2_8_21_2.addOrMerge(table_1_2_8_21_2_row_1);
    };
    // If Statement to only create VRRP Entry, if device has the variable VRRP_Prio
    if (context.vars.VRRP_PRIO != "") {
        config.setScalarByOid("1.2.8.21.1", "1");
        // Function Call to create a new Entry
        addVRRPEntry("1", "10.10.10.254", context.vars.VRRP_PRIO, "0", "INTERNET", "");
    }
};

Addin als JSON-Datei:


This script, assigned to a newtork, overrides a specific WiFi networks SSID and Preshared Key with the variables

  • context.vars.SSID
  • context.vars.WPAKey

The selected WiFi that will be overridden is SSID_TO_CHANGE.


Englisch
/**
 * @param {Config} config
 * @param {Context} context
 * Do not edit this comment or parameter types. Required for code suggestions
*/
exports.main = function (config, context) {

    // Step 1: obtain _single_ ssid reference
    var ssid = context.network.ssids["SSID_TO_CHANGE"];

    if (!ssid) {
        config.abort("SSID missing");
    }

    if (!context.vars.SSID) {
        config.abort("variable SSID not set");
    }

    if (!context.vars.WPAKey) {
        config.abort("variable WPAKey not set");
    }

    // Step 2: collect iface numbers
    var ifcNumbers = [];
    for (var i = 0; i < ssid.ifcNumber.length; i++) {
        ifcNumbers.push(ssid.ifcNumber[i]);
    }

    // Step 3: change wifi/pass using collected iface numbers
    var wlantable = config.getTableByOid("1.2.23.20.1");
    var encrtable = config.getTableByOid("1.2.23.20.3");
    for (var i = 0; i < ifcNumbers.length; i++) {

        var rowWlan = wlantable.getFirstRowByOid("1", ifcNumbers[i]);
        if (rowWlan) {
            rowWlan.setByOid("2", context.vars.SSID);
            wlantable.addOrMerge(rowWlan);
        }

        var rowEncr = encrtable.getFirstRowByOid("1", ifcNumbers[i]);
        if (rowEncr) {
            rowEncr.setByOid("6", "" + context.vars.WPAKey);
            encrtable.addOrMerge(rowEncr);
        }
    }
};



...