Versionen im Vergleich

Schlüssel

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

...

Deutsch

Beschreibung:

Mit diesem Skript können Sie ein Port-Forwarding erstellen.

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 EntryRequired variables:
    // CustomTag  = string
    // CustomIP   = string
   
var addVRRPEntry = function (routerID, routerIP, mainPrio, backupPrio, remoteSite, comment) {
        var table1_2_8_21_2 // CustomPort = string

    // /Setup/IP-Router/1-N-NAT/Service-Table
    var serviceTable = config.getTableByOid("1.2.8.
219.24");
        var table_1_2_8_21_2_row_1 = table1_2_8_21_2 myRow = serviceTable.createNewRow();
   
    table_1_2_8_21_2_row_1myRow.setByOid("1", routerIDcontext.vars.CustomPort);  //D-port-from
   
    table_1_2_8_21_2_row_1myRow.setByOid(2, routerIP);
"5", "0");                       table_1_2_8_21_2_row_1//Active (No (1), Yes (0))
    myRow.setByOid("3",
mainPriocontext.vars.CustomPort);  //D-port-to
   
    table_1_2_8_21_2_row_1myRow.setByOid(4, backupPrio"7", "MANAGEMENT");
            table_1_2_8_21_2_row_1//Peer
    myRow.setByOid(
5, remoteSite"2", context.vars.CustomIP);
        table_1_2_8_21_2_row_1//Intranet-Address
    myRow.setByOid(
6, comment"4", "443");
            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_PrioMap-Port
   
if (context.vars.VRRP_PRIO != "") {
        config.setScalarByOid("1.2.8.21.1myRow.setByOid("8", "10");
                     // Function Call to create a new Entry
        addVRRPEntry("1", "10.10.10.254", context.vars.VRRP_PRIO, "0", "INTERNETProtocol (TCP (1), UDP (2), TCP+UDP (0))
    myRow.setByOid("9", "0.0.0.0");                //WAN-Address
    myRow.setByOid("6", "");                       //Comment
   
}serviceTable.addOrMerge(myRow);

};

Add-in als JSON-Datei:

View file
nameport_forwarding.json
height150

Englisch

Description:

You can use this script to create a port forwarding.

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



    // Required variables:
    // CustomTag  = string
    //
Function to create VRRP Entry
CustomIP   = string
   
var addVRRPEntry = function (routerID, routerIP, mainPrio, backupPrio, remoteSite, comment) {
        var table1_2_8_21_2
// CustomPort = string

    // /Setup/IP-Router/1-N-NAT/Service-Table
    var serviceTable = config.getTableByOid("1.2.8.
21
9.
2
4");
   
    var
table_1_2_8_21_2_row_1 = table1_2_8_21_2
myRow = serviceTable.createNewRow();
   
    table_1_2_8_21_2_row_1
myRow.setByOid("1",
routerID
context.vars.CustomPort);  //D-port-from
   
    table_1_2_8_21_2_row_1
myRow.setByOid(
2, routerIP);
"5", "0");                      
table_1_2_8_21_2_row_1
//Active (No (1), Yes (0))
    myRow.setByOid("3",
mainPrio
context.vars.CustomPort);  //D-port-to
   
    table_1_2_8_21_2_row_1
myRow.setByOid(
4, backupPrio
"7", "MANAGEMENT");

           
table_1_2_8_21_2_row_1
//Peer
    myRow.setByOid(
5, remoteSite
"2", context.vars.CustomIP);

   
    table_1_2_8_21_2_row_1
//Intranet-Address
    myRow.setByOid(
6, comment
"4", "443");

           
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
Map-Port
   
if (context.vars.VRRP_PRIO != "") {
        config.setScalarByOid("1.2.8.21.1
myRow.setByOid("8", "
1
0");

                     //
Function Call to create a new Entry
        addVRRPEntry("1", "10.10.10.254", context.vars.VRRP_PRIO, "0", "INTERNET
Protocol (TCP (1), UDP (2), TCP+UDP (0))
    myRow.setByOid("9", "0.0.0.0");                //WAN-Address
    myRow.setByOid("6", "");                       //Comment
   
}
serviceTable.addOrMerge(myRow);

};

Add-in as JSON file:

View file
nameport_forwarding.json
height150

...