App-Netsync
view release on metacpan or search on metacpan
share/mib/FOUNDRY-SN-AGENT-MIB.mib view on Meta::CPAN
::= { snAgentGbl 3 }
snAgConfigFromNVRAM OBJECT-TYPE
SYNTAX INTEGER {
normal(1),
error(2),
config(3),
configing(4),
busy(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is no more supported by FastIron and NetIron agents and
should not be used.
Action object to config the switch from NVRAM of the agent.
The following values can only be read:
normal(1)
error(2)... operation failed or bad flash
configing(4)...configing from NVRAM flash is in process.
busy(5).......operation not allowed at this time, flash is busy
The following value can be written:
config(3).....do config
The agent will return a response after config is done."
::= { snAgentGbl 4 }
-- image and config file down/up load
-- snAgTftpServerIp object is deprecated, and added following 2 new objects.
-- 1. "snAgTftpServerAddrType" represents Ipv4 and Ipv6 address types
-- 2. "snAgTftpServerAddr" reprasents Ipv4 and Ipv6 addresses
snAgTftpServerIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"The tftp server address, this will be used for both download/upload
image file and config file."
::= { snAgentGbl 5 }
snAgImgFname OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Name of the image file including path currently associated
with the system. When the object is not used, the value is a
zero length string."
::= { snAgentGbl 6 }
snAgImgLoad OBJECT-TYPE
SYNTAX INTEGER {
normal(1),
flashPrepareReadFailure(2),
flashReadError(3),
flashPrepareWriteFailure(4),
flashWriteError(5),
tftpTimeoutError(6),
tftpOutOfBufferSpace(7),
tftpBusy(8),
tftpRemoteOtherErrors(9),
tftpRemoteNoFile(10),
tftpRemoteBadAccess(11),
tftpRemoteDiskFull(12),
tftpRemoteBadOperation(13),
tftpRemoteBadId(14),
tftpRemoteFileExists(15),
tftpRemoteNoUser(16),
operationError(17),
loading(18),
uploadMPPrimary(19),
downloadMPPrimary(20),
uploadMPSecondary(21),
downloadMPSecondary(22),
tftpWrongFileType(23),
downloadSPPrimary(24),
downloadSPSecondary(25),
uploadMPBootROM(26),
downloadMPBootROM(27),
uploadMPBootTFTP(28),
downloadMPBootTFTP(29),
uploadMPMonitor(30),
downloadMPMonitor(31),
downloadSPBootROM(32)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Action object to down/up load a new image
to the agent. The following values:
Error values: from normal(1) to operationError(17) and tftpWrongFileType(23).
loading(18) .. operation is in process.
The following values are used for set :
uploadMPPrimary(19)..upload the Primary image from MP flash to tftp server.
downloadMPPrimary(20)..download the Primary image from tftp server to MP flash.
uploadMPSecondary(21)..upload the Secondary image from MP flash to tftp server.
downloadMPSecondary(22)..download the Secondary image from tftp server to MP flash.
downloadSPPrimary(24)..download the Primary image from tftp server to SP flash.
downloadSPSecondary(25)..download the Secondary image from tftp server to SP flash.
uploadMPBootROM(26)..upload the Boot from flash image from MP flash to tftp server.
downloadMPBootROM(27)..download the Boot from flash image from tftp server to MP flash.
uploadMPBootTFTP(28)..upload the Boot from TFTP image from MP flash to tftp server.
downloadMPBootTFTP(29)..download the Boot from TFTP image from tftp server to MP flash.
uploadMPMonitor(30)..upload the Monitor image from MP flash to tftp server.
downloadMPMonitor(31)..download the Monitor image from tftp server to MP flash.
downloadSPBootROM(32)..download the Boot image from tftp server to SP flash.
MP is the management processor, SP is the switch processor.
The image filename is defined in
snAgImgFname. The tftp server address is defined in snAgTftpServerIp.
Atomic set of snAgImgLoad, snAgImgFname and
snAgTftpServerIp is required to allow down/up load to happen.
And the write request will be rejected during loading until error
or normal."
::= { snAgentGbl 7 }
snAgCfgFname OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Name of the config file(s) including path currently associated
with the system. Some agents in special
situations may support a value which contains
multiple file names instead of a single file
name. Multiple names are specified as a list
of file names separated by semicolons (;).
When the object is not used, the value is a
zero length string."
::= { snAgentGbl 8 }
snAgCfgLoad OBJECT-TYPE
SYNTAX INTEGER {
normal(1),
flashPrepareReadFailure(2),
flashReadError(3),
flashPrepareWriteFailure(4),
flashWriteError(5),
tftpTimeoutError(6),
tftpOutOfBufferSpace(7),
tftpBusy(8),
tftpRemoteOtherErrors(9),
tftpRemoteNoFile(10),
tftpRemoteBadAccess(11),
tftpRemoteDiskFull(12),
tftpRemoteBadOperation(13),
tftpRemoteBadId(14),
tftpRemoteFileExists(15),
tftpRemoteNoUser(16),
operationError(17),
loading(18),
uploadFromFlashToServer(20),
downloadToFlashFromServer(21),
uploadFromDramToServer(22),
downloadToDramFromServer(23),
uploadFromFlashToNMS(24),
downloadToFlashFromNMS(25),
uploadFromDramToNMS(26),
downloadToDramFromNMS(27),
operationDoneWithNMS(28),
tftpWrongFileType(29),
downloadToDramFromServerOverwrite(30)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Action object to down/up load a config image
to the agent. The following values can be
read :
Error values: from normal(1) to operationError(17) and tftpWrongFileType(29).
loading(18) .. operation is in process.
The following value can be used to set:
uploadFromFlashToServer(20)..upload the config from flash
to tftp server.
downloadToFlashFromServer(21)..download the config to flash
from tftp server.
uploadFromDramToServer(22)..upload the config from DRAM
to tftp server.
downloadToDramFromServer(23)..download the config to DRAM
from tftp server.
downloadToDramFromServerOverwrite(30)..download the config to DRAM
from tftp server, clear the running-config,
and overwrite with the new config.
The following value can be used to set:
uploadFromFlashToNMS(24)..upload the config from flash to NMS.
downloadToFlashFromNMS(25)..download the config to flash from NMS.
uploadFromDramToNMS(26)..upload the config from DRAM to NMS.
downloadToDramFromNMS(27)..download the config to DRAM from NMS.
The config filename is defined in
snAgCfgFname. The tftp server address is defined in snAgTftpServerIp.
Atomic set of snAgCfgLoad, snAgCfgFname and snAgTftpServerIp is
required to allow down/up load to happen. And the write request
will be rejected during loading until error or normal.
For those NMS commands from (24) to (27), The snAgCfgEosTable MIB must
be sent along in one PDU. A seperate write memory cli or set
share/mib/FOUNDRY-SN-AGENT-MIB.mib view on Meta::CPAN
"false - The device queues are not overflow.
true - The device queues are overflow."
::= { snAgentGbl 30 }
snAgGblBufferShortage OBJECT-TYPE
SYNTAX INTEGER { false(0), true(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"false - The device buffers are adequate.
true - The device buffers are in shortage."
::= { snAgentGbl 31 }
snAgGblDmaFailure OBJECT-TYPE
SYNTAX INTEGER { false(0), true(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"false - The device DMAs are in good condition.
true - One of the DMAs in the device fails."
::= { snAgentGbl 32 }
snAgGblResourceLowWarning OBJECT-TYPE
SYNTAX INTEGER { false(0), true(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"false - No, the device does not have resource-low-warning.
true - Yes, the device does have resource-low-warning."
::= { snAgentGbl 33 }
snAgGblExcessiveErrorWarning OBJECT-TYPE
SYNTAX INTEGER { false(0), true(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"false - No, the device does not have any excessive collision, FCS errors, alignment warning etc.
true - Yes, the device does have."
::= { snAgentGbl 34 }
snAgGblCpuUtilData OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The statistics collection of utilization of the CPU in the device.
In NetIron and FastIron platforms, reading this object resets all the counters.
Therefore, a user need not set snAgGblUtilCollect."
::= { snAgentGbl 35 }
snAgGblCpuUtilCollect OBJECT-TYPE
SYNTAX INTEGER { disabled(0), enabled(1) }
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"enable(1) - The beginning of statistics collection of utilization of the CPU in the device.
disable(0) - The end of statistics collection of utilization of the CPU in the device.
This object is deprecated. User need not set this object. User can read snAgGblCpuUtilData to reset all the counters. "
::= { snAgentGbl 36 }
snAgGblTelnetTimeout OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Telnet session idling timeout value. Each value unit is one minute.
FastIron and NetIron platforms support value upto 240 minutes.
On these platforms, value 0 means telnet sessions do not timeout."
::= { snAgentGbl 37 }
snAgGblEnableWebMgmt OBJECT-TYPE
SYNTAX INTEGER { disabled(0), enabled(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/disable web management."
DEFVAL { enabled }
::= { snAgentGbl 38 }
snAgGblSecurityLevelBinding OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This represnts the binding of a given password to which
security level. A value of 255 indicates an invalid
binding."
::= { snAgentGbl 39 }
snAgGblEnableSLB OBJECT-TYPE
SYNTAX INTEGER { disabled(0), enabled(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enable/disable Server Load Balancing."
::= { snAgentGbl 40 }
snAgSoftwareFeature OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A bit string representing the software feature of the running
switch/router image. These features were conditional compiled
to different product images. For each bit, exist feature has
a value of 1, but non-exist feature has a value of 0.
octet 0, bit 0 - RMON
octet 0, bit 1 - ipx switching
octet 0, bit 2 - server load balancing
octet 0, bit 3 - layer 3 filter in switch
octet 0, bit 4 - ipx routing
octet 0, bit 5 - appletalk routing
octet 0, bit 6 - ip multicast routing
octet 0, bit 7 - local access control
octet 1, bit 0 - BGP routing
octet 1, bit 1 - loopback interface
octet 1, bit 2 - BigIron multi-management module
octet 1, bit 3 - BigIron SYSIF II
octet 1, bit 4 - BigIron POS support
octet 1, bit 5 - appletalk cable vlan
octet 1, bit 6 - 64 subnet
share/mib/FOUNDRY-SN-AGENT-MIB.mib view on Meta::CPAN
snAgGblDynMemFree OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The free amount of system dynamic memory, in number of bytes.
Deprecated: Refer to snAgSystemDRAMFree.
For NI platforms, refer to snAgentBrdMemoryAvailable"
::= { snAgentGbl 55 }
snAgImgLoadSPModuleType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
vm1(2),
pos12(3),
pos48(4),
atm(5),
gignpa(6),
lp(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The switch processor module type of which that receives
the downloaded image."
::= { snAgentGbl 56 }
snAgImgLoadSPModuleNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The slot numner of a switch processor module that receives
the downloaded image. Setting value 0 applies to all SP
modules."
::= { snAgentGbl 57 }
snAgTrapHoldTime OBJECT-TYPE
SYNTAX INTEGER (1..600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The time in seconds for which traps will be witheld
during system initialization."
::= { snAgentGbl 58 }
snAgSFlowSourceInterface OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Use the ifIndex value here to specify the
source interface to be used for sFlow packets.
The interface should have IP address configured
on it. Value of 0 indicates that source interface
has not been configured for sFlow. Port 65534
is used to specify a null port."
::= { snAgentGbl 59 }
snAgGblTelnetLoginTimeout OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Telnet session login timeout value in minutes.
FastIron and NetIron platforms support value upto 10 minutes, and default of 1 minute."
::= { snAgentGbl 60 }
snAgGblBannerExec OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"EXEC process creation banner. Insert newlines using '\n' within the string."
::= { snAgentGbl 61 }
snAgGblBannerIncoming OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Incoming terminal line banner. Insert newlines using '\n' within the string."
::= { snAgentGbl 62 }
snAgGblBannerMotd OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Message-of-the-day banner. Insert newlines using '\n' within the string."
::= { snAgentGbl 63 }
snAgWebMgmtServerTcpPort OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The TCP port number of web management interface."
::= { snAgentGbl 64 }
-- image and config file down/up load
snAgTftpServerAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TFTP server IP address Type. Supported address types are ipv4(1) and ipv6(2)"
DEFVAL { ipv4 }
::= { snAgentGbl 65 }
snAgTftpServerAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TFTP server IP address."
::= { snAgentGbl 66 }
snAgGblDeleteFirstBeforeDownload OBJECT-TYPE
( run in 2.792 seconds using v1.01-cache-2.11-cpan-5735350b133 )