Versionen im Vergleich

Schlüssel

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


Deutsch

Beschreibung:

Mit dem folgenden Add-in Skript können Sie einen SNMP-Server und SNMP-Benutzer auf LANCOM Switches der GS-23xx Serie hinzufügen.

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

) {
    // Function to create VRRP Entry
    var addVRRPEntry = function (routerID, routerIP, mainPrio, backupPrio, remoteSite, comment

) {
   

    var table1_2_8_21_2 =

config.

getTableByOid

addScriptLine("

1.2.8.21.2

snmp");
   

    var table_1_2_8_21_2_row_1 = table1_2_8_21_2.createNewRow(

config.addScriptLine("user macmon AuthPriv MD5 macmon123 DES macmon123");
   

    table_1_2_8_21_2_row_1.setByOid(1, routerID

config.addScriptLine("group macmon usm macmonv3");
   

    table_1_2_8_21_2_row_1.setByOid(2, routerIP);
        table_1_2_8_21_2_row_1.setByOid(3, mainPrio

config.addScriptLine("view super included .1");
   

    table_1_2_8_21_2_row_1.setByOid(4, backupPrio

config.addScriptLine("access macmonv3 any AuthPriv super super");
   

    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:

config.addScriptLine("trap 1 v3 ipv4 10.20.0.81 162 6 public AuthPriv MD5 macmon123 DES macmon123");
    config.addScriptLine("getcommunity enable");
    config.addScriptLine("exit");
};

Add-in als JSON-Datei:

View file
nameGS-23XX-Add-SNMP-Server-and-User.json
height150

Englisch

Description:

With the following Add-in

Englisch

Add SNMP-Server and SNMP-User on LANCOM GS-23xx Switches

With the following Addin script you can add an SNMP-server and SNMP-Users on LANCOM Switches of the GS-23xx series:

Used

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)

{

{
    config.addScriptLine("snmp");


    config.addScriptLine("user

macmon

AuthPriv

MD5

macmon123

DES

macmon123");


    config.addScriptLine("group

macmon

usm

macmonv3");


    config.addScriptLine("view

super

included

.1");


    config.addScriptLine("access

macmonv3

any

AuthPriv

super

super");


    config.addScriptLine("trap

1

v3

ipv4

10.20.0.81

162

6

public

AuthPriv

MD5

macmon123

DES

macmon123");


    config.addScriptLine("getcommunity

enable");


    config.addScriptLine("exit");
};

Add-in as JSON file:

View file
nameGS-23XX-Add-SNMP-Server-and-User.json
height

250

150