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

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) {



    // /Setup/
/ Function to create VRRP Entry
Config/Access-Table
    var
addVRRPEntry = function (routerID, routerIP, mainPrio, backupPrio, remoteSite, comment) {
        var table1_2_8_21_2 =
 accessTable = config.getTableByOid("1.2.
8
11.
21.2
15");

   
    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", "");
    }
};
/** * @param {Config} config * @param {Context} context * Do not edit this comment or parameter types. Required for code suggestions */ exports.main = function (config, context) { // /Setup/Config/Access-Table var accessTable = config.getTableByOid("1.2.11.15"); var rowLan
 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", "
1
2"); //
LAN
WAN
   
rowLan
rowWan.setByOid("2", "0"); 
 //Telnet     
: VPN (16), Yes (1), Read (4), No (0)

   
rowLan
rowWan.setByOid("3", "
1
0"); 
 //TFTP       
: VPN (16), Yes (1), Read (4), No (0)

   
rowLan
rowWan.setByOid("4", "
1
0"); 
 //HTTP     
  : VPN (16), Yes (1), Read (4), No (0)

   
rowLan
rowWan.setByOid("5", "
1
0"); 
 //SNMP     
  : VPN (16), Yes (1), Read (4), No (0)

   
rowLan
rowWan.setByOid("6", "
1
16");
 //HTTPS     
 : VPN (16), Yes (1), Read (4), No (0)

   
rowLan
rowWan.setByOid("7", "
1
0"); 
 //Telnet-SSL : VPN (16), Yes (1), Read (4), No (0)

   
rowLan
rowWan.setByOid("8", "
1
0"); 
 //SSH       
 : VPN (16), Yes (1), Read (4), No (0)

   
rowLan
rowWan.setByOid("9", "
1
0"); 
 //SNMPv3     
: VPN (16), Yes (1), Read (4), No (0)

   
accessTable
accessTable.addOrMerge(
rowLan
rowWan);


    var
rowWan
rowWlan = accessTable.getFirstRowByOid("1", "
2
3"); //
WAN
WLAN
   
rowWan
rowWlan.setByOid("2", "0"); 
 //Telnet   
  : VPN (16), Yes (1), Read (4), No (0)

   
rowWan
rowWlan.setByOid("3", "
0
1"); 
 //TFTP       
: VPN (16), Yes (1), Read (4), No (0)

   
rowWan
rowWlan.setByOid("4", "
0
1"); 
 //HTTP     
  : VPN (16), Yes (1), Read (4), No (0)

   
rowWan
rowWlan.setByOid("5", "
0
1"); 
 //SNMP     
  
: VPN (16), Yes (1), Read (4), No (0)

   
rowWan
rowWlan.setByOid("6", "
16
1");  //HTTPS     
 : VPN (16), Yes (1), Read (4), No (0)

   
rowWan
rowWlan.setByOid("7", "
0
1"); 
 //Telnet-SSL : VPN (16), Yes (1), Read (4), No (0)

   
rowWan
rowWlan.setByOid("8", "
0
1"); 
 //SSH       
 : VPN (16), Yes (1), Read (4), No (0)

   
rowWan
rowWlan.setByOid("9", "
0
1"); 
 //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); };

Addin als JSON-Datei:

View file
nameaccess-table.json
height150

);

};

Add-in als JSON-Datei:

View file
nameaccess_table.json
height250


Add-In Code

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) {



   
Englisch

Description:

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

List of used variables:

VariableDescription
/**
 * @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", "");
    }
};
/** * @param {Config} config * @param {Context} context * Do not edit this comment or parameter types. Required for code suggestions */ exports.main = function (config, context) {
 // /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);


};
Addin

Add-in as JSON file:

View file
nameaccess-_table.json
height150