Source code of Windows XP (NT5)
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.

1302 lines
36 KiB

  1. IPX DEFINITIONS ::= BEGIN
  2. -- This MIB defines the management information for a system using the IPX
  3. -- protocol. The MIB consists of four groups:
  4. --
  5. -- 1. System Group - contains general information about all instances
  6. -- of IPX on the system
  7. --
  8. -- 2. Circuit Group - contains information about all circuits used by
  9. -- IPX on the system
  10. --
  11. -- 3. Forwarding Group - contains generic routing information that
  12. -- must be provided by any IPX routing protocol.
  13. --
  14. -- 4. Services Group - contains information about all known services.
  15. --
  16. -- The MIB is designed to support multiple instances of the IPX
  17. -- protocol on one system via a system instance identifier which is the
  18. -- primary index for every table in this MIB.
  19. --
  20. -- This MIB is designed to provide a basic framework for the management
  21. -- of systems implementing the IPX protocol. Additional MIBs may be
  22. -- created (especially in the area of IPX routing protocols) to contain
  23. -- more specific information. Whenever possible, these additional MIBs
  24. -- should follow the format of this IPX MIB. Information in these MIBs
  25. -- should be linked to this MIB via the use of the system instance
  26. -- identifier mentioned above.
  27. --
  28. --
  29. -- Changes:
  30. --
  31. -- 4/15/94: Cleanup of some typographical errors
  32. --
  33. -- 4/21/94: Change ipxCircNetNumber acces to read-write
  34. --
  35. -- Limitations in NT Router implementation
  36. -- ipxBasicSysEntry:
  37. -- ipxBasicSysInstance - always 0 (only one instance of IPX can run)
  38. -- ipxBasicSysExistSate - always ON (deletions or additions of system
  39. -- instances are no supported)
  40. -- ipxBasicSysInReceives - always 0 (system-wide statistics are not kept)
  41. -- ipxBasicSysInHdrErrors - always 0 (system-wide statistics are not kept)
  42. -- ipxBasicSysUnknownSockets - always 0 (system-wide statistics are not kept)
  43. -- ipxBasicSysInDiscards - always 0 (system-wide statistics are not kept)
  44. -- ipxBasicSysInBadChecksums - always 0 (system-wide statistics are not kept)
  45. -- ipxBasicSysInDelivers - always 0 (system-wide statistics are not kept)
  46. -- ipxBasicSysNoRoutes - always 0 (system-wide statistics are not kept)
  47. -- ipxBasicSysOutRequests - always 0 (system-wide statistics are not kept)
  48. -- ipxBasicSysOutMalformedRequests - always 0 (not supported)
  49. -- ipxBasicSysOpenSocketFails - always 0 (not supported)
  50. -- ipxAdvSysEntry:
  51. -- ipxAdvSysInstance - always 0 (only one instance of IPX can run)
  52. -- ipxAdvSysMaxPathSplits - supported as read-only
  53. -- ipxAdvSysMaxHops - supported as read-only
  54. -- ipxAdvSysInTooManyHops - always 0 (not supported)
  55. -- ipxAdvSysInFiltered - always 0 (system-wide statistics are not kept)
  56. -- ipxAdvSysInCompressDiscards - always 0 (not supported)
  57. -- ipxAdvSysNETBIOSPackets - always 0 (system-wide statistics are not kept)
  58. -- ipxAdvSysForwPackets - always 0 (system-wide statistics are not kept)
  59. -- ipxAdvSysOutFiltered - always 0 (system-wide statistics are not kept)
  60. -- ipxAdvSysOutComplressDiscards - always 0 (not supported)
  61. -- ipxAdvSysCircCount - count of interfaces with IPX routing installed
  62. -- ipxCircEntry:
  63. -- ipxCircSysInstance - always 0 (only one instance of IPX can run)
  64. -- ipxCircExistState - always ON (deletions or additions of circuits
  65. -- are no supported)
  66. -- ipxCircIfIndex - this index does not neccessarily correspond
  67. -- to interface indeces in interface table
  68. -- (mib-2.2)
  69. -- ipxCircName - supported as read-only
  70. -- ipxCircType - supported as read-only
  71. -- ipxCircLocalMaxPacketSize - supported as read-only
  72. -- ipxCircStaticStatus - supported as read-only
  73. -- ipxCircStateChanges - always 0 (not supported)
  74. -- ipxCircInitFails - always 0 (not supported)
  75. -- ipxCircNeighInternalNetNum - always 0 (not supported)
  76. -- ipxDestEntry:
  77. -- ipxDestSysInstance - always 0 (only one instance of IPX can run)
  78. -- ipxDestNextHopNetNum - always zero (not supported)
  79. -- ipxStaticRouteEntry:
  80. -- ipxStaticRouteSysInstance - always 0 (only one instance of IPX can run)
  81. -- ipxServEntry:
  82. -- ipxServSysInstance - always 0 (only one instance of IPX can run)
  83. -- ipxDestServEntry: - not supported, always empty
  84. -- ipxStaticServEntry:
  85. -- ipxStaticServSysInstance - always 0 (only one instance of IPX can run)
  86. --
  87. IMPORTS
  88. enterprises, Counter
  89. FROM RFC1155-SMI
  90. OBJECT-TYPE
  91. FROM RFC-1212;
  92. -- TRAP-TYPE
  93. -- FROM RFC-1215
  94. -- PhysAddress
  95. -- FROM RFC1213-MIB;
  96. novell OBJECT IDENTIFIER ::= { enterprises 23 }
  97. mibDoc OBJECT IDENTIFIER ::= { novell 2 }
  98. ipx OBJECT IDENTIFIER ::= { mibDoc 5 }
  99. -- Groups
  100. ipxSystem OBJECT IDENTIFIER ::= {ipx 1}
  101. ipxCircuit OBJECT IDENTIFIER ::= {ipx 2}
  102. ipxForwarding OBJECT IDENTIFIER ::= {ipx 3}
  103. ipxServices OBJECT IDENTIFIER ::= {ipx 4}
  104. ipxTraps OBJECT IDENTIFIER ::= {ipx 5}
  105. -- Types
  106. NetNumber ::= OCTET STRING (SIZE(4))
  107. PhysAddress ::= OCTET STRING (SIZE(6))
  108. -- System Group
  109. -- This group contains global information about each instance of IPX
  110. -- running on one system.
  111. -- Basic System Table
  112. -- This table contains one entry for each instance of IPX running on
  113. -- the system. It contains the management information that should
  114. -- be made available by all implementations of the IPX protocol.
  115. ipxBasicSysTable OBJECT-TYPE
  116. SYNTAX SEQUENCE OF IPXBasicSysEntry
  117. ACCESS not-accessible
  118. STATUS mandatory
  119. DESCRIPTION "The IPX System table - basic information."
  120. ::= {ipxSystem 1}
  121. ipxBasicSysEntry OBJECT-TYPE
  122. SYNTAX IPXBasicSysEntry
  123. ACCESS not-accessible
  124. STATUS mandatory
  125. DESCRIPTION "Each entry corresponds to one instance of IPX running
  126. on the system."
  127. INDEX {ipxBasicSysInstance}
  128. ::= {ipxBasicSysTable 1}
  129. IPXBasicSysEntry ::= SEQUENCE {
  130. ipxBasicSysInstance INTEGER,
  131. ipxBasicSysExistState INTEGER,
  132. ipxBasicSysNetNumber NetNumber,
  133. ipxBasicSysNode OCTET STRING,
  134. ipxBasicSysName OCTET STRING,
  135. ipxBasicSysInReceives Counter,
  136. ipxBasicSysInHdrErrors Counter,
  137. ipxBasicSysInUnknownSockets Counter,
  138. ipxBasicSysInDiscards Counter,
  139. ipxBasicSysInBadChecksums Counter,
  140. ipxBasicSysInDelivers Counter,
  141. ipxBasicSysNoRoutes Counter,
  142. ipxBasicSysOutRequests Counter,
  143. ipxBasicSysOutMalformedRequests Counter,
  144. ipxBasicSysOutDiscards Counter,
  145. ipxBasicSysOutPackets Counter,
  146. ipxBasicSysConfigSockets INTEGER,
  147. ipxBasicSysOpenSocketFails Counter
  148. }
  149. ipxBasicSysInstance OBJECT-TYPE
  150. SYNTAX INTEGER
  151. ACCESS read-write
  152. STATUS mandatory
  153. DESCRIPTION "The unique identifier of the instance of IPX to which this
  154. row corresponds. This value may be written only when
  155. creating a new entry in the table."
  156. ::= {ipxBasicSysEntry 1}
  157. ipxBasicSysExistState OBJECT-TYPE
  158. SYNTAX INTEGER {
  159. off(1),
  160. on(2)
  161. }
  162. ACCESS read-write
  163. STATUS mandatory
  164. DESCRIPTION "The validity of this entry in the IPX system table.
  165. Setting this field to off indicates that this entry may be
  166. deleted from the system table at the IPX implementation's
  167. discretion."
  168. ::= {ipxBasicSysEntry 2}
  169. ipxBasicSysNetNumber OBJECT-TYPE
  170. SYNTAX NetNumber
  171. ACCESS read-write
  172. STATUS mandatory
  173. DESCRIPTION "The network number portion of the IPX address of this
  174. system."
  175. ::= {ipxBasicSysEntry 3}
  176. ipxBasicSysNode OBJECT-TYPE
  177. SYNTAX OCTET STRING (SIZE(6))
  178. ACCESS read-write
  179. STATUS mandatory
  180. DESCRIPTION "The node number portion of the IPX address of this
  181. system."
  182. ::= {ipxBasicSysEntry 4}
  183. ipxBasicSysName OBJECT-TYPE
  184. SYNTAX OCTET STRING (SIZE(0..48))
  185. ACCESS read-write
  186. STATUS mandatory
  187. DESCRIPTION "The readable name for this system."
  188. ::= {ipxBasicSysEntry 5}
  189. ipxBasicSysInReceives OBJECT-TYPE
  190. SYNTAX Counter
  191. ACCESS read-only
  192. STATUS mandatory
  193. DESCRIPTION "The total number of IPX packets received, including
  194. those received in error."
  195. ::= {ipxBasicSysEntry 6}
  196. ipxBasicSysInHdrErrors OBJECT-TYPE
  197. SYNTAX Counter
  198. ACCESS read-only
  199. STATUS mandatory
  200. DESCRIPTION "The number of IPX packets discarded due to errors in
  201. their headers, including any IPX packet with a size less
  202. than the minimum of 30 bytes."
  203. ::= {ipxBasicSysEntry 7}
  204. ipxBasicSysInUnknownSockets OBJECT-TYPE
  205. SYNTAX Counter
  206. ACCESS read-only
  207. STATUS mandatory
  208. DESCRIPTION "The number of IPX packets discarded because the
  209. destination socket was not open."
  210. ::= {ipxBasicSysEntry 8}
  211. ipxBasicSysInDiscards OBJECT-TYPE
  212. SYNTAX Counter
  213. ACCESS read-only
  214. STATUS mandatory
  215. DESCRIPTION "The number of IPX packets received but discarded due to
  216. reasons other than those accounted for by
  217. ipxBasicSysInHdrErrors, ipxBasicSysInUnknownSockets,
  218. ipxAdvSysInDiscards, and ipxAdvSysInCompressDiscards."
  219. ::= {ipxBasicSysEntry 9}
  220. ipxBasicSysInBadChecksums OBJECT-TYPE
  221. SYNTAX Counter
  222. ACCESS read-only
  223. STATUS mandatory
  224. DESCRIPTION "The number of IPX packets received with incorrect
  225. checksums."
  226. ::= {ipxBasicSysEntry 10}
  227. ipxBasicSysInDelivers OBJECT-TYPE
  228. SYNTAX Counter
  229. ACCESS read-only
  230. STATUS mandatory
  231. DESCRIPTION "The total number of IPX packets delivered locally,
  232. including packets from local applications."
  233. ::= {ipxBasicSysEntry 11}
  234. ipxBasicSysNoRoutes OBJECT-TYPE
  235. SYNTAX Counter
  236. ACCESS read-only
  237. STATUS mandatory
  238. DESCRIPTION "The number of times no route to a destination was
  239. found."
  240. ::= {ipxBasicSysEntry 12}
  241. ipxBasicSysOutRequests OBJECT-TYPE
  242. SYNTAX Counter
  243. ACCESS read-only
  244. STATUS mandatory
  245. DESCRIPTION "The number of IPX packets supplied locally for
  246. transmission, not including any packets counted in
  247. ipxAdvForwPackets."
  248. ::= {ipxBasicSysEntry 13}
  249. ipxBasicSysOutMalformedRequests OBJECT-TYPE
  250. SYNTAX Counter
  251. ACCESS read-only
  252. STATUS mandatory
  253. DESCRIPTION "The number of IPX packets supplied locally that contained
  254. errors in their structure."
  255. ::= {ipxBasicSysEntry 14}
  256. ipxBasicSysOutDiscards OBJECT-TYPE
  257. SYNTAX Counter
  258. ACCESS read-only
  259. STATUS mandatory
  260. DESCRIPTION "The number of outgoing IPX packets discarded due to
  261. reasons other than those accounted for in
  262. ipxBasicSysOutMalformedRequests, ipxAdvSysOutFiltered,
  263. and ipxAdvSysOutCompressDiscards."
  264. ::= {ipxBasicSysEntry 15}
  265. ipxBasicSysOutPackets OBJECT-TYPE
  266. SYNTAX Counter
  267. ACCESS read-only
  268. STATUS mandatory
  269. DESCRIPTION "The total number of IPX packets transmitted."
  270. ::= {ipxBasicSysEntry 16}
  271. ipxBasicSysConfigSockets OBJECT-TYPE
  272. SYNTAX INTEGER
  273. ACCESS read-only
  274. STATUS mandatory
  275. DESCRIPTION "The configured maximum number of IPX sockets that may be
  276. open at one time."
  277. ::= {ipxBasicSysEntry 17}
  278. ipxBasicSysOpenSocketFails OBJECT-TYPE
  279. SYNTAX Counter
  280. ACCESS read-only
  281. STATUS mandatory
  282. DESCRIPTION "The number of IPX socket open calls which failed."
  283. ::= {ipxBasicSysEntry 18}
  284. -- Advanced System Table
  285. -- This table contains one entry for each instance of IPX running on
  286. -- the system. It contains the advanced management information that
  287. -- may not be available from all implementations of the IPX protocol.
  288. ipxAdvSysTable OBJECT-TYPE
  289. SYNTAX SEQUENCE OF IPXAdvSysEntry
  290. ACCESS not-accessible
  291. STATUS mandatory
  292. DESCRIPTION "The IPX System table - advanced information."
  293. ::= {ipxSystem 2}
  294. ipxAdvSysEntry OBJECT-TYPE
  295. SYNTAX IPXAdvSysEntry
  296. ACCESS not-accessible
  297. STATUS mandatory
  298. DESCRIPTION "Each entry corresponds to one instance of IPX running
  299. on the system."
  300. INDEX {ipxAdvSysInstance}
  301. ::= {ipxAdvSysTable 1}
  302. IPXAdvSysEntry ::= SEQUENCE {
  303. ipxAdvSysInstance INTEGER,
  304. ipxAdvSysMaxPathSplits INTEGER,
  305. ipxAdvSysMaxHops INTEGER,
  306. ipxAdvSysInTooManyHops Counter,
  307. ipxAdvSysInFiltered Counter,
  308. ipxAdvSysInCompressDiscards Counter,
  309. ipxAdvSysNETBIOSPackets Counter,
  310. ipxAdvSysForwPackets Counter,
  311. ipxAdvSysOutFiltered Counter,
  312. ipxAdvSysOutCompressDiscards Counter,
  313. ipxAdvSysCircCount INTEGER,
  314. ipxAdvSysDestCount INTEGER,
  315. ipxAdvSysServCount INTEGER
  316. }
  317. ipxAdvSysInstance OBJECT-TYPE
  318. SYNTAX INTEGER
  319. ACCESS read-write
  320. STATUS mandatory
  321. DESCRIPTION "The unique identifier of the instance of IPX to which this
  322. row corresponds. This value may be written only when
  323. creating a new entry in the table."
  324. ::= {ipxAdvSysEntry 1}
  325. ipxAdvSysMaxPathSplits OBJECT-TYPE
  326. SYNTAX INTEGER (1..32)
  327. ACCESS read-write
  328. STATUS mandatory
  329. DESCRIPTION "The maximum number of paths with equal routing metric
  330. value which this instance of the IPX may split
  331. between when forwarding packets."
  332. DEFVAL { 1 }
  333. ::= {ipxAdvSysEntry 2}
  334. ipxAdvSysMaxHops OBJECT-TYPE
  335. SYNTAX INTEGER
  336. ACCESS read-write
  337. STATUS mandatory
  338. DESCRIPTION "The maximum number of hops a packet may take."
  339. DEFVAL { 64 }
  340. ::= {ipxAdvSysEntry 3}
  341. ipxAdvSysInTooManyHops OBJECT-TYPE
  342. SYNTAX Counter
  343. ACCESS read-only
  344. STATUS mandatory
  345. DESCRIPTION "The number of IPX packets discarded due to exceeding the
  346. maximum hop count."
  347. ::= {ipxAdvSysEntry 4}
  348. ipxAdvSysInFiltered OBJECT-TYPE
  349. SYNTAX Counter
  350. ACCESS read-only
  351. STATUS mandatory
  352. DESCRIPTION "The number of incoming IPX packets discarded due to
  353. filtering."
  354. ::= {ipxAdvSysEntry 5}
  355. ipxAdvSysInCompressDiscards OBJECT-TYPE
  356. SYNTAX Counter
  357. ACCESS read-only
  358. STATUS mandatory
  359. DESCRIPTION "The number of incoming IPX packets discarded due to
  360. decompression errors."
  361. ::= {ipxAdvSysEntry 6}
  362. ipxAdvSysNETBIOSPackets OBJECT-TYPE
  363. SYNTAX Counter
  364. ACCESS read-only
  365. STATUS mandatory
  366. DESCRIPTION "The number of NETBIOS packets received."
  367. ::= {ipxAdvSysEntry 7}
  368. ipxAdvSysForwPackets OBJECT-TYPE
  369. SYNTAX Counter
  370. ACCESS read-only
  371. STATUS mandatory
  372. DESCRIPTION "The number of IPX packets forwarded."
  373. ::= {ipxAdvSysEntry 8}
  374. ipxAdvSysOutFiltered OBJECT-TYPE
  375. SYNTAX Counter
  376. ACCESS read-only
  377. STATUS mandatory
  378. DESCRIPTION "The number of outgoing IPX packets discarded due to
  379. filtering."
  380. ::= {ipxAdvSysEntry 9}
  381. ipxAdvSysOutCompressDiscards OBJECT-TYPE
  382. SYNTAX Counter
  383. ACCESS read-only
  384. STATUS mandatory
  385. DESCRIPTION "The number of outgoing IPX packets discarded due to
  386. compression errors."
  387. ::= {ipxAdvSysEntry 10}
  388. ipxAdvSysCircCount OBJECT-TYPE
  389. SYNTAX INTEGER
  390. ACCESS read-only
  391. STATUS mandatory
  392. DESCRIPTION "The number of circuits known to this instance of IPX."
  393. ::= {ipxAdvSysEntry 11}
  394. ipxAdvSysDestCount OBJECT-TYPE
  395. SYNTAX INTEGER
  396. ACCESS read-only
  397. STATUS mandatory
  398. DESCRIPTION "The number of currently reachable destinations known to
  399. this instance of IPX."
  400. ::= {ipxAdvSysEntry 12}
  401. ipxAdvSysServCount OBJECT-TYPE
  402. SYNTAX INTEGER
  403. ACCESS read-only
  404. STATUS mandatory
  405. DESCRIPTION "The number of services known to this instance of IPX."
  406. ::= {ipxAdvSysEntry 13}
  407. -- Circuit Group
  408. -- This group contains management information for each circuit known
  409. -- to this system.
  410. -- Circuit Table
  411. -- The Circuit table contains an entry for each circuit known to the
  412. -- system.
  413. ipxCircTable OBJECT-TYPE
  414. SYNTAX SEQUENCE OF IPXCircEntry
  415. ACCESS not-accessible
  416. STATUS mandatory
  417. DESCRIPTION "The Circuit table."
  418. ::= {ipxCircuit 1}
  419. ipxCircEntry OBJECT-TYPE
  420. SYNTAX IPXCircEntry
  421. ACCESS not-accessible
  422. STATUS mandatory
  423. DESCRIPTION "Each entry corresponds to one circuit known to the
  424. system."
  425. INDEX {
  426. ipxCircSysInstance,
  427. ipxCircIndex
  428. }
  429. ::= {ipxCircTable 1}
  430. IPXCircEntry ::= SEQUENCE {
  431. ipxCircSysInstance INTEGER,
  432. ipxCircIndex INTEGER,
  433. ipxCircExistState INTEGER,
  434. ipxCircOperState INTEGER,
  435. ipxCircIfIndex INTEGER,
  436. ipxCircName OCTET STRING,
  437. ipxCircType INTEGER,
  438. ipxCircDialName OCTET STRING,
  439. ipxCircLocalMaxPacketSize INTEGER,
  440. ipxCircCompressState INTEGER,
  441. ipxCircCompressSlots INTEGER,
  442. ipxCircStaticStatus INTEGER,
  443. ipxCircCompressedSent Counter,
  444. ipxCircCompressedInitSent Counter,
  445. ipxCircCompressedRejectsSent Counter,
  446. ipxCircUncompressedSent Counter,
  447. ipxCircCompressedReceived Counter,
  448. ipxCircCompressedInitReceived Counter,
  449. ipxCircCompressedRejectsReceived Counter,
  450. ipxCircUncompressedReceived Counter,
  451. ipxCircMediaType OCTET STRING,
  452. ipxCircNetNumber NetNumber,
  453. ipxCircStateChanges Counter,
  454. ipxCircInitFails Counter,
  455. ipxCircDelay INTEGER,
  456. ipxCircThroughput INTEGER,
  457. ipxCircNeighRouterName OCTET STRING,
  458. ipxCircNeighInternalNetNum NetNumber
  459. }
  460. ipxCircSysInstance OBJECT-TYPE
  461. SYNTAX INTEGER
  462. ACCESS read-write
  463. STATUS mandatory
  464. DESCRIPTION "The unique identifier of the instance of IPX
  465. to which this entry corresponds. This value may be
  466. written only when creating a new entry in the table."
  467. ::= {ipxCircEntry 1}
  468. ipxCircIndex OBJECT-TYPE
  469. SYNTAX INTEGER
  470. ACCESS read-write
  471. STATUS mandatory
  472. DESCRIPTION "The identifier of this circuit, unique within the
  473. instance of IPX. This value may be written
  474. only when creating a new entry in the table."
  475. ::= {ipxCircEntry 2}
  476. ipxCircExistState OBJECT-TYPE
  477. SYNTAX INTEGER {
  478. off(1),
  479. on(2)
  480. }
  481. ACCESS read-write
  482. STATUS mandatory
  483. DESCRIPTION "The validity of this circuit entry. A circuit with this
  484. value set to off may be deleted from the table at the
  485. IPX implementation's discretion."
  486. ::= {ipxCircEntry 3}
  487. ipxCircOperState OBJECT-TYPE
  488. SYNTAX INTEGER {
  489. down(1),
  490. up(2),
  491. sleeping(3)
  492. }
  493. ACCESS read-write
  494. STATUS mandatory
  495. DESCRIPTION "The operational state of the circuit."
  496. ::= {ipxCircEntry 4}
  497. ipxCircIfIndex OBJECT-TYPE
  498. SYNTAX INTEGER
  499. ACCESS read-write
  500. STATUS mandatory
  501. DESCRIPTION "The value of ifIndex for the interface used by this
  502. circuit. This value may be written only when creating
  503. a new entry in the table."
  504. ::= {ipxCircEntry 5}
  505. ipxCircName OBJECT-TYPE
  506. SYNTAX OCTET STRING (SIZE(0..48))
  507. ACCESS read-write
  508. STATUS mandatory
  509. DESCRIPTION "The readable name for the circuit."
  510. ::= {ipxCircEntry 6}
  511. ipxCircType OBJECT-TYPE
  512. SYNTAX INTEGER {
  513. other(1),
  514. broadcast(2),
  515. ptToPt(3),
  516. wanRIP(4),
  517. unnumberedRIP(5),
  518. dynamic(6),
  519. wanWS(7)
  520. }
  521. ACCESS read-write
  522. STATUS mandatory
  523. DESCRIPTION "The type of the circuit."
  524. ::= {ipxCircEntry 7}
  525. ipxCircDialName OBJECT-TYPE
  526. SYNTAX OCTET STRING (SIZE(0..48))
  527. ACCESS read-write
  528. STATUS mandatory
  529. DESCRIPTION "The symbolic name used to refernce the dialing information
  530. used to create this circuit. This value may be written
  531. only when creating a new entry in the table."
  532. ::= {ipxCircEntry 8}
  533. ipxCircLocalMaxPacketSize OBJECT-TYPE
  534. SYNTAX INTEGER
  535. ACCESS read-write
  536. STATUS mandatory
  537. DESCRIPTION "The maximum size (including header), in bytes, that the
  538. system supports locally on this circuit."
  539. ::= {ipxCircEntry 9}
  540. ipxCircCompressState OBJECT-TYPE
  541. SYNTAX INTEGER {
  542. off(1),
  543. on(2)
  544. }
  545. ACCESS read-write
  546. STATUS mandatory
  547. DESCRIPTION "The compression state on this circuit. This value may
  548. be written only when creating a new entry in the table."
  549. DEFVAL { off }
  550. ::= {ipxCircEntry 10}
  551. ipxCircCompressSlots OBJECT-TYPE
  552. SYNTAX INTEGER
  553. ACCESS read-write
  554. STATUS mandatory
  555. DESCRIPTION "The number of compression slots available on this
  556. circuit. This value may be written only when creating a
  557. new entry in the table."
  558. DEFVAL { 16 }
  559. ::= {ipxCircEntry 11}
  560. ipxCircStaticStatus OBJECT-TYPE
  561. SYNTAX INTEGER {
  562. unknown(1),
  563. current(2),
  564. changed(3),
  565. read(4),
  566. reading(5),
  567. write(6),
  568. writing(7)
  569. }
  570. ACCESS read-write
  571. STATUS mandatory
  572. DESCRIPTION "Indicates whether the information about static routes
  573. and services reached via this circuit matches that
  574. saved in permanent storage (current). Setting the
  575. value to write when it had the value changed will write
  576. the currently in use information to permanent storage,
  577. if supported. Setting the value to read when it had
  578. the value changed will replace any routes and services
  579. currently defined for the circuit with those read from
  580. permanent storage, if supported."
  581. ::= {ipxCircEntry 12}
  582. ipxCircCompressedSent OBJECT-TYPE
  583. SYNTAX Counter
  584. ACCESS read-only
  585. STATUS mandatory
  586. DESCRIPTION "The number of compressed packets sent."
  587. ::= {ipxCircEntry 13}
  588. ipxCircCompressedInitSent OBJECT-TYPE
  589. SYNTAX Counter
  590. ACCESS read-only
  591. STATUS mandatory
  592. DESCRIPTION "The number of compression initialization packets sent."
  593. ::= {ipxCircEntry 14}
  594. ipxCircCompressedRejectsSent OBJECT-TYPE
  595. SYNTAX Counter
  596. ACCESS read-only
  597. STATUS mandatory
  598. DESCRIPTION "The number of compressed packet rejected packets sent."
  599. ::= {ipxCircEntry 15}
  600. ipxCircUncompressedSent OBJECT-TYPE
  601. SYNTAX Counter
  602. ACCESS read-only
  603. STATUS mandatory
  604. DESCRIPTION "The number of packets sent without being compressed
  605. even though compression was turned on for this circuit."
  606. ::= {ipxCircEntry 16}
  607. ipxCircCompressedReceived OBJECT-TYPE
  608. SYNTAX Counter
  609. ACCESS read-only
  610. STATUS mandatory
  611. DESCRIPTION "The number of compressed packets received."
  612. ::= {ipxCircEntry 17}
  613. ipxCircCompressedInitReceived OBJECT-TYPE
  614. SYNTAX Counter
  615. ACCESS read-only
  616. STATUS mandatory
  617. DESCRIPTION "The number of compression initialization packets received."
  618. ::= {ipxCircEntry 18}
  619. ipxCircCompressedRejectsReceived OBJECT-TYPE
  620. SYNTAX Counter
  621. ACCESS read-only
  622. STATUS mandatory
  623. DESCRIPTION "The number of compressed packet rejected packets received."
  624. ::= {ipxCircEntry 19}
  625. ipxCircUncompressedReceived OBJECT-TYPE
  626. SYNTAX Counter
  627. ACCESS read-only
  628. STATUS mandatory
  629. DESCRIPTION "The number of packets received without having been
  630. compressed even though compression was turned on for
  631. this circuit."
  632. ::= {ipxCircEntry 20}
  633. ipxCircMediaType OBJECT-TYPE
  634. SYNTAX OCTET STRING (SIZE(2))
  635. ACCESS read-only
  636. STATUS mandatory
  637. DESCRIPTION "The media type used on this circuit."
  638. ::= {ipxCircEntry 21}
  639. ipxCircNetNumber OBJECT-TYPE
  640. SYNTAX NetNumber
  641. ACCESS read-write
  642. STATUS mandatory
  643. DESCRIPTION "The IPX network number of this circuit. This value may
  644. be written only when creating a new entry in the table."
  645. ::= {ipxCircEntry 22}
  646. ipxCircStateChanges OBJECT-TYPE
  647. SYNTAX Counter
  648. ACCESS read-only
  649. STATUS mandatory
  650. DESCRIPTION "The number of times the circuit has changed state."
  651. ::= {ipxCircEntry 23}
  652. ipxCircInitFails OBJECT-TYPE
  653. SYNTAX Counter
  654. ACCESS read-only
  655. STATUS mandatory
  656. DESCRIPTION "The number of times that initialization of this
  657. circuit has failed."
  658. ::= {ipxCircEntry 24}
  659. ipxCircDelay OBJECT-TYPE
  660. SYNTAX INTEGER
  661. ACCESS read-only
  662. STATUS mandatory
  663. DESCRIPTION "The period of time, in milliseconds, that it takes to
  664. transmit one byte of data, excluding protocol headers,
  665. to a destination on the other end of the circuit, if
  666. the circuit is free of other traffic."
  667. ::= {ipxCircEntry 25}
  668. ipxCircThroughput OBJECT-TYPE
  669. SYNTAX INTEGER
  670. ACCESS read-only
  671. STATUS mandatory
  672. DESCRIPTION "The amount of data, in bits per second, that may flow
  673. through the circuit if there is no other traffic."
  674. ::= {ipxCircEntry 26}
  675. ipxCircNeighRouterName OBJECT-TYPE
  676. SYNTAX OCTET STRING (SIZE(0..48))
  677. ACCESS read-only
  678. STATUS mandatory
  679. DESCRIPTION "The name of the neighboring router on a WAN circuit."
  680. ::= {ipxCircEntry 27}
  681. ipxCircNeighInternalNetNum OBJECT-TYPE
  682. SYNTAX NetNumber
  683. ACCESS read-only
  684. STATUS mandatory
  685. DESCRIPTION "The internal network number of the neighboring router
  686. on a WAN circuit."
  687. ::= {ipxCircEntry 28}
  688. -- Forwarding Group
  689. -- This group provides a representation of the forwarding database used
  690. -- by all instances of IPX on the system.
  691. -- Destination Table
  692. -- The Destination table contains information about all known
  693. -- destinations. The routing information shown in this table represents
  694. -- the path currently being used to reach the destination.
  695. ipxDestTable OBJECT-TYPE
  696. SYNTAX SEQUENCE OF IPXDestEntry
  697. ACCESS not-accessible
  698. STATUS mandatory
  699. DESCRIPTION "The Destination table contains information about all
  700. known destinations."
  701. ::= {ipxForwarding 1}
  702. ipxDestEntry OBJECT-TYPE
  703. SYNTAX IPXDestEntry
  704. ACCESS not-accessible
  705. STATUS mandatory
  706. DESCRIPTION "Each entry corresponds to one destination."
  707. INDEX {
  708. ipxDestSysInstance,
  709. ipxDestNetNum
  710. }
  711. ::= {ipxDestTable 1}
  712. IPXDestEntry ::= SEQUENCE {
  713. ipxDestSysInstance INTEGER,
  714. ipxDestNetNum NetNumber,
  715. ipxDestProtocol INTEGER,
  716. ipxDestTicks INTEGER,
  717. ipxDestHopCount INTEGER,
  718. ipxDestNextHopCircIndex INTEGER,
  719. ipxDestNextHopNICAddress PhysAddress,
  720. ipxDestNextHopNetNum NetNumber
  721. }
  722. ipxDestSysInstance OBJECT-TYPE
  723. SYNTAX INTEGER
  724. ACCESS read-only
  725. STATUS mandatory
  726. DESCRIPTION "The unique identifier of the instance of IPX
  727. to which this row corresponds."
  728. ::= {ipxDestEntry 1}
  729. ipxDestNetNum OBJECT-TYPE
  730. SYNTAX NetNumber
  731. ACCESS read-only
  732. STATUS mandatory
  733. DESCRIPTION "The IPX network number of the destination."
  734. ::= {ipxDestEntry 2}
  735. ipxDestProtocol OBJECT-TYPE
  736. SYNTAX INTEGER {
  737. other(1),
  738. local(2),
  739. rip(3),
  740. nlsp(4),
  741. static(5)
  742. }
  743. ACCESS read-only
  744. STATUS mandatory
  745. DESCRIPTION "The routing protocol from which knowledge of this
  746. destination was obtained."
  747. ::= {ipxDestEntry 3}
  748. ipxDestTicks OBJECT-TYPE
  749. SYNTAX INTEGER
  750. ACCESS read-only
  751. STATUS mandatory
  752. DESCRIPTION "The delay in ticks to reach this destination."
  753. ::= {ipxDestEntry 4}
  754. ipxDestHopCount OBJECT-TYPE
  755. SYNTAX INTEGER
  756. ACCESS read-only
  757. STATUS mandatory
  758. DESCRIPTION "The number of hops necessary to reach the destination."
  759. ::= {ipxDestEntry 5}
  760. ipxDestNextHopCircIndex OBJECT-TYPE
  761. SYNTAX INTEGER
  762. ACCESS read-only
  763. STATUS mandatory
  764. DESCRIPTION "The unique identifier of the circuit used to reach the
  765. next hop."
  766. ::= {ipxDestEntry 6}
  767. ipxDestNextHopNICAddress OBJECT-TYPE
  768. SYNTAX PhysAddress
  769. ACCESS read-only
  770. STATUS mandatory
  771. DESCRIPTION "The NIC address of the next hop."
  772. ::= {ipxDestEntry 7}
  773. ipxDestNextHopNetNum OBJECT-TYPE
  774. SYNTAX NetNumber
  775. ACCESS read-only
  776. STATUS mandatory
  777. DESCRIPTION "The IPX network number of the next hop."
  778. ::= {ipxDestEntry 8}
  779. -- Static Routes Table
  780. -- This table contains the information about all the static routes
  781. -- defined. There may be more than one static route to any given
  782. -- destination. Only the route currently being used will also be
  783. -- present in the Destination Table defined above.
  784. ipxStaticRouteTable OBJECT-TYPE
  785. SYNTAX SEQUENCE OF IPXStaticRouteEntry
  786. ACCESS not-accessible
  787. STATUS mandatory
  788. DESCRIPTION "The Static Routes table contains information about all
  789. destinations reached via statically configured routes."
  790. ::= {ipxForwarding 2}
  791. ipxStaticRouteEntry OBJECT-TYPE
  792. SYNTAX IPXStaticRouteEntry
  793. ACCESS not-accessible
  794. STATUS mandatory
  795. DESCRIPTION "Each entry corresponds to one static route."
  796. INDEX {
  797. ipxStaticRouteSysInstance,
  798. ipxStaticRouteCircIndex,
  799. ipxStaticRouteNetNum
  800. }
  801. ::= {ipxStaticRouteTable 1}
  802. IPXStaticRouteEntry ::= SEQUENCE {
  803. ipxStaticRouteSysInstance INTEGER,
  804. ipxStaticRouteCircIndex INTEGER,
  805. ipxStaticRouteNetNum NetNumber,
  806. ipxStaticRouteExistState INTEGER,
  807. ipxStaticRouteTicks INTEGER,
  808. ipxStaticRouteHopCount INTEGER
  809. }
  810. ipxStaticRouteSysInstance OBJECT-TYPE
  811. SYNTAX INTEGER
  812. ACCESS read-write
  813. STATUS mandatory
  814. DESCRIPTION "The unique identifier of the instance of IPX to
  815. which this row corresponds."
  816. ::= {ipxStaticRouteEntry 1}
  817. ipxStaticRouteCircIndex OBJECT-TYPE
  818. SYNTAX INTEGER
  819. ACCESS read-write
  820. STATUS mandatory
  821. DESCRIPTION "The unique identifier of the circuit used to
  822. reach the first hop in the static route."
  823. ::= {ipxStaticRouteEntry 2}
  824. ipxStaticRouteNetNum OBJECT-TYPE
  825. SYNTAX NetNumber
  826. ACCESS read-write
  827. STATUS mandatory
  828. DESCRIPTION "The IPX network number of the route's destination."
  829. ::= {ipxStaticRouteEntry 3}
  830. ipxStaticRouteExistState OBJECT-TYPE
  831. SYNTAX INTEGER {
  832. off(1),
  833. on(2)
  834. }
  835. ACCESS read-write
  836. STATUS mandatory
  837. DESCRIPTION "The validity of this static route. Entries with the
  838. value set to off may be deleted from the table at the
  839. implementation's discretion."
  840. ::= {ipxStaticRouteEntry 4}
  841. ipxStaticRouteTicks OBJECT-TYPE
  842. SYNTAX INTEGER
  843. ACCESS read-write
  844. STATUS mandatory
  845. DESCRIPTION "The delay, in ticks, to reach the route's destination."
  846. ::= {ipxStaticRouteEntry 5}
  847. ipxStaticRouteHopCount OBJECT-TYPE
  848. SYNTAX INTEGER
  849. ACCESS read-write
  850. STATUS mandatory
  851. DESCRIPTION "The number of hops necessary to reach the destination."
  852. ::= {ipxStaticRouteEntry 6}
  853. -- Services Group
  854. -- The Services group contains management information for all known
  855. -- services.
  856. -- Services Table
  857. -- This table contains the services information indexed by service
  858. -- name and type.
  859. ipxServTable OBJECT-TYPE
  860. SYNTAX SEQUENCE OF IPXServEntry
  861. ACCESS not-accessible
  862. STATUS mandatory
  863. DESCRIPTION "The table of services, indexed by name and type."
  864. ::= {ipxServices 1}
  865. ipxServEntry OBJECT-TYPE
  866. SYNTAX IPXServEntry
  867. ACCESS not-accessible
  868. STATUS mandatory
  869. DESCRIPTION "Each entry corresponds to one service."
  870. INDEX {
  871. ipxServSysInstance,
  872. ipxServType,
  873. ipxServName
  874. }
  875. ::= {ipxServTable 1}
  876. IPXServEntry ::= SEQUENCE {
  877. ipxServSysInstance INTEGER,
  878. ipxServType OCTET STRING,
  879. ipxServName OCTET STRING,
  880. ipxServProtocol INTEGER,
  881. ipxServNetNum NetNumber,
  882. ipxServNode OCTET STRING,
  883. ipxServSocket OCTET STRING,
  884. ipxServHopCount INTEGER
  885. }
  886. ipxServSysInstance OBJECT-TYPE
  887. SYNTAX INTEGER
  888. ACCESS read-only
  889. STATUS mandatory
  890. DESCRIPTION "The unique identifier of the instance of IPX
  891. to which this entry corresponds."
  892. ::= {ipxServEntry 1}
  893. ipxServType OBJECT-TYPE
  894. SYNTAX OCTET STRING (SIZE(2))
  895. ACCESS read-only
  896. STATUS mandatory
  897. DESCRIPTION "The service type."
  898. ::= {ipxServEntry 2}
  899. ipxServName OBJECT-TYPE
  900. SYNTAX OCTET STRING (SIZE(1..48))
  901. ACCESS read-only
  902. STATUS mandatory
  903. DESCRIPTION "The service name."
  904. ::= {ipxServEntry 3}
  905. ipxServProtocol OBJECT-TYPE
  906. SYNTAX INTEGER {
  907. other(1),
  908. local(2),
  909. nlsp(4),
  910. static(5),
  911. sap(6)
  912. }
  913. ACCESS read-only
  914. STATUS mandatory
  915. DESCRIPTION "The protocol from which knowledge of this service was
  916. obtained."
  917. ::= {ipxServEntry 4}
  918. ipxServNetNum OBJECT-TYPE
  919. SYNTAX NetNumber
  920. ACCESS read-only
  921. STATUS mandatory
  922. DESCRIPTION "The IPX network number portion of the IPX address of the
  923. service."
  924. ::= {ipxServEntry 5}
  925. ipxServNode OBJECT-TYPE
  926. SYNTAX OCTET STRING (SIZE(6))
  927. ACCESS read-only
  928. STATUS mandatory
  929. DESCRIPTION "The node portion of the IPX address of the service."
  930. ::= {ipxServEntry 6}
  931. ipxServSocket OBJECT-TYPE
  932. SYNTAX OCTET STRING (SIZE(2))
  933. ACCESS read-only
  934. STATUS mandatory
  935. DESCRIPTION "The socket portion of the IPX address of the service."
  936. ::= {ipxServEntry 7}
  937. ipxServHopCount OBJECT-TYPE
  938. SYNTAX INTEGER
  939. ACCESS read-only
  940. STATUS mandatory
  941. DESCRIPTION "The number of hops to the service."
  942. ::= {ipxServEntry 8}
  943. -- Destination Services Table
  944. -- This table contains the services information indexed by address,
  945. -- name, and type.
  946. ipxDestServTable OBJECT-TYPE
  947. SYNTAX SEQUENCE OF IPXDestServEntry
  948. ACCESS not-accessible
  949. STATUS mandatory
  950. DESCRIPTION "The table of services, indexed by address, name,
  951. and type."
  952. ::= {ipxServices 2}
  953. ipxDestServEntry OBJECT-TYPE
  954. SYNTAX IPXDestServEntry
  955. ACCESS not-accessible
  956. STATUS mandatory
  957. DESCRIPTION "Each entry corresponds to one service."
  958. INDEX {
  959. ipxDestServSysInstance,
  960. ipxDestServNetNum,
  961. ipxDestServNode,
  962. ipxDestServSocket,
  963. ipxDestServName,
  964. ipxDestServType
  965. }
  966. ::= {ipxDestServTable 1}
  967. IPXDestServEntry ::= SEQUENCE {
  968. ipxDestServSysInstance INTEGER,
  969. ipxDestServNetNum NetNumber,
  970. ipxDestServNode OCTET STRING,
  971. ipxDestServSocket OCTET STRING,
  972. ipxDestServName OCTET STRING,
  973. ipxDestServType OCTET STRING,
  974. ipxDestServProtocol INTEGER,
  975. ipxDestServHopCount INTEGER
  976. }
  977. ipxDestServSysInstance OBJECT-TYPE
  978. SYNTAX INTEGER
  979. ACCESS read-only
  980. STATUS mandatory
  981. DESCRIPTION "The unique identifier of the instance of IPX
  982. to which this entry corresponds."
  983. ::= {ipxDestServEntry 1}
  984. ipxDestServNetNum OBJECT-TYPE
  985. SYNTAX NetNumber
  986. ACCESS read-only
  987. STATUS mandatory
  988. DESCRIPTION "The IPX network number portion of the IPX address of the
  989. service."
  990. ::= {ipxDestServEntry 2}
  991. ipxDestServNode OBJECT-TYPE
  992. SYNTAX OCTET STRING (SIZE(6))
  993. ACCESS read-only
  994. STATUS mandatory
  995. DESCRIPTION "The node portion of the IPX address of the service."
  996. ::= {ipxDestServEntry 3}
  997. ipxDestServSocket OBJECT-TYPE
  998. SYNTAX OCTET STRING (SIZE(2))
  999. ACCESS read-only
  1000. STATUS mandatory
  1001. DESCRIPTION "The socket portion of the IPX address of the service."
  1002. ::= {ipxDestServEntry 4}
  1003. ipxDestServName OBJECT-TYPE
  1004. SYNTAX OCTET STRING (SIZE(1..48))
  1005. ACCESS read-only
  1006. STATUS mandatory
  1007. DESCRIPTION "The service name."
  1008. ::= {ipxDestServEntry 5}
  1009. ipxDestServType OBJECT-TYPE
  1010. SYNTAX OCTET STRING (SIZE(2))
  1011. ACCESS read-only
  1012. STATUS mandatory
  1013. DESCRIPTION "The service type."
  1014. ::= {ipxDestServEntry 6}
  1015. ipxDestServProtocol OBJECT-TYPE
  1016. SYNTAX INTEGER {
  1017. other(1),
  1018. local(2),
  1019. nlsp(4),
  1020. static(5),
  1021. sap(6)
  1022. }
  1023. ACCESS read-only
  1024. STATUS mandatory
  1025. DESCRIPTION "The protocol from which knowledge of this service was
  1026. obtained."
  1027. ::= {ipxDestServEntry 7}
  1028. ipxDestServHopCount OBJECT-TYPE
  1029. SYNTAX INTEGER
  1030. ACCESS read-only
  1031. STATUS mandatory
  1032. DESCRIPTION "The number of hops to the service."
  1033. ::= {ipxDestServEntry 8}
  1034. -- Static Services Table
  1035. -- This table contains information for all services reached via a
  1036. -- static route.
  1037. ipxStaticServTable OBJECT-TYPE
  1038. SYNTAX SEQUENCE OF IPXStaticServEntry
  1039. ACCESS not-accessible
  1040. STATUS mandatory
  1041. DESCRIPTION "The Static Services table contains information about
  1042. all services reached via statically configured routes."
  1043. ::= {ipxServices 3}
  1044. ipxStaticServEntry OBJECT-TYPE
  1045. SYNTAX IPXStaticServEntry
  1046. ACCESS not-accessible
  1047. STATUS mandatory
  1048. DESCRIPTION "Each entry corresponds to one service."
  1049. INDEX {
  1050. ipxStaticServSysInstance,
  1051. ipxStaticServCircIndex,
  1052. ipxStaticServName,
  1053. ipxStaticServType
  1054. }
  1055. ::= {ipxStaticServTable 1}
  1056. IPXStaticServEntry ::= SEQUENCE {
  1057. ipxStaticServSysInstance INTEGER,
  1058. ipxStaticServCircIndex INTEGER,
  1059. ipxStaticServName OCTET STRING,
  1060. ipxStaticServType OCTET STRING,
  1061. ipxStaticServExistState INTEGER,
  1062. ipxStaticServNetNum NetNumber,
  1063. ipxStaticServNode OCTET STRING,
  1064. ipxStaticServSocket OCTET STRING,
  1065. ipxStaticServHopCount INTEGER
  1066. }
  1067. ipxStaticServSysInstance OBJECT-TYPE
  1068. SYNTAX INTEGER
  1069. ACCESS read-write
  1070. STATUS mandatory
  1071. DESCRIPTION "The unique identifier of the instance of IPX to which
  1072. this entry corresponds."
  1073. ::= {ipxStaticServEntry 1}
  1074. ipxStaticServCircIndex OBJECT-TYPE
  1075. SYNTAX INTEGER
  1076. ACCESS read-write
  1077. STATUS mandatory
  1078. DESCRIPTION "The circuit used to reach this service."
  1079. ::= {ipxStaticServEntry 2}
  1080. ipxStaticServName OBJECT-TYPE
  1081. SYNTAX OCTET STRING (SIZE(1..48))
  1082. ACCESS read-write
  1083. STATUS mandatory
  1084. DESCRIPTION "The service name."
  1085. ::= {ipxStaticServEntry 3}
  1086. ipxStaticServType OBJECT-TYPE
  1087. SYNTAX OCTET STRING (SIZE(2))
  1088. ACCESS read-write
  1089. STATUS mandatory
  1090. DESCRIPTION "The service type."
  1091. ::= {ipxStaticServEntry 4}
  1092. ipxStaticServExistState OBJECT-TYPE
  1093. SYNTAX INTEGER {
  1094. off(1),
  1095. on(2)
  1096. }
  1097. ACCESS read-write
  1098. STATUS mandatory
  1099. DESCRIPTION "The validity of this static service. Entries with the
  1100. value set to off may be deleted from the table at the
  1101. implementation's discretion."
  1102. ::= {ipxStaticServEntry 5}
  1103. ipxStaticServNetNum OBJECT-TYPE
  1104. SYNTAX NetNumber
  1105. ACCESS read-write
  1106. STATUS mandatory
  1107. DESCRIPTION "The IPX network number portion of the IPX address of the
  1108. service."
  1109. ::= {ipxStaticServEntry 6}
  1110. ipxStaticServNode OBJECT-TYPE
  1111. SYNTAX OCTET STRING (SIZE(6))
  1112. ACCESS read-write
  1113. STATUS mandatory
  1114. DESCRIPTION "The node portion of the IPX address of the service."
  1115. ::= {ipxStaticServEntry 7}
  1116. ipxStaticServSocket OBJECT-TYPE
  1117. SYNTAX OCTET STRING (SIZE(2))
  1118. ACCESS read-write
  1119. STATUS mandatory
  1120. DESCRIPTION "The socket portion of the IPX address of the service."
  1121. ::= {ipxStaticServEntry 8}
  1122. ipxStaticServHopCount OBJECT-TYPE
  1123. SYNTAX INTEGER
  1124. ACCESS read-write
  1125. STATUS mandatory
  1126. DESCRIPTION "The number of hops to the service."
  1127. ::= {ipxStaticServEntry 9}
  1128. -- Traps
  1129. -- The section describes the traps defined for IPX.
  1130. ipxTrapCircuitDown TRAP-TYPE
  1131. ENTERPRISE ipxTraps
  1132. VARIABLES {
  1133. ipxCircSysInstance,
  1134. ipxCircIndex
  1135. }
  1136. DESCRIPTION "This trap signifies that the specified circuit has
  1137. gone down."
  1138. ::= 1
  1139. ipxTrapCircuitUp TRAP-TYPE
  1140. ENTERPRISE ipxTraps
  1141. VARIABLES {
  1142. ipxCircSysInstance,
  1143. ipxCircIndex
  1144. }
  1145. DESCRIPTION "This trap signifies that the specified circuit has
  1146. come up."
  1147. ::= 2
  1148. END