Versionen im Vergleich

Schlüssel

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



Deutsch

Beschreibung:

Mit dem folgenden Addin-Skript können Sie RSTP auf LANCOM Switches der XS-Serie konfigurieren.

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



    config.addScriptLine("configure");                                 // Function to create VRRP Entryswitch to configure mode
   
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 != "") "1.2.8.21.1", "1");
        // Function Call to create a new Entryconfig.addScriptLine("spanning-tree mode rstp");                   // activates RSTP

    // Set the Priority and Failover Link
    if (config.getScalarByOid("2.1.5") == "SIFI-SW50")                    // IF Device Name
    {
        config.addScriptLine("spanning-tree mst priority 0 12288");    // setzt die bridge priority auf 3000 (HEX) // für RZ/Labor
        //config.addScriptLine ("spanning-tree mst priority 0 20480");    // setzt die bridge priority auf 5000 (HEX) // für Distris an Schulen

        //config.addScriptLine ("interface 1/0/20");
        //config.addScriptLine ("spanning-tree cost 5000");               // set external transport cost 5000 on Port 1/0/1
        //config.addScriptLine ("exit");                                  // exit interface
    }

    // Set the Priority and Failover Link
    if (config.getScalarByOid("2.1.5") == "Konfigverteiler")                    // IF Device Name
    {
        config.
setScalarByOid(addScriptLine("spanning-tree mst priority 0 12288");    // setzt die bridge priority auf 3000 (HEX) // für RZ/Labor
        //config.addScriptLine ("spanning-tree mst priority 0 20480");    // setzt die bridge priority auf 5000 (HEX) // für Distris an Schulen


       
addVRRPEntry//config.addScriptLine ("interface 1", "10.10.10.254", context.vars.VRRP_PRIO, "0", "INTERNET", "");
    }
};
Addin als JSON-Datei:
/0/20");
        //config.addScriptLine ("spanning-tree cost 5000");               // set external transport cost 5000 on Port 1/0/1
        //config.addScriptLine ("exit");                                  // exit interface
    }

    config.addScriptLine("exit");                                    // exit configure mode

};

Add-in als JSON-Datei:

View file
namerstp_xs_switches.json
height150


Englisch

Description: 

Configure RSTP on LANCOM Switches of the XS series

With the following Addin script you can configure RSTP on LANCOM Switches of the XS series.

Used

List of used variables:

VariableDescription




Add-

In Code

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)

{

{



   
config.addScriptLine("configure");
// switch to configure mode
                                // switch to configure mode
    config.addScriptLine("spanning-tree
mode
rstp");
// activates RSTP // Set the Priority and Failover Link if
                  // activates RSTP

    // Set the Priority and Failover Link
    if (config.getScalarByOid("2.1.5")
==
"SIFI-SW50")
// IF Device Name {
                   // IF Device Name
    {
        config.addScriptLine("spanning-tree
mst
priority
0
12288");
   //
setzt
die
bridge
priority
auf
3000
(HEX)
//
für
RZ/Labor

        //config.addScriptLine
("spanning-tree
mst
priority
0
20480");
   //
setzt
die
bridge
priority
auf
5000
(HEX)
//
für
Distris
an
Schulen
Schulen

        //config.addScriptLine
("interface
1/0/20");

        //config.addScriptLine
("spanning-tree
cost
5000");
// set external transport cost 5000 on Port
              // set external transport cost 5000 on Port 1/0/1

        //config.addScriptLine
("exit");
// exit interface } // Set the Priority and Failover Link if
                                 // exit interface
    }

    // Set the Priority and Failover Link
    if (config.getScalarByOid("2.1.5")
==
"Konfigverteiler")
// IF Device Name {
                   // IF Device Name
    {
        config.addScriptLine("spanning-tree
mst
priority
0
12288");
   //
setzt
die
bridge
priority
auf
3000
(HEX)
//
für
RZ/Labor

        //config.addScriptLine
("spanning-tree
mst
priority
0
20480");
   //
setzt
die
bridge
priority
auf
5000
(HEX)
//
für
Distris
an
Schulen
Schulen

        //config.addScriptLine
("interface
1/0/20");

        //config.addScriptLine
("spanning-tree
cost
5000");
// set external transport cost 5000 on Port
              // set external transport cost 5000 on Port 1/0/1

        //config.addScriptLine
("exit");
// exit interface }
                                 // exit interface
    }

    config.addScriptLine("exit");
// exit configure mode };
                                   // exit configure mode

};

Add-in as JSON file:

View file
namerstp_xs_switches.json
height

250

150