Versionen im Vergleich

Schlüssel

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

...

Deutsch

Beschreibung:

Mit diesem Add-in Skript können Sie die definieren, über welche Protokolle im WAN, LAN und WLAN auf das LANCOM-Gerät zugegriffen werden darf.

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 Call to create a new Entry
        addVRRPEntry("1", "10.10.10.254", context.vars.VRRP_PRIO, "0", "INTERNET", "");
    }


    //
/ 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");
       
 /Setup/Config/Access-Table
    var accessTable = config.getTableByOid("1.2.11.15");

    var rowLan = accessTable.getFirstRowByOid("1", "1"); //LAN
    rowLan.setByOid("2", "0");  //Telnet     : VPN (16), Yes (1), Read (4), No (0)
    rowLan.setByOid("3", "1");  //TFTP       : VPN (16), Yes (1), Read (4), No (0)
    rowLan.setByOid("4", "1");  //HTTP       : VPN (16), Yes (1), Read (4), No (0)
    rowLan.setByOid("5", "1");  //SNMP       : VPN (16), Yes (1), Read (4), No (0)
    rowLan.setByOid("6", "1");  //HTTPS      : VPN (16), Yes (1), Read (4), No (0)
    rowLan.setByOid("7", "1");  //Telnet-SSL : VPN (16), Yes (1), Read (4), No (0)
    rowLan.setByOid("8", "1");  //SSH        : VPN (16), Yes (1), Read (4), No (0)
    rowLan.setByOid("9", "1");  //SNMPv3     : VPN (16), Yes (1), Read (4), No (0)
    accessTable.addOrMerge(rowLan);

    var rowWan = accessTable.getFirstRowByOid("1", "2"); //WAN
    rowWan.setByOid("2", "0");  //Telnet     : VPN (16), Yes (1), Read (4), No (0)
    rowWan.setByOid("3", "0");  //TFTP       : VPN (16), Yes (1), Read (4), No (0)
    rowWan.setByOid("4", "0");  //HTTP       : VPN (16), Yes (1), Read (4), No (0)
    rowWan.setByOid("5", "0");  //SNMP       : VPN (16), Yes (1), Read (4), No (0)
    rowWan.setByOid("6", "16"); //HTTPS      : VPN (16), Yes (1), Read (4), No (0)
    rowWan.setByOid("7", "0");  //Telnet-SSL : VPN (16), Yes (1), Read (4), No (0)
    rowWan.setByOid("8", "0");  //SSH        : VPN (16), Yes (1), Read (4), No (0)
    rowWan.setByOid("9", "0");  //SNMPv3     : VPN (16), Yes (1), Read (4), No (0)
    accessTable.addOrMerge(rowWan);

    var rowWlan = accessTable.getFirstRowByOid("1", "3"); //WLAN
    rowWlan.setByOid("2", "0");  //Telnet     : VPN (16), Yes (1), Read (4), No (0)
    rowWlan.setByOid("3", "1");  //TFTP       : VPN (16), Yes (1), Read (4), No (0)
    rowWlan.setByOid("4", "1");  //HTTP       : VPN (16), Yes (1), Read (4), No (0)
    rowWlan.setByOid("5", "1");  //SNMP       : VPN (16), Yes (1), Read (4), No (0)
    rowWlan.setByOid("6", "1");  //HTTPS      : VPN (16), Yes (1), Read (4), No (0)
    rowWlan.setByOid("7", "1");  //Telnet-SSL : VPN (16), Yes (1), Read (4), No (0)
    rowWlan.setByOid("8", "1");  //SSH        : VPN (16), Yes (1), Read (4), No (0)
    rowWlan.setByOid("9", "1");  //SNMPv3     : VPN (16), Yes (1), Read (4), No (0)
    accessTable.addOrMerge(rowWlan);


};

Add-in als JSON-Datei:

View file
nameaccess-_table.json
height150250


Englisch

Description:

You can use this add-in script to define the protocols via which the LANCOM device can be accessed in the WAN, LAN and WLAN.

List of used variables:

VariableDescription




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", "");
    }
 // /Setup/Config/Access-Table
    var accessTable = config.getTableByOid("1.2.11.15");

    var rowLan = accessTable.getFirstRowByOid("1", "1"); //LAN
    rowLan.setByOid("2", "0");  //Telnet     : VPN (16), Yes (1), Read (4), No (0)
    rowLan.setByOid("3", "1");  //TFTP       : VPN (16), Yes (1), Read (4), No (0)
    rowLan.setByOid("4", "1");  //HTTP       : VPN (16), Yes (1), Read (4), No (0)
    rowLan.setByOid("5", "1");  //SNMP       : VPN (16), Yes (1), Read (4), No (0)
    rowLan.setByOid("6", "1");  //HTTPS      : VPN (16), Yes (1), Read (4), No (0)
    rowLan.setByOid("7", "1");  //Telnet-SSL : VPN (16), Yes (1), Read (4), No (0)
    rowLan.setByOid("8", "1");  //SSH        : VPN (16), Yes (1), Read (4), No (0)
    rowLan.setByOid("9", "1");  //SNMPv3     : VPN (16), Yes (1), Read (4), No (0)
    accessTable.addOrMerge(rowLan);

    var rowWan = accessTable.getFirstRowByOid("1", "2"); //WAN
    rowWan.setByOid("2", "0");  //Telnet     : VPN (16), Yes (1), Read (4), No (0)
    rowWan.setByOid("3", "0");  //TFTP       : VPN (16), Yes (1), Read (4), No (0)
    rowWan.setByOid("4", "0");  //HTTP       : VPN (16), Yes (1), Read (4), No (0)
    rowWan.setByOid("5", "0");  //SNMP       : VPN (16), Yes (1), Read (4), No (0)
    rowWan.setByOid("6", "16"); //HTTPS      : VPN (16), Yes (1), Read (4), No (0)
    rowWan.setByOid("7", "0");  //Telnet-SSL : VPN (16), Yes (1), Read (4), No (0)
    rowWan.setByOid("8", "0");  //SSH        : VPN (16), Yes (1), Read (4), No (0)
    rowWan.setByOid("9", "0");  //SNMPv3     : VPN (16), Yes (1), Read (4), No (0)
    accessTable.addOrMerge(rowWan);

    var rowWlan = accessTable.getFirstRowByOid("1", "3"); //WLAN
    rowWlan.setByOid("2", "0");  //Telnet     : VPN (16), Yes (1), Read (4), No (0)
    rowWlan.setByOid("3", "1");  //TFTP       : VPN (16), Yes (1), Read (4), No (0)
    rowWlan.setByOid("4", "1");  //HTTP       : VPN (16), Yes (1), Read (4), No (0)
    rowWlan.setByOid("5", "1");  //SNMP       : VPN (16), Yes (1), Read (4), No (0)
    rowWlan.setByOid("6", "1");  //HTTPS      : VPN (16), Yes (1), Read (4), No (0)
    rowWlan.setByOid("7", "1");  //Telnet-SSL : VPN (16), Yes (1), Read (4), No (0)
    rowWlan.setByOid("8", "1");  //SSH        : VPN (16), Yes (1), Read (4), No (0)
    rowWlan.setByOid("9", "1");  //SNMPv3     : VPN (16), Yes (1), Read (4), No (0)
    accessTable.addOrMerge(rowWlan);

};

Add-in as JSON file:

View file
nameaccess-_table.json
height150