Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

878 lines
32 KiB

  1. --
  2. -- WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
  3. --
  4. -- This Microsoft private RSVP MIB is still in development and
  5. -- can change without notice.
  6. --
  7. --
  8. ACSServer-MIB DEFINITIONS ::= BEGIN
  9. IMPORTS
  10. enterprises,
  11. OBJECT-TYPE,
  12. Counter
  13. FROM RFC1155-SMI
  14. microsoft,
  15. software
  16. FROM MSFT-MIB;
  17. -- microsoft OBJECT IDENTIFIER ::= { enterprises 311 }
  18. -- software OBJECT IDENTIFIER ::= { microsoft 1 }
  19. acsService OBJECT IDENTIFIER ::= { software 15 }
  20. acsSvcStats OBJECT IDENTIFIER ::= { acsService 1 }
  21. acsInterfaces OBJECT IDENTIFIER ::= { acsService 2 }
  22. acsMsidlpmStats OBJECT IDENTIFIER ::= { acsService 3 }
  23. acsSvcStatsIfNumber OBJECT-TYPE
  24. SYNTAX INTEGER
  25. ACCESS read-only
  26. STATUS mandatory
  27. DESCRIPTION
  28. "The number of network interfaces on this
  29. system detected by ACS server."
  30. ::= { acsSvcStats 1 }
  31. acsSvcStatsActiveApiSessions OBJECT-TYPE
  32. SYNTAX INTEGER
  33. ACCESS read-only
  34. STATUS mandatory
  35. DESCRIPTION
  36. "This is the total number of API sessions
  37. active on this ACS Server"
  38. ::= { acsSvcStats 2 }
  39. acsSvcStatsActiveApiSockets OBJECT-TYPE
  40. SYNTAX INTEGER
  41. ACCESS read-only
  42. STATUS mandatory
  43. DESCRIPTION
  44. "This is the total number of API sockets
  45. active on this ACS Server"
  46. ::= { acsSvcStats 3 }
  47. acsSvcStatsReceivedApiPathRequests OBJECT-TYPE
  48. SYNTAX Counter
  49. ACCESS read-only
  50. STATUS mandatory
  51. DESCRIPTION
  52. "This is the total number of Path requests
  53. received from QoS aware applications by this ACS Server"
  54. ::= { acsSvcStats 4 }
  55. acsSvcStatsReceivedApiResvRequests OBJECT-TYPE
  56. SYNTAX Counter
  57. ACCESS read-only
  58. STATUS mandatory
  59. DESCRIPTION
  60. "This is the total number of Resv requests
  61. received from QoS aware applications by this ACS Server"
  62. ::= { acsSvcStats 5 }
  63. acsSvcStatsFailedApiRequests OBJECT-TYPE
  64. SYNTAX Counter
  65. ACCESS read-only
  66. STATUS mandatory
  67. DESCRIPTION
  68. "This is the total number of requests received from QoS
  69. aware applications by this ACS Server which failed"
  70. ::= { acsSvcStats 6 }
  71. acsSvcStatsFailedApiSends OBJECT-TYPE
  72. SYNTAX Counter
  73. ACCESS read-only
  74. STATUS mandatory
  75. DESCRIPTION
  76. "This is the total number of requests which could not be sent to QoS
  77. aware applications by this ACS Server"
  78. ::= { acsSvcStats 7 }
  79. acsSvcStatsApiNotifications OBJECT-TYPE
  80. SYNTAX Counter
  81. ACCESS read-only
  82. STATUS mandatory
  83. DESCRIPTION
  84. "This is the total number of notifications sent by this
  85. ACS Server to QoS aware applications"
  86. ::= { acsSvcStats 8 }
  87. acsSvcStatsApiNotificationBytes OBJECT-TYPE
  88. SYNTAX Counter
  89. ACCESS read-only
  90. STATUS mandatory
  91. DESCRIPTION
  92. "This is the total number of bytes in notifications sent by this
  93. ACS Server to QoS aware applications"
  94. ::= { acsSvcStats 9 }
  95. acsSvcStatsNetSockets OBJECT-TYPE
  96. SYNTAX INTEGER
  97. ACCESS read-only
  98. STATUS mandatory
  99. DESCRIPTION
  100. "This is the total number of network sockets opened
  101. by this ACS Server currently"
  102. ::= { acsSvcStats 10 }
  103. acsSvcStatsTimers OBJECT-TYPE
  104. SYNTAX INTEGER
  105. ACCESS read-only
  106. STATUS mandatory
  107. DESCRIPTION
  108. "This is the total number of timer events
  109. active in this ACS Server currently"
  110. ::= { acsSvcStats 11 }
  111. -- the Interfaces table
  112. -- The Interfaces table contains information on the entity's
  113. -- interfaces. Each interface is thought of as being
  114. -- attached to a `subnetwork'.
  115. acsIfStatsTable OBJECT-TYPE
  116. SYNTAX SEQUENCE OF AcsIfStatsEntry
  117. ACCESS not-accessible
  118. STATUS mandatory
  119. DESCRIPTION
  120. "A list of interface entries. The number of
  121. entries is given by the value of ifNumber."
  122. ::= { acsInterfaces 1 }
  123. acsIfStatsEntry OBJECT-TYPE
  124. SYNTAX AcsIfStatsEntry
  125. ACCESS not-accessible
  126. STATUS mandatory
  127. DESCRIPTION
  128. "An interface entry containing objects at the
  129. subnetwork layer and below for a particular
  130. interface."
  131. INDEX { acsIfStatsIndex }
  132. ::= { acsIfStatsTable 1 }
  133. AcsIfStatsEntry ::=
  134. SEQUENCE {
  135. acsIfStatsIndex
  136. INTEGER,
  137. acsIfStatsIpAddr
  138. IpAddress,
  139. acsIfStatsRawIpSentBytes
  140. Counter,
  141. acsIfStatsRawIpReceivedBytes
  142. Counter,
  143. acsIfStatsReceivedRsvpPathMsgs
  144. Counter,
  145. acsIfStatsReceivedRsvpResvMsgs
  146. Counter,
  147. acsIfStatsReceivedRsvpPathErrMsgs
  148. Counter,
  149. acsIfStatsReceivedRsvpResvErrMsgs
  150. Counter,
  151. acsIfStatsReceivedRsvpPathTearMsgs
  152. Counter,
  153. acsIfStatsReceivedRsvpResvTearMsgs
  154. Counter,
  155. acsIfStatsReceivedRsvpConfirmMsgs
  156. Counter,
  157. acsIfStatsSentRsvpPathMsgs
  158. Counter,
  159. acsIfStatsSentRsvpResvMsgs
  160. Counter,
  161. acsIfStatsSentRsvpPathErrMsgs
  162. Counter,
  163. acsIfStatsSentRsvpResvErrMsgs
  164. Counter,
  165. acsIfStatsSentRsvpPathTearMsgs
  166. Counter,
  167. acsIfStatsSentRsvpResvTearMsgs
  168. Counter,
  169. acsIfStatsSentRsvpConfirmMsgs
  170. Counter,
  171. acsIfStatsAdmissionControlFailures
  172. Counter,
  173. acsIfStatsPolicyControlFailures
  174. Counter,
  175. acsIfStatsOtherFailures
  176. Counter,
  177. acsIfStatsInBlockadeStateResvs
  178. Counter,
  179. acsIfStatsResvTimeOuts
  180. Counter,
  181. acsIfStatsPathTimeOuts
  182. Counter,
  183. acsIfStatsReceiveFailsBigMsg
  184. Counter,
  185. acsIfStatsSendFailsBigMsg
  186. Counter,
  187. acsIfStatsReceiveFailsNoMemory
  188. Counter,
  189. acsIfStatsSendFailsNoMemory
  190. Counter,
  191. acsIfStatsActiveFlows
  192. INTEGER,
  193. acsIfStatsAllocatedBandwidthBits
  194. INTEGER,
  195. acsIfStatsMaxAllocatedBandwidthBits
  196. INTEGER
  197. }
  198. acsIfStatsIndex OBJECT-TYPE
  199. SYNTAX INTEGER
  200. ACCESS read-only
  201. STATUS mandatory
  202. DESCRIPTION
  203. "A unique value for each interface. Its value
  204. ranges between 1 and the value of ifNumber. The
  205. value for each interface must remain constant at
  206. least from one re-initialization of the entity's
  207. network management system to the next re-
  208. initialization."
  209. ::= { acsIfStatsEntry 1 }
  210. acsIfStatsIpAddr OBJECT-TYPE
  211. SYNTAX IpAddress
  212. ACCESS read-only
  213. STATUS mandatory
  214. DESCRIPTION
  215. "The IP address of the interface to which these
  216. statistics pertains."
  217. ::= { acsIfStatsEntry 2 }
  218. acsIfStatsRawIpSentBytes OBJECT-TYPE
  219. SYNTAX Counter
  220. ACCESS read-only
  221. STATUS mandatory
  222. DESCRIPTION
  223. "This is the total number of RAW IP
  224. BYTEs sent by ACS Server"
  225. ::= { acsIfStatsEntry 3 }
  226. acsIfStatsRawIpReceivedBytes OBJECT-TYPE
  227. SYNTAX Counter
  228. ACCESS read-only
  229. STATUS mandatory
  230. DESCRIPTION
  231. "This is the total number of RAW IP
  232. BYTEs received by ACS Server"
  233. ::= { acsIfStatsEntry 4 }
  234. acsIfStatsReceivedRsvpPathMsgs OBJECT-TYPE
  235. SYNTAX Counter
  236. ACCESS read-only
  237. STATUS mandatory
  238. DESCRIPTION
  239. "This is the total number of RSVP Path messages
  240. received by this ACS Server"
  241. ::= { acsIfStatsEntry 5 }
  242. acsIfStatsReceivedRsvpResvMsgs OBJECT-TYPE
  243. SYNTAX Counter
  244. ACCESS read-only
  245. STATUS mandatory
  246. DESCRIPTION
  247. "This is the total number of RSVP Resv messages
  248. received by this ACS Server"
  249. ::= { acsIfStatsEntry 6 }
  250. acsIfStatsReceivedRsvpPathErrMsgs OBJECT-TYPE
  251. SYNTAX Counter
  252. ACCESS read-only
  253. STATUS mandatory
  254. DESCRIPTION
  255. "This is the total number of RSVP PathErr messages
  256. received by this ACS Server"
  257. ::= { acsIfStatsEntry 7 }
  258. acsIfStatsReceivedRsvpResvErrMsgs OBJECT-TYPE
  259. SYNTAX Counter
  260. ACCESS read-only
  261. STATUS mandatory
  262. DESCRIPTION
  263. "This is the total number of RSVP ResvErr messages
  264. received by this ACS Server"
  265. ::= { acsIfStatsEntry 8 }
  266. acsIfStatsReceivedRsvpPathTearMsgs OBJECT-TYPE
  267. SYNTAX Counter
  268. ACCESS read-only
  269. STATUS mandatory
  270. DESCRIPTION
  271. "This is the total number of RSVP PathTear messages
  272. received by this ACS Server"
  273. ::= { acsIfStatsEntry 9 }
  274. acsIfStatsReceivedRsvpResvTearMsgs OBJECT-TYPE
  275. SYNTAX Counter
  276. ACCESS read-only
  277. STATUS mandatory
  278. DESCRIPTION
  279. "This is the total number of RSVP ResvTear messages
  280. received by this ACS Server"
  281. ::= { acsIfStatsEntry 10 }
  282. acsIfStatsReceivedRsvpConfirmMsgs OBJECT-TYPE
  283. SYNTAX Counter
  284. ACCESS read-only
  285. STATUS mandatory
  286. DESCRIPTION
  287. "This is the total number of RSVP Confirm messages
  288. received by this ACS Server"
  289. ::= { acsIfStatsEntry 11 }
  290. acsIfStatsSentRsvpPathMsgs OBJECT-TYPE
  291. SYNTAX Counter
  292. ACCESS read-only
  293. STATUS mandatory
  294. DESCRIPTION
  295. "This is the total number of RSVP Path messages
  296. sent by this ACS Server"
  297. ::= { acsIfStatsEntry 12 }
  298. acsIfStatsSentRsvpResvMsgs OBJECT-TYPE
  299. SYNTAX Counter
  300. ACCESS read-only
  301. STATUS mandatory
  302. DESCRIPTION
  303. "This is the total number of RSVP Resv messages
  304. sent by this ACS Server"
  305. ::= { acsIfStatsEntry 13 }
  306. acsIfStatsSentRsvpPathErrMsgs OBJECT-TYPE
  307. SYNTAX Counter
  308. ACCESS read-only
  309. STATUS mandatory
  310. DESCRIPTION
  311. "This is the total number of RSVP PathErr messages
  312. sent by this ACS Server"
  313. ::= { acsIfStatsEntry 14 }
  314. acsIfStatsSentRsvpResvErrMsgs OBJECT-TYPE
  315. SYNTAX Counter
  316. ACCESS read-only
  317. STATUS mandatory
  318. DESCRIPTION
  319. "This is the total number of RSVP ResvErr messages
  320. sent by this ACS Server"
  321. ::= { acsIfStatsEntry 15 }
  322. acsIfStatsSentRsvpPathTearMsgs OBJECT-TYPE
  323. SYNTAX Counter
  324. ACCESS read-only
  325. STATUS mandatory
  326. DESCRIPTION
  327. "This is the total number of RSVP PathTear messages
  328. sent by this ACS Server"
  329. ::= { acsIfStatsEntry 16 }
  330. acsIfStatsSentRsvpResvTearMsgs OBJECT-TYPE
  331. SYNTAX Counter
  332. ACCESS read-only
  333. STATUS mandatory
  334. DESCRIPTION
  335. "This is the total number of RSVP ResvTear messages
  336. sent by this ACS Server"
  337. ::= { acsIfStatsEntry 17 }
  338. acsIfStatsSentRsvpConfirmMsgs OBJECT-TYPE
  339. SYNTAX Counter
  340. ACCESS read-only
  341. STATUS mandatory
  342. DESCRIPTION
  343. "This is the total number of RSVP Confirm messages
  344. sent by this ACS Server"
  345. ::= { acsIfStatsEntry 18 }
  346. acsIfStatsAdmissionControlFailures OBJECT-TYPE
  347. SYNTAX Counter
  348. ACCESS read-only
  349. STATUS mandatory
  350. DESCRIPTION
  351. "This is the total number of Admission Control errors generated
  352. by this ACS Server"
  353. ::= { acsIfStatsEntry 19 }
  354. acsIfStatsPolicyControlFailures OBJECT-TYPE
  355. SYNTAX Counter
  356. ACCESS read-only
  357. STATUS mandatory
  358. DESCRIPTION
  359. "This is the total number of Policy Control errors generated
  360. by this ACS Server"
  361. ::= { acsIfStatsEntry 20 }
  362. acsIfStatsOtherFailures OBJECT-TYPE
  363. SYNTAX Counter
  364. ACCESS read-only
  365. STATUS mandatory
  366. DESCRIPTION
  367. "This is the total number of other types errors generated
  368. by this ACS Server"
  369. ::= { acsIfStatsEntry 21 }
  370. acsIfStatsInBlockadeStateResvs OBJECT-TYPE
  371. SYNTAX Counter
  372. ACCESS read-only
  373. STATUS mandatory
  374. DESCRIPTION
  375. "This is the total number of Resv State Blocks in
  376. blockade state in this ACS Server"
  377. ::= { acsIfStatsEntry 22 }
  378. acsIfStatsResvTimeOuts OBJECT-TYPE
  379. SYNTAX Counter
  380. ACCESS read-only
  381. STATUS mandatory
  382. DESCRIPTION
  383. "This is the total number of Reservations which have
  384. timed out in this ACS Server"
  385. ::= { acsIfStatsEntry 23 }
  386. acsIfStatsPathTimeOuts OBJECT-TYPE
  387. SYNTAX Counter
  388. ACCESS read-only
  389. STATUS mandatory
  390. DESCRIPTION
  391. "This is the total number of Path states which have
  392. timed out in this ACS Server"
  393. ::= { acsIfStatsEntry 24 }
  394. acsIfStatsReceiveFailsBigMsg OBJECT-TYPE
  395. SYNTAX Counter
  396. ACCESS read-only
  397. STATUS mandatory
  398. DESCRIPTION
  399. "This is the total number of RSVP messages which could
  400. not be received by this ACS Server because they are too big to
  401. fit in the message buffer"
  402. ::= { acsIfStatsEntry 25 }
  403. acsIfStatsSendFailsBigMsg OBJECT-TYPE
  404. SYNTAX Counter
  405. ACCESS read-only
  406. STATUS mandatory
  407. DESCRIPTION
  408. "This is the total number of RSVP messages which could
  409. not be sent by this ACS Server because they are too big to
  410. fit in the message buffer"
  411. ::= { acsIfStatsEntry 26 }
  412. acsIfStatsReceiveFailsNoMemory OBJECT-TYPE
  413. SYNTAX Counter
  414. ACCESS read-only
  415. STATUS mandatory
  416. DESCRIPTION
  417. "This is the total number of RSVP messages which could
  418. not be sent by this ACS Server because there was no free
  419. message buffer"
  420. ::= { acsIfStatsEntry 27 }
  421. acsIfStatsSendFailsNoMemory OBJECT-TYPE
  422. SYNTAX Counter
  423. ACCESS read-only
  424. STATUS mandatory
  425. DESCRIPTION
  426. "This is the total number of RSVP messages which could
  427. not be sent by this ACS Server because there was no free
  428. message buffer"
  429. ::= { acsIfStatsEntry 28 }
  430. acsIfStatsActiveFlows OBJECT-TYPE
  431. SYNTAX INTEGER
  432. ACCESS read-only
  433. STATUS mandatory
  434. DESCRIPTION
  435. "This is the total number flows currently active
  436. in this ACS Server currently"
  437. ::= { acsIfStatsEntry 29 }
  438. acsIfStatsAllocatedBandwidthBits OBJECT-TYPE
  439. SYNTAX INTEGER
  440. ACCESS read-only
  441. STATUS mandatory
  442. DESCRIPTION
  443. "This is the total bandwidth allocated currently
  444. by this ACS Server"
  445. ::= { acsIfStatsEntry 30 }
  446. acsIfStatsMaxAllocatedBandwidthBits OBJECT-TYPE
  447. SYNTAX INTEGER
  448. ACCESS read-only
  449. STATUS mandatory
  450. DESCRIPTION
  451. "This is the maximum bandwidth ever allocated
  452. by this ACS Server"
  453. ::= { acsIfStatsEntry 31 }
  454. -- the MSIDLPM table
  455. -- The MSIDLPM table contains information on the policy based
  456. -- admission control performed by Microsoft supplied Identity LPM.
  457. -- Statistics are maintained for each subnetwork managed by this ACS
  458. acsMsidlpmStatsTable OBJECT-TYPE
  459. SYNTAX SEQUENCE OF MsidlpmStatsEntry
  460. ACCESS not-accessible
  461. STATUS mandatory
  462. DESCRIPTION
  463. "A list of interface entries. The number of
  464. entries is given by the value of ifNumber."
  465. ::= { acsMsidlpmStats 1 }
  466. acsMsidlpmStatsEntry OBJECT-TYPE
  467. SYNTAX MsidlpmStatsEntry
  468. ACCESS not-accessible
  469. STATUS mandatory
  470. DESCRIPTION
  471. "An interface entry containing objects at the
  472. subnetwork layer and below for a particular
  473. interface."
  474. INDEX { acsMsidlpmStatsIndex }
  475. ::= { acsMsidlpmStatsTable 1 }
  476. MsidlpmStatsEntry ::=
  477. SEQUENCE {
  478. acsMsidlpmStatsIndex
  479. INTEGER,
  480. acsMsidlpmStatsSubnetAddr
  481. IpAddress,
  482. acsMsidlpmSendersAccepted
  483. Counter,
  484. acsMsidlpmSenderChgAccepted
  485. Counter,
  486. acsMsidlpmRejSndFlowRate
  487. Counter,
  488. acsMsidlpmRejSndPeakRate
  489. Counter,
  490. acsMsidlpmRejSndSumFlowRate
  491. Counter,
  492. acsMsidlpmRejSndSumPeakRate
  493. Counter,
  494. acsMsidlpmRejSndIdChange
  495. Counter,
  496. acsMsidlpmRejSndDuration
  497. Counter,
  498. acsMsidlpmRejSndCount
  499. Counter,
  500. acsMsidlpmRejSndOthersPolicies
  501. Counter,
  502. acsMsidlpmReceiversAccepted
  503. Counter,
  504. acsMsidlpmReceiverChgAccepted
  505. Counter,
  506. acsMsidlpmRejRecvFlowRate
  507. Counter,
  508. acsMsidlpmRejRecvPeakRate
  509. Counter,
  510. acsMsidlpmRejRecvSumFlowRate
  511. Counter,
  512. acsMsidlpmRejRecvSumPeakRate
  513. Counter,
  514. acsMsidlpmRejRecvIdChange
  515. Counter,
  516. acsMsidlpmRejRecvDuration
  517. Counter,
  518. acsMsidlpmRejRecvCount
  519. Counter,
  520. acsMsidlpmRejRecvOthersPolicies
  521. Counter,
  522. acsMsidlpmBadIdentityPes
  523. Counter,
  524. acsMsidlpmDsCacheSize
  525. INTEGER
  526. }
  527. acsMsidlpmStatsIndex OBJECT-TYPE
  528. SYNTAX INTEGER
  529. ACCESS read-only
  530. STATUS mandatory
  531. DESCRIPTION
  532. "A unique value for each subnet. Its value
  533. ranges between 1 and the value of ifNumber. The
  534. value for each subnet must remain constant at
  535. least from one re-initialization of the entity's
  536. network management system to the next re-
  537. initialization."
  538. ::= { acsMsidlpmStatsEntry 1 }
  539. acsMsidlpmStatsSubnetAddr OBJECT-TYPE
  540. SYNTAX IpAddress
  541. ACCESS read-only
  542. STATUS mandatory
  543. DESCRIPTION
  544. "The IP address of the subnet to which these
  545. statistics pertains."
  546. ::= { acsMsidlpmStatsEntry 2 }
  547. acsMsidlpmSendersAccepted OBJECT-TYPE
  548. SYNTAX Counter
  549. ACCESS read-only
  550. STATUS mandatory
  551. DESCRIPTION
  552. "This is the total number of senders
  553. whose PATH messages were accepted"
  554. ::= { acsMsidlpmStatsEntry 3 }
  555. acsMsidlpmSenderChgAccepted OBJECT-TYPE
  556. SYNTAX Counter
  557. ACCESS read-only
  558. STATUS mandatory
  559. DESCRIPTION
  560. "This is the total number of senders
  561. whose PATH message changes were accepted"
  562. ::= { acsMsidlpmStatsEntry 4 }
  563. acsMsidlpmRejSndFlowRate OBJECT-TYPE
  564. SYNTAX Counter
  565. ACCESS read-only
  566. STATUS mandatory
  567. DESCRIPTION
  568. "This is the total number of senders
  569. whose PATH message were rejected because of
  570. data flow rate policy"
  571. ::= { acsMsidlpmStatsEntry 5 }
  572. acsMsidlpmRejSndPeakRate OBJECT-TYPE
  573. SYNTAX Counter
  574. ACCESS read-only
  575. STATUS mandatory
  576. DESCRIPTION
  577. "This is the total number of senders
  578. whose PATH message were rejected because of
  579. peak data rate policy"
  580. ::= { acsMsidlpmStatsEntry 6 }
  581. acsMsidlpmRejSndSumFlowRate OBJECT-TYPE
  582. SYNTAX Counter
  583. ACCESS read-only
  584. STATUS mandatory
  585. DESCRIPTION
  586. "This is the total number of senders
  587. whose PATH message were rejected because of
  588. aggregate data flow rate policy"
  589. ::= { acsMsidlpmStatsEntry 7 }
  590. acsMsidlpmRejSndSumPeakRate OBJECT-TYPE
  591. SYNTAX Counter
  592. ACCESS read-only
  593. STATUS mandatory
  594. DESCRIPTION
  595. "This is the total number of senders
  596. whose PATH message were rejected because of
  597. aggregate peak data rate policy"
  598. ::= { acsMsidlpmStatsEntry 8 }
  599. acsMsidlpmRejSndIdChange OBJECT-TYPE
  600. SYNTAX Counter
  601. ACCESS read-only
  602. STATUS mandatory
  603. DESCRIPTION
  604. "This is the total number of senders
  605. whose PATH message were rejected because of
  606. identity change"
  607. ::= { acsMsidlpmStatsEntry 9 }
  608. acsMsidlpmRejSndDuration OBJECT-TYPE
  609. SYNTAX Counter
  610. ACCESS read-only
  611. STATUS mandatory
  612. DESCRIPTION
  613. "This is the total number of senders
  614. whose PATH message were rejected because of
  615. flow duration policy"
  616. ::= { acsMsidlpmStatsEntry 10 }
  617. acsMsidlpmRejSndCount OBJECT-TYPE
  618. SYNTAX Counter
  619. ACCESS read-only
  620. STATUS mandatory
  621. DESCRIPTION
  622. "This is the total number of senders
  623. whose PATH message were rejected because of
  624. flow count policy"
  625. ::= { acsMsidlpmStatsEntry 11 }
  626. acsMsidlpmRejSndOthersPolicies OBJECT-TYPE
  627. SYNTAX Counter
  628. ACCESS read-only
  629. STATUS mandatory
  630. DESCRIPTION
  631. "This is the total number of senders
  632. whose PATH message were rejected because of
  633. policies other than flow rate, peak rate,
  634. flow duration and flow count"
  635. ::= { acsMsidlpmStatsEntry 12 }
  636. acsMsidlpmReceiversAccepted OBJECT-TYPE
  637. SYNTAX Counter
  638. ACCESS read-only
  639. STATUS mandatory
  640. DESCRIPTION
  641. "This is the total number of receivers
  642. whose RESV messages were accepted"
  643. ::= { acsMsidlpmStatsEntry 13 }
  644. acsMsidlpmReceiverChgAccepted OBJECT-TYPE
  645. SYNTAX Counter
  646. ACCESS read-only
  647. STATUS mandatory
  648. DESCRIPTION
  649. "This is the total number of receivers
  650. whose RESV message changes were accepted"
  651. ::= { acsMsidlpmStatsEntry 14 }
  652. acsMsidlpmRejRecvFlowRate OBJECT-TYPE
  653. SYNTAX Counter
  654. ACCESS read-only
  655. STATUS mandatory
  656. DESCRIPTION
  657. "This is the total number of receivers
  658. whose RESV message were rejected because of
  659. data flow rate policy"
  660. ::= { acsMsidlpmStatsEntry 15 }
  661. acsMsidlpmRejRecvPeakRate OBJECT-TYPE
  662. SYNTAX Counter
  663. ACCESS read-only
  664. STATUS mandatory
  665. DESCRIPTION
  666. "This is the total number of receivers
  667. whose RESV message were rejected because of
  668. peak data rate policy"
  669. ::= { acsMsidlpmStatsEntry 16 }
  670. acsMsidlpmRejRecvSumFlowRate OBJECT-TYPE
  671. SYNTAX Counter
  672. ACCESS read-only
  673. STATUS mandatory
  674. DESCRIPTION
  675. "This is the total number of receivers
  676. whose RESV message were rejected because of
  677. aggregate data flow rate policy"
  678. ::= { acsMsidlpmStatsEntry 17 }
  679. acsMsidlpmRejRecvSumPeakRate OBJECT-TYPE
  680. SYNTAX Counter
  681. ACCESS read-only
  682. STATUS mandatory
  683. DESCRIPTION
  684. "This is the total number of receivers
  685. whose RESV message were rejected because of
  686. aggregate peak data rate policy"
  687. ::= { acsMsidlpmStatsEntry 18 }
  688. acsMsidlpmRejRecvIdChange OBJECT-TYPE
  689. SYNTAX Counter
  690. ACCESS read-only
  691. STATUS mandatory
  692. DESCRIPTION
  693. "This is the total number of senders
  694. whose RESV message were rejected because of
  695. identity change"
  696. ::= { acsMsidlpmStatsEntry 19 }
  697. acsMsidlpmRejRecvDuration OBJECT-TYPE
  698. SYNTAX Counter
  699. ACCESS read-only
  700. STATUS mandatory
  701. DESCRIPTION
  702. "This is the total number of receivers
  703. whose RESV message were rejected because of
  704. flow duration policy"
  705. ::= { acsMsidlpmStatsEntry 20 }
  706. acsMsidlpmRejRecvCount OBJECT-TYPE
  707. SYNTAX Counter
  708. ACCESS read-only
  709. STATUS mandatory
  710. DESCRIPTION
  711. "This is the total number of receivers
  712. whose RESV message were rejected because of
  713. flow count policy"
  714. ::= { acsMsidlpmStatsEntry 21 }
  715. acsMsidlpmRejRecvOthersPolicies OBJECT-TYPE
  716. SYNTAX Counter
  717. ACCESS read-only
  718. STATUS mandatory
  719. DESCRIPTION
  720. "This is the total number of receivers
  721. whose RESV message were rejected because of
  722. policies other than flow rate, peak rate,
  723. flow duration and flow count"
  724. ::= { acsMsidlpmStatsEntry 22 }
  725. acsMsidlpmBadIdentityPes OBJECT-TYPE
  726. SYNTAX Counter
  727. ACCESS read-only
  728. STATUS mandatory
  729. DESCRIPTION
  730. "This is the total number of Identity Policy elements
  731. which could not be cracked by the MSIDLPM"
  732. ::= { acsMsidlpmStatsEntry 23 }
  733. acsMsidlpmDsCacheSize OBJECT-TYPE
  734. SYNTAX INTEGER
  735. ACCESS read-only
  736. STATUS mandatory
  737. DESCRIPTION
  738. "This is the total number of entries in the
  739. policy cache maintained by the MSIDLPM"
  740. ::= { acsMsidlpmStatsEntry 24 }
  741. END