SA-Battery-20110715.mib 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616
  1. --**************************************************************************
  2. --
  3. -- Copyright 2006 Scientific Atlanta, A Cisco Company
  4. -- All Rights Reserved
  5. -- No portions of this material may be reproduced in any
  6. -- form without the written permission of:
  7. -- Scientific Atlanta, A Cisco Company
  8. -- 5030 Sugarloaf Pkwy
  9. -- Lawrenceville, Georgia 30044
  10. --
  11. --**************************************************************************
  12. SA-BATTERY-MIB DEFINITIONS ::= BEGIN
  13. IMPORTS
  14. DateAndTime,
  15. TruthValue
  16. FROM SNMPv2-TC
  17. MODULE-IDENTITY,
  18. OBJECT-TYPE,enterprises,
  19. Integer32,IpAddress
  20. FROM SNMPv2-SMI
  21. ifIndex
  22. FROM IF-MIB;
  23. sa OBJECT IDENTIFIER ::= { enterprises 1429 }
  24. saVoip OBJECT IDENTIFIER ::= { sa 78 }
  25. saBattery MODULE-IDENTITY
  26. LAST-UPDATED "0711160000Z"
  27. ORGANIZATION "Scientific Atlanta, A Cisco Company"
  28. CONTACT-INFO "marcin.godlewski@sciatl.com"
  29. DESCRIPTION
  30. "MTA Battery status."
  31. -- History
  32. REVISION "0711160000Z"
  33. DESCRIPTION
  34. "Added saBatteryIfOperationTable (1950)"
  35. REVISION "0708140000Z"
  36. DESCRIPTION
  37. "Changed UNITS to percent for saBatteryReplacePercentage (1665)"
  38. REVISION "0702070000Z"
  39. DESCRIPTION
  40. "Changed description for saMtaBatteryEndPntRingPower
  41. Removed DEVFAL and changed description for saMtaBatteryEndPntPower"
  42. REVISION "0608110000Z"
  43. DESCRIPTION
  44. "Added saBatteryType (867)
  45. Changed OID for saBatteryHsdPower (867)
  46. Changed OID for saBatteryRfAmpPower (867)
  47. Added saBatteryCurrentStateA (356)
  48. Added saBatteryCurrentStateB (356)"
  49. ::= { saVoip 2 }
  50. saBatteryAcFail OBJECT-TYPE
  51. SYNTAX INTEGER {
  52. false(0),
  53. true(1)
  54. }
  55. MAX-ACCESS read-only
  56. STATUS current
  57. DESCRIPTION
  58. "Show the Battery AC status(AC_STATUS):
  59. 0: AC Restored,
  60. 1: AC Fail "
  61. ::= { saBattery 1 }
  62. saBatteryReplace OBJECT-TYPE
  63. SYNTAX INTEGER {
  64. false(0),
  65. true(1)
  66. }
  67. MAX-ACCESS read-only
  68. STATUS current
  69. DESCRIPTION
  70. "Show the Battery life status(BATTERY_STATUS):
  71. 0: Battery Good,
  72. 1: Replace Battery "
  73. ::= { saBattery 2 }
  74. saBatteryMissing OBJECT-TYPE
  75. SYNTAX INTEGER {
  76. false(0),
  77. true(1)
  78. }
  79. MAX-ACCESS read-only
  80. STATUS current
  81. DESCRIPTION
  82. "Show the Battery presence status(BATTERY_EXIST):
  83. 0: Battery Present,
  84. 1: Battery Missing "
  85. ::= { saBattery 3 }
  86. saBatteryLow OBJECT-TYPE
  87. SYNTAX INTEGER {
  88. false(0),
  89. true(1)
  90. }
  91. MAX-ACCESS read-only
  92. STATUS current
  93. DESCRIPTION
  94. "Show the Battery charge status(BATTERY_ENERGY):
  95. 0: Battery Not Low,
  96. 1: Battery Low "
  97. ::= { saBattery 4 }
  98. saBatteryTrapServer OBJECT-TYPE
  99. SYNTAX IpAddress
  100. MAX-ACCESS read-write
  101. STATUS current
  102. DESCRIPTION
  103. "The IP address of the host receiving SNMP traps."
  104. ::= { saBattery 5 }
  105. saBatteryTrapControl OBJECT-TYPE
  106. SYNTAX BITS {
  107. acFailTrue (0),
  108. acFailFalse(1),
  109. replaceBatteryTrue (2),
  110. replaceBatteryFalse (3),
  111. batteryMissingTrue (4),
  112. batteryMissingFalse (5),
  113. batteryLowTrue (6),
  114. batteryLowFalse (7)
  115. }
  116. MAX-ACCESS read-write
  117. STATUS current
  118. DESCRIPTION
  119. "Controls sending battery event change traps:
  120. bit 0 set: send trap if saBatteryAcFail changes from false(0) to true(1)
  121. bit 1 set: send trap if saBatteryAcFail changes from true(1) to false(0)
  122. bit 2 set: send trap if saBatteryReplace changes from false(0) to true(1)
  123. bit 3 set: send trap if saBatteryReplace changes from true(1) to false(0)
  124. bit 4 set: send trap if saBatteryMissing changes from false(0) to true(1)
  125. bit 5 set: send trap if saBatteryMissing changes from true(1) to false(0)
  126. bit 6 set: send trap if saBatteryLow changes from false(0) to true(1)
  127. bit 7 set: send trap if saBatteryLow changes from true(1) to false(0)"
  128. ::= { saBattery 6 }
  129. saBatteryType OBJECT-TYPE
  130. SYNTAX INTEGER {
  131. dpx2203(0),
  132. dpx2203c(1)
  133. }
  134. MAX-ACCESS read-only
  135. STATUS current
  136. DESCRIPTION
  137. "1 = old DPX2203 battery,
  138. 2 = DPX2203c cartridge"
  139. ::= { saBattery 7 }
  140. saBatteryHsdPower OBJECT-TYPE
  141. SYNTAX INTEGER {
  142. enable(0),
  143. disable(1)
  144. }
  145. MAX-ACCESS read-write
  146. STATUS current
  147. DESCRIPTION
  148. "Enable/Disable the CPE function operating in battery mode.
  149. 0: Support Ethernet and USB data transfer when the EMTA is operating from battery power.
  150. 1: Disable Ethernet and USB data transfer when the EMTA is operating from battery power.
  151. Note: Mode=1: disable hardware for Ethernet and USB."
  152. DEFVAL { 1 }
  153. ::= { saBattery 8 }
  154. saBatteryCpuPower OBJECT-TYPE
  155. SYNTAX INTEGER {
  156. true(0),
  157. false(1)
  158. }
  159. MAX-ACCESS read-write
  160. STATUS current
  161. DESCRIPTION
  162. "CPU runs under normal/lower clock rate operating in battery mode.
  163. 0: Always keep CPU in normal power mode
  164. 1: operate main CPU in low power mode when the CPU is not in use and the EMTA is operating
  165. from battery power.
  166. Note: Mode=1: use 50 MHz and CPU Halt mode if on phone call in progress and no packet traffic
  167. on battery power, else using 200 MHz CPU."
  168. DEFVAL { 1 }
  169. ::= { saBattery 9 }
  170. saBatteryLedPower OBJECT-TYPE
  171. SYNTAX INTEGER {
  172. true(0),
  173. false(1)
  174. }
  175. MAX-ACCESS read-write
  176. STATUS current
  177. DESCRIPTION
  178. "LED flash mode.
  179. 0: Always keep LEDs in normal power mode.
  180. 1: operate LEDs in low power mode when operating from battery power.
  181. Note: See PRD for LED low power modes."
  182. DEFVAL { 1 }
  183. ::= { saBattery 10 }
  184. saBatteryRecoverableCapacityA OBJECT-TYPE
  185. SYNTAX INTEGER
  186. UNITS "mAH"
  187. MAX-ACCESS read-only
  188. STATUS current
  189. DESCRIPTION
  190. "The estimated capacity, in milliampere-hours (mAH), that the battery is able to hold.
  191. This estimate is based on the results of the previous partial discharge capacity test."
  192. ::= { saBattery 11 }
  193. saBatteryRecoverableCapacityB OBJECT-TYPE
  194. SYNTAX INTEGER
  195. UNITS "mAH"
  196. MAX-ACCESS read-only
  197. STATUS current
  198. DESCRIPTION
  199. "The estimated capacity, in milliampere-hours (mAH), that the battery is able to hold.
  200. This estimate is based on the results of the previous partial discharge capacity test."
  201. ::= { saBattery 12 }
  202. saBatteryLastCapacityTestA OBJECT-TYPE
  203. SYNTAX DateAndTime
  204. MAX-ACCESS read-only
  205. STATUS current
  206. DESCRIPTION
  207. "The time that the last Recoverable Capacity Test was performed."
  208. ::= { saBattery 13 }
  209. saBatteryLastCapacityTestB OBJECT-TYPE
  210. SYNTAX DateAndTime
  211. MAX-ACCESS read-only
  212. STATUS current
  213. DESCRIPTION
  214. "The time that the last Recoverable Capacity Test was performed."
  215. ::= { saBattery 14 }
  216. saBatteryReplacePercentage OBJECT-TYPE
  217. SYNTAX INTEGER (0..100)
  218. UNITS "percent"
  219. MAX-ACCESS read-write
  220. STATUS current
  221. DESCRIPTION
  222. "This MIB defines the percentage capacity at which the Replace Battery telemetry will be activated."
  223. DEFVAL { 55 }
  224. ::= { saBattery 15 }
  225. saBatteryKFactorChargeLevel OBJECT-TYPE
  226. SYNTAX INTEGER (60..100)
  227. UNITS "percent"
  228. MAX-ACCESS read-write
  229. STATUS current
  230. DESCRIPTION
  231. "Defines the charge level percent to which the internal batteries will be charged."
  232. DEFVAL { 85 }
  233. ::= { saBattery 16 }
  234. saBatteryCurrentStateA OBJECT-TYPE
  235. SYNTAX INTEGER {
  236. missing(0),
  237. idle(1),
  238. charging(2),
  239. discharging(3)
  240. }
  241. MAX-ACCESS read-only
  242. STATUS current
  243. DESCRIPTION
  244. "Displays the current state of the Battery.
  245. missing - indicates that battery is not present in slot
  246. idle - Indicates the battery is neither charging nor discharging
  247. charging - Battery is in charge mode
  248. discharging - Battery is being used to power the EMTA"
  249. ::= { saBattery 17 }
  250. saBatteryCurrentStateB OBJECT-TYPE
  251. SYNTAX INTEGER {
  252. missing(0),
  253. idle(1),
  254. charging(2),
  255. discharging(3)
  256. }
  257. MAX-ACCESS read-only
  258. STATUS current
  259. DESCRIPTION
  260. "Displays the current state of the Battery.
  261. missing - indicates that battery is not present in slot
  262. idle - Indicates the battery is neither charging nor discharging
  263. charging - Battery is in charge mode
  264. discharging - Battery is being used to power the EMTA"
  265. ::= { saBattery 18 }
  266. saBatteryRfAmpPower OBJECT-TYPE
  267. SYNTAX INTEGER {
  268. enable(0),
  269. disable(1)
  270. }
  271. MAX-ACCESS read-write
  272. STATUS current
  273. DESCRIPTION
  274. "Enable/Disable the upstream RF amplifier operating in battery mode.
  275. 0: Always enable upstream RF amplifier
  276. 1: Shut off the bias current to the upstream RF amplifier when no packets are being sent
  277. and the EMTA is operating from battery power.
  278. Note: Mode=1: enable RF Amp only when a packet needs to be sent and unit is operating
  279. from battery."
  280. DEFVAL { 1 }
  281. ::= { saBattery 19 }
  282. -- ================================
  283. -- MTA BATTERY ENDPOINT STARTS HERE
  284. -- ================================
  285. saMtaBatteryEndPointTable OBJECT-TYPE
  286. SYNTAX SEQUENCE OF SaMtaBatteryEndPointEntry
  287. MAX-ACCESS not-accessible
  288. STATUS current
  289. DESCRIPTION
  290. "This table describes the MTA EndPoint
  291. battery configuration. "
  292. ::= { saBattery 1001 }
  293. saMtaBatteryEndPointEntry OBJECT-TYPE
  294. SYNTAX SaMtaBatteryEndPointEntry
  295. MAX-ACCESS not-accessible
  296. STATUS current
  297. DESCRIPTION
  298. " List of attributes for a single MTA endpoint interface."
  299. INDEX { ifIndex }
  300. ::= { saMtaBatteryEndPointTable 1 }
  301. SaMtaBatteryEndPointEntry ::= SEQUENCE {
  302. saMtaBatteryEndPntPower INTEGER,
  303. saMtaBatteryEndPntRingPower INTEGER,
  304. saMtaBatteryEndPntOffHookPower INTEGER
  305. }
  306. saMtaBatteryEndPntPower OBJECT-TYPE
  307. SYNTAX INTEGER {
  308. enable(0),
  309. disable-later(1),
  310. disable-always(2)
  311. }
  312. MAX-ACCESS read-write
  313. STATUS current
  314. DESCRIPTION
  315. "Line working way while operating in battery power.
  316. 0: Enable telephone line (if otherwise enabled) when EMTA is operating
  317. on battery power
  318. 1: Enable telephone line (if otherwise enabled) when EMTA is operating
  319. on battery power only if this line is in-use at the time of power loss.
  320. Disable line after this phone call is completed.
  321. 2: Disable line when EMTA is operating on battery power.
  322. Note: If Line 1 and Line 2 are both disabled then shutdown VBH and VBL.
  323. Default value for line 1 is enable(0) and for line 2 is disable-later(1)."
  324. ::= { saMtaBatteryEndPointEntry 1 }
  325. saMtaBatteryEndPntRingPower OBJECT-TYPE
  326. SYNTAX INTEGER {
  327. enable(0),
  328. enable-reduced(1),
  329. disable-later(2),
  330. disable-always(3)
  331. }
  332. MAX-ACCESS read-write
  333. STATUS current
  334. DESCRIPTION
  335. "Line ring power setting while operating in battery power.
  336. 0: Provide normal voltage ring to telephone line number when EMTA is operating
  337. on battery power and line is enabled.
  338. 1: Provide reduced voltage ring signal to telephone line number to save power
  339. when EMTA is operating on battery power and line is enabled.
  340. 2: Provide reduced voltage ring signal to telephone line number to save power
  341. when EMTA is operating on battery power and disable power to ring signal on line
  342. when battery is in 'Low power' status and line is enabled.
  343. 3: Disable ring signal on Line on battery power.
  344. Note: For 3349 based producs:
  345. Mode 0: VBH = -62V when no ring, VBH = -83V if either phone line is ringing.
  346. Mode 1: (on battery) VBH = -62V when no line is ringing, VBH = -62 if either
  347. line is ringing. (on AC power) VBH = -62V when no line is ringing, VBH = -83V
  348. if either line is ringing.
  349. Note for 3368 based products:
  350. Mode 0: VBH = -59V when no ring, VBH = -98V if either phone line is ringing.
  351. Mode 1: (on battery) VBH = -59V when no line is ringing, VBH = -89 if either
  352. line is ringing. (on AC power) VBH = -59V when no line is ringing, VBH = -98V
  353. if either line is ringing."
  354. DEFVAL { 1 }
  355. ::= { saMtaBatteryEndPointEntry 2 }
  356. saMtaBatteryEndPntOffHookPower OBJECT-TYPE
  357. SYNTAX INTEGER {
  358. normal(0),
  359. reduced(1)
  360. }
  361. MAX-ACCESS read-write
  362. STATUS current
  363. DESCRIPTION
  364. "Line offhook power setting while operating in battery power.
  365. 0: Provide normal off-hook voltage to telephone line number when EMTA is
  366. operating on battery power and line is enabled.
  367. 1: Provide reduced off-hook voltage to telephone line number to save power
  368. when EMTA is operating on battery power and line is enabled.
  369. Note: Mode=0: VBL = -25V
  370. Mode=1: (on battery)VBL = -20V(on AC power)VBL = -25V"
  371. DEFVAL { 1 }
  372. ::= { saMtaBatteryEndPointEntry 3 }
  373. -- ================================
  374. -- saBatteryCapacityMib
  375. -- Note: The following MIB tree is applicable only to HW DPX2213.
  376. -- All other HW models do not support the MIB tree below.
  377. -- ================================
  378. saBatteryCapacityMib OBJECT IDENTIFIER ::= { saBattery 1002 }
  379. saBatteryCapacityManualTestA OBJECT-TYPE
  380. SYNTAX INTEGER {
  381. normalOperation(0),
  382. testActive(1),
  383. testError(2)
  384. }
  385. MAX-ACCESS read-write
  386. STATUS current
  387. DESCRIPTION
  388. "Initiates a manual internal Battery Test for slot A to determine
  389. the true battery capacity. The battery test will first ensure
  390. that a full charge is present on the battery (charging first if
  391. necessary). It will then perform a full discharge of the
  392. battery in force discharge mode. At the conclusion of the test,
  393. the battery will then be re-charged to full charge at which point
  394. the test will be complete.
  395. This object will read back as a 1 during the battery test.
  396. Reading 0 will indicate the test is complete. Manually running a
  397. test with this MIB will reset the normal schedule for
  398. automatically initiating the battery test.
  399. This object will report an error if unable to perform the battery
  400. test. Possible causes include:
  401. 1. no AC present
  402. 2. battery test already started on another battery slot.
  403. After the test has completed, test results are available in the
  404. following objects:
  405. 1. saBatteryRecoverableCapacityA
  406. 2. saBatteryReplace
  407. 3. saBatteryMissing
  408. 4. saBatteryLow
  409. WARNING: This test will run to completion and will impact an
  410. EMTA's ability to provide full-rated battery backup during the test.
  411. This test should only be run for diagnostic purposes and never in
  412. an environment where battery backed-up EMTA operation is critical.
  413. This test could take up to 24 hours to complete and update the
  414. results.
  415. WARNING: Repeatedly forcing the Battery Capacity test will reduce
  416. the battery lifetime. The battery test should not be run more than
  417. once every 30 days."
  418. DEFVAL { 0 }
  419. ::= { saBatteryCapacityMib 1 }
  420. saBatteryCapacityManualTestB OBJECT-TYPE
  421. SYNTAX INTEGER {
  422. normalOperation(0),
  423. testActive(1),
  424. testError(2)
  425. }
  426. MAX-ACCESS read-write
  427. STATUS current
  428. DESCRIPTION
  429. "Initiates a manual internal Battery Test for slot B to determine
  430. the true battery capacity. The battery test will first ensure
  431. that a full charge is present on the battery (charging first if
  432. necessary). It will then perform a full discharge of the
  433. battery in force discharge mode. At the conclusion of the test,
  434. the battery will then be re-charged to full charge at which point
  435. the test will be complete.
  436. This object will read back as a 1 during the battery test.
  437. Reading 0 will indicate the test is complete. Manually running a
  438. test with this MIB will reset the normal schedule for
  439. automatically initiating the battery test.
  440. This object will report an error if unable to perform the battery
  441. test. Possible causes include:
  442. 1. no AC present
  443. 2. battery test already started on another battery slot.
  444. After the test has completed, test results are available in the
  445. following objects:
  446. 1. saBatteryRecoverableCapacityB
  447. 2. saBatteryReplace
  448. 3. saBatteryMissing
  449. 4. saBatteryLow
  450. WARNING: This test will run to completion and will impact an
  451. EMTA's ability to provide full-rated battery backup during the test.
  452. This test should only be run for diagnostic purposes and never in
  453. an environment where battery backed-up EMTA operation is critical.
  454. This test could take up to 24 hours to complete and update the
  455. results.
  456. WARNING: Repeatedly forcing the Battery Capacity test will reduce
  457. the battery lifetime. The battery test should not be run more than
  458. once every 30 days."
  459. DEFVAL { 0 }
  460. ::= { saBatteryCapacityMib 2 }
  461. saBatteryCapacityTestControl OBJECT-TYPE
  462. SYNTAX INTEGER {
  463. manual(0),
  464. scheduled(1)
  465. }
  466. MAX-ACCESS read-write
  467. STATUS current
  468. DESCRIPTION
  469. "Configures the operation of the forced discharge battery capacity
  470. test.
  471. Not scheduled(0) - The battery capacity test will only run when
  472. initiated via the saBatteryCapacityManualTest[A|B] object.
  473. scheduled(1) - The battery capacity test runs at a scheduled
  474. interval defined in saBatteryCapacityScheduleInterval."
  475. DEFVAL { 1 }
  476. ::= { saBatteryCapacityMib 3 }
  477. saBatteryCapacityScheduleInterval OBJECT-TYPE
  478. SYNTAX INTEGER (30..365)
  479. UNITS "days"
  480. MAX-ACCESS read-write
  481. STATUS current
  482. DESCRIPTION
  483. "The interval which to run the scheduled Battery Capacity Test.
  484. The number of days specified by this object is added to the
  485. saBatteryLastCapacityTest[A|B] date to determine if a capacity
  486. test is required. If the current date is equal to or exceeds
  487. saBatteryLastCapacityTest[A|B] + saBatteryCapacityScheduleInterval,
  488. AND saBatteryCapacityTestControl is set to scheduled, then a
  489. capacity test will begin immediately."
  490. DEFVAL { 180 }
  491. ::= { saBatteryCapacityMib 4 }
  492. -- =================================
  493. -- HW COMPONENT OPERATION ON BATTERY
  494. -- =================================
  495. saBatteryIfOperationTable OBJECT-TYPE
  496. SYNTAX SEQUENCE OF SaBatteryIfOperationEntry
  497. MAX-ACCESS not-accessible
  498. STATUS current
  499. DESCRIPTION
  500. "This table describes the interface operation on battery
  501. configuration."
  502. ::= { saBattery 1003 }
  503. saBatteryIfOperationEntry OBJECT-TYPE
  504. SYNTAX SaBatteryIfOperationEntry
  505. MAX-ACCESS not-accessible
  506. STATUS current
  507. DESCRIPTION
  508. "Per hardware interface battery support definition."
  509. INDEX { saBatteryIfOperIndex }
  510. ::= { saBatteryIfOperationTable 1 }
  511. SaBatteryIfOperationEntry ::= SEQUENCE {
  512. saBatteryIfOperIndex INTEGER,
  513. saBatteryIfOperBatteryMode INTEGER,
  514. saBatteryIfOperOnTime INTEGER
  515. }
  516. saBatteryIfOperIndex OBJECT-TYPE
  517. SYNTAX INTEGER {
  518. leds(1),
  519. ethernet(2),
  520. usbClientPorts(3),
  521. wireless(4)
  522. }
  523. MAX-ACCESS not-accessible
  524. STATUS current
  525. DESCRIPTION
  526. "Interface definition for the purpose of battery power save modes.
  527. ethernet(2) includes MoCA and DMS if present."
  528. ::= { saBatteryIfOperationEntry 1 }
  529. saBatteryIfOperBatteryMode OBJECT-TYPE
  530. SYNTAX INTEGER {
  531. off(0),
  532. onAlways(1),
  533. onTimerOff(2)
  534. }
  535. MAX-ACCESS read-write
  536. STATUS current
  537. DESCRIPTION
  538. "Defines if the hardware component is enabled or disabled when
  539. the unit operates on battery power. Some interfaces (i.e. LEDs) may
  540. operate in a mode that requires reduced power when set to disabled.
  541. If set to off(0) the unit the selected interface will be disabled as
  542. soon as possible after beginning to run on AC power.
  543. Some interfaces (i.e. DMS and harddisks) may first be placed
  544. in a known safe power down state before power to these interfaces is
  545. disabled. If set to onTimerOff(2), the interface is enabled only for
  546. time defined in saBatteryIfOperOnTime."
  547. DEFVAL { 0 }
  548. ::= { saBatteryIfOperationEntry 2 }
  549. saBatteryIfOperOnTime OBJECT-TYPE
  550. SYNTAX INTEGER (0..28800)
  551. UNITS "seconds"
  552. MAX-ACCESS read-write
  553. STATUS current
  554. DESCRIPTION
  555. "Defines time for which the hardware component will stay
  556. enabled after the unit begins to run on battery power if the interface is
  557. set to on-timer-off mode. After this time expires the interface will
  558. be disabled."
  559. DEFVAL { 0 }
  560. ::= { saBatteryIfOperationEntry 3 }
  561. END