Versionen im Vergleich

Schlüssel

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


Deutsch

Beschreibung:

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

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



    // Required variables:
    // Function to create VRRP Entry

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

"7", "MANAGEMENT");             //Peer
    myRow.setByOid("2", context.vars.CustomIP);    //Intranet-Address
    myRow.setByOid("4", "443");                    //Map-Port
    myRow.setByOid("8", "0");                      //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 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
    // CustomIP   = string
    // CustomPort = string

    //
Englisch
exports.main = function (config, context) { // Required variables: // CustomTag = string // CustomIP = string // CustomPort = string //
/Setup/IP-Router/1-N-NAT/Service-Table
var serviceTable =

    var serviceTable = config.getTableByOid("1.2.8.9.4");
var myRow =

    var myRow = serviceTable.createNewRow();

    myRow.setByOid("1",
context.vars.CustomPort);
 //D-port-from

    myRow.setByOid("5",
"0");
                     //Active
(No
(1),
Yes
(0))

    myRow.setByOid("3",
context.vars.CustomPort);
 //D-port-to

    myRow.setByOid("7",
"MANAGEMENT");
//Peer
            //Peer
    myRow.setByOid("2",
context.vars.CustomIP);
   //Intranet-Address

    myRow.setByOid("4",
"443");
                   //Map-Port

    myRow.setByOid("8",
"0");
                     //Protocol
(TCP
(1),
UDP
(2),
TCP+UDP
(0))

    myRow.setByOid("9",
"0.0.0.0");
               //WAN-Address

    myRow.setByOid("6",
"");
//Comment
                      //Comment
    serviceTable.addOrMerge(myRow);
};


};

Add-in as JSON file:

View file
nameport_forwarding.json
height150