-- ------------------------------------------------------------------------------ -- CVS $Id: LYNX-Server-Status.mib,v 1.3 2016/06/02 11:17:37 jvo Exp $ -- ------------------------------------------------------------------------------ -- Copyright 2003-2011 by LYNX Technik AG -- -- These coded instructions, statements, and computer programs contain -- unpublished proprietary information written by LYNX Technik AG and -- are protected by Federal copyright law. They may not be disclosed -- to third parties or copied or duplicated in any form, in whole or -- in part, without the prior written consent of LYNX Technik AG. -- ------------------------------------------------------------------------------ LYNX-SERVER-STATUS-MIB DEFINITIONS ::= BEGIN IMPORTS MODULE-IDENTITY, OBJECT-IDENTITY, OBJECT-TYPE, IpAddress FROM SNMPv2-SMI -- RFC2578 DisplayString FROM SNMPv2-TC -- RFC2579 MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF -- RFC2580 lynx-technik, mib-modules, OnOffValue FROM LYNX-SMI; mib-mod-server-status MODULE-IDENTITY LAST-UPDATED "201605231010Z" ORGANIZATION "LYNX Technik AG" CONTACT-INFO "LYNX Technik AG Brunnenweg 3 64331 Weiterstadt http://www.lynx-technik.com mailto:support@lynx-technik.com" DESCRIPTION "MIB module definition for status information of LYNX server modules" REVISION "201605231010Z" DESCRIPTION "Initial version" ::= { mib-modules 5 } server-status OBJECT-IDENTITY STATUS current DESCRIPTION "LYNX server status" ::= { lynx-technik 5 } -- Parameter definitions serverIsClustered OBJECT-TYPE SYNTAX OnOffValue MAX-ACCESS read-only STATUS current DESCRIPTION "TRUE if the LYNX APPolo Server is running in a LYNX Server Cluster, FALSE otherwise" ::= { server-status 1 } serverIsActive OBJECT-TYPE SYNTAX OnOffValue MAX-ACCESS read-only STATUS current DESCRIPTION "TRUE if the LYNX APPolo Server is the active server in a LYNX Server Cluster or if it's running as a stand-alone server, FALSE otherwise" ::= { server-status 2 } clusterName OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION "Name of the LYNX Server Cluster that this APPolo Server belongs to; empty if the server is not running in a cluster" ::= { server-status 3 } clusterPrimaryServer OBJECT-TYPE SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION "IP address of the primary server in the LYNX Server Cluster that this APPolo Server belongs to; zero if the server is not running in a cluster" ::= { server-status 4 } clusterSecondaryServer OBJECT-TYPE SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION "IP address of the secondary server in the LYNX Server Cluster that this APPolo Server belongs to; zero if the server is not running in a cluster" ::= { server-status 5 } -- Conformance statements conformance OBJECT-IDENTITY STATUS current DESCRIPTION "Conformance declaration of LYNX server status" ::= { server-status 999 } paramGroup OBJECT-GROUP OBJECTS { serverIsClustered, serverIsActive, clusterName, clusterPrimaryServer, clusterSecondaryServer } STATUS current DESCRIPTION "Conformance group containing all server status parameters" ::= { conformance 1 } paramCompliance MODULE-COMPLIANCE STATUS current DESCRIPTION "Compliance specification" MODULE -- This module MANDATORY-GROUPS { paramGroup } ::= { conformance 2 } END