1-- *****************************************************************
2-- C I S C O - V I N E S - M I B . M Y
3--
4-- Cisco Vines MIB file.
5--
6-- September 1994, Bob Stewart
7--
8-- Copyright (c) 1994-1996 by cisco Systems, Inc.
9-- All rights reserved.
10--
11-- *****************************************************************
12
13-- Cisco VINES MIB - Sixth Draft
14
15-- This MIB incorporates objects from the Cisco VINES command line
16-- interface, and was influenced by Banyan VINES MIB.
17
18-- It now subsumes the obsolescent, temporary Cisco VINES MIB.
19
20-- Its initial purpose was to provide VINES routing information.
21
22
23
24CISCO-VINES-MIB DEFINITIONS ::= BEGIN
25
26IMPORTS
27	MODULE-IDENTITY,
28	OBJECT-TYPE,
29	Integer32,
30	Gauge32,
31	Counter32
32		FROM SNMPv2-SMI
33	MODULE-COMPLIANCE,
34	OBJECT-GROUP
35		FROM SNMPv2-CONF
36	PhysAddress, TruthValue,
37	TEXTUAL-CONVENTION
38		FROM SNMPv2-TC
39	ifIndex
40		FROM IF-MIB
41	ciscoMgmt
42		FROM CISCO-SMI;
43
44ciscoVinesMIB MODULE-IDENTITY
45	LAST-UPDATED	"9506070000Z"
46	ORGANIZATION	"Cisco Systems, Inc."
47	CONTACT-INFO
48		"	Cisco Systems
49			Customer Service
50
51		Postal:	170 W. Tasman Drive
52			San Jose, CA  95134-1706
53			USA
54
55		   Tel: +1 800 553-NETS
56
57		E-mail: cs-snmp@cisco.com"
58	DESCRIPTION
59		""
60	REVISION	"9506070000Z"
61	DESCRIPTION
62		"Miscellaneous updates/corrections, including making
63		CiscoNetworkProtocol enumerations contiguous."
64	REVISION	"9412210000Z"
65	DESCRIPTION
66		"Minor update/cleanup.  Incorporate review comments."
67	REVISION	"9411300000Z"
68	DESCRIPTION
69		"Initial version of this MIB module."
70	::= { ciscoMgmt 17 }
71
72ciscoVinesMIBObjects OBJECT IDENTIFIER ::= { ciscoVinesMIB 1 }
73
74-- Subgroups
75
76-- First position reserved for up-front objects
77cvBasic		OBJECT IDENTIFIER ::= { ciscoVinesMIBObjects 1 }
78cvForwarding	OBJECT IDENTIFIER ::= { ciscoVinesMIBObjects 2 }
79cvTotal		OBJECT IDENTIFIER ::= { ciscoVinesMIBObjects 3 }
80cvInterface	OBJECT IDENTIFIER ::= { ciscoVinesMIBObjects 4 }
81
82
83-- Textual Conventions
84
85VinesNetworkNumber ::= TEXTUAL-CONVENTION
86	STATUS       current
87	DESCRIPTION
88	"A VINES network number, that is, the first four bytes of a
89	VINES internetwork address."
90	SYNTAX       Integer32 (0..2147483647)
91
92VinesHostNumber ::= TEXTUAL-CONVENTION
93	STATUS       current
94	DESCRIPTION
95	"A VINES host number, that is, the last two bytes of a
96	VINES internetwork address."
97	SYNTAX       Integer32 (0..65535)
98
99VinesMetric ::= TEXTUAL-CONVENTION
100	STATUS       current
101	DESCRIPTION
102	"A VINES routing metric.  Due to internal storage format,
103	some values are not possible.  Once a metric is set, the
104	agent will automatically adjust to the nearest possible
105	value.
106
107	Implementor's note:  internally the high order 12 bits are
108	each 200ms.  The low order 4 bits represent 0-15 increments
109	of 12.5ms each."
110	SYNTAX       Integer32 (0..819200)
111
112
113-- Basic VINES Objects
114
115cvBasicNetwork OBJECT-TYPE
116	SYNTAX     VinesNetworkNumber
117	MAX-ACCESS read-only
118	STATUS     current
119	DESCRIPTION
120		"VINES network number of this router."
121	::= { cvBasic 1 }
122
123cvBasicHost OBJECT-TYPE
124	SYNTAX     VinesHostNumber
125	MAX-ACCESS read-only
126	STATUS     current
127	DESCRIPTION
128		"VINES host (subnetwork) number of this router."
129	::= { cvBasic 2 }
130
131cvBasicNextClient OBJECT-TYPE
132	SYNTAX     VinesHostNumber
133	MAX-ACCESS read-only
134	STATUS     current
135	DESCRIPTION
136		"Next VINES client host (subnetwork) number to be
137		assigned by this router."
138	::= { cvBasic 3 }
139
140
141-- Forwarding Data Base
142
143-- Neighbor Table
144
145cvForwNeighborNeighborCount OBJECT-TYPE
146	SYNTAX     Gauge32
147	MAX-ACCESS read-only
148	STATUS     current
149	DESCRIPTION
150		"The number of neighbors in the neighbor table,
151		cvForwNeighborTable."
152	::= { cvForwarding 1 }
153
154cvForwNeighborPathCount OBJECT-TYPE
155	SYNTAX     Gauge32
156	MAX-ACCESS read-only
157	STATUS     current
158	DESCRIPTION
159		"The number of paths in the neighbor table,
160		cvForwNeighborTable."
161	::= { cvForwarding 2 }
162
163cvForwNeighborVersion OBJECT-TYPE
164	SYNTAX     Integer32
165	MAX-ACCESS read-only
166	STATUS     current
167	DESCRIPTION
168		"The version number of the neighbor table,
169		cvForwNeighborTable, incremented each time a route
170		or path is added or deleted."
171	::= { cvForwarding 3 }
172
173cvForwNeighborTable OBJECT-TYPE
174	SYNTAX     SEQUENCE OF CvForwNeighborEntry
175	MAX-ACCESS not-accessible
176	STATUS     current
177	DESCRIPTION
178		"A table of information about neighbors of this router."
179	::= { cvForwarding 4 }
180
181cvForwNeighborEntry OBJECT-TYPE
182	SYNTAX     CvForwNeighborEntry
183	MAX-ACCESS not-accessible
184	STATUS     current
185	DESCRIPTION
186		"Information about a neighbor of this router.  Entries
187		are indexed by network interface (ifIndex) as there may
188		be more than one path to a given neighbor."
189	INDEX	{ cvForwNeighborNetwork,
190		  cvForwNeighborHost,
191		  ifIndex,
192		  cvForwNeighborPhysAddress }
193	::= { cvForwNeighborTable 1 }
194
195CvForwNeighborEntry ::=
196    SEQUENCE {
197	cvForwNeighborNetwork
198		VinesNetworkNumber,
199	cvForwNeighborHost
200		VinesHostNumber,
201	cvForwNeighborPhysAddress
202		PhysAddress,
203	cvForwNeighborSource
204		INTEGER,
205	cvForwNeighborRtpVersion
206		Integer32,
207	cvForwNeighborUsageType
208		INTEGER,
209	cvForwNeighborAge
210		Integer32,
211	cvForwNeighborMetric
212		VinesMetric,
213	cvForwNeighborUses
214		Counter32
215    }
216
217cvForwNeighborNetwork OBJECT-TYPE
218	SYNTAX     VinesNetworkNumber
219	MAX-ACCESS not-accessible
220	STATUS     current
221	DESCRIPTION
222		"The network part of the neighbor's VINES internet address."
223	::= { cvForwNeighborEntry 1 }
224
225cvForwNeighborHost OBJECT-TYPE
226	SYNTAX     VinesHostNumber
227	MAX-ACCESS not-accessible
228	STATUS     current
229	DESCRIPTION
230		"The host part of the neighbor's VINES internet address."
231	::= { cvForwNeighborEntry 2 }
232
233cvForwNeighborPhysAddress OBJECT-TYPE
234	SYNTAX     PhysAddress
235	MAX-ACCESS not-accessible
236	STATUS     current
237	DESCRIPTION
238		"The neighbor's physical address on the network interface
239		indicated by this entry's ifIndex, interpreted according
240		to ifType at ifIndex in ifTable."
241	::= { cvForwNeighborEntry 3 }
242
243cvForwNeighborSource OBJECT-TYPE
244	SYNTAX     INTEGER { unrecognized(1), self(2), rtpRedirect(3),
245			     rtpUpdate(4), manualRoute(5), igrp(6),
246			     test(7), manualNeighbor(8) }
247	MAX-ACCESS read-only
248	STATUS     current
249	DESCRIPTION
250		"The source of this entry."
251	::= { cvForwNeighborEntry 4 }
252
253cvForwNeighborRtpVersion OBJECT-TYPE
254	SYNTAX     Integer32 (0..255)
255	MAX-ACCESS read-only
256	STATUS     current
257	DESCRIPTION
258		"The version of RTP through which the entry was learned."
259	::= { cvForwNeighborEntry 5 }
260
261cvForwNeighborUsageType OBJECT-TYPE
262	SYNTAX INTEGER { next(1), roundRobin(2), backup(3) }
263	MAX-ACCESS read-only
264	STATUS current
265	DESCRIPTION
266		"The way in which this path will be used to forward a
267		message."
268	::= { cvForwNeighborEntry 6 }
269
270cvForwNeighborAge OBJECT-TYPE
271	SYNTAX     Integer32 (-1..65535)
272	UNITS      "seconds"
273	MAX-ACCESS read-only
274	STATUS     current
275	DESCRIPTION
276		"The age of the entry, in seconds.  The value -1 indicates
277		not applicable, for RTP Version 0 neighbors on WAN
278		interfaces, when the interface is configured for
279		delta-only updates."
280	::= { cvForwNeighborEntry 7 }
281
282cvForwNeighborMetric OBJECT-TYPE
283	SYNTAX     VinesMetric
284	UNITS        "milleseconds"
285	MAX-ACCESS read-only
286	STATUS     current
287	DESCRIPTION
288		"The expected one-way delay to send a message to this
289		neighbor."
290	::= { cvForwNeighborEntry 8 }
291
292cvForwNeighborUses OBJECT-TYPE
293	SYNTAX     Counter32
294	MAX-ACCESS read-only
295	STATUS     current
296	DESCRIPTION
297		"For all cvForwNeighborSource values but 'manualRoute',
298		the number of times the path has been used to forward
299		a message.  For a 'manualRoute', the number of static
300		routes that use this neighbor as their first hop."
301	::= { cvForwNeighborEntry 9 }
302
303
304-- VINES Route Table
305
306cvForwRouteRouterCount OBJECT-TYPE
307	SYNTAX     Gauge32
308	MAX-ACCESS read-only
309	STATUS     current
310	DESCRIPTION
311		"The number of routers (servers) in the route table,
312		cvForwRouteTable."
313	::= { cvForwarding 5 }
314
315cvForwRouteRouteCount OBJECT-TYPE
316	SYNTAX     Gauge32
317	MAX-ACCESS read-only
318	STATUS     current
319	DESCRIPTION
320		"The number of routes in the route table,
321		cvForwRouteTable."
322	::= { cvForwarding 6 }
323
324cvForwRouteVersion OBJECT-TYPE
325	SYNTAX     Integer32
326	MAX-ACCESS read-only
327	STATUS     current
328	DESCRIPTION
329		"The version number of the route table,
330		cvForwRouteTable, incremented each time a route
331		or server (router) is added or deleted."
332	::= { cvForwarding 7 }
333
334cvForwRouteUpdateCountdown OBJECT-TYPE
335	SYNTAX     Gauge32
336	UNITS      "seconds"
337	MAX-ACCESS read-only
338	STATUS     current
339	DESCRIPTION
340		"The number of seconds until the next routing update."
341	::= { cvForwarding 8 }
342
343cvForwRouteTable OBJECT-TYPE
344	SYNTAX	SEQUENCE OF CvForwRouteEntry
345	MAX-ACCESS not-accessible
346	STATUS	current
347	DESCRIPTION
348		"A table of information about routes from this router
349		to other VINES networks."
350	::= { cvForwarding 9 }
351
352cvForwRouteEntry OBJECT-TYPE
353	SYNTAX CvForwRouteEntry
354	MAX-ACCESS not-accessible
355	STATUS current
356	DESCRIPTION
357		"Information about a route from this router to a remote
358		VINES network."
359	INDEX	{ cvForwRouteNetworkNumber,
360		  cvForwRouteNeighborNetwork }
361	::= { cvForwRouteTable 1 }
362
363CvForwRouteEntry ::=
364    SEQUENCE {
365	cvForwRouteNetworkNumber
366		VinesNetworkNumber,
367	cvForwRouteNeighborNetwork
368		VinesNetworkNumber,
369	cvForwRouteSource
370		INTEGER,
371	cvForwRouteRtpVersion
372		Integer32,
373	cvForwRouteUseNext
374		TruthValue,
375	cvForwRouteForwardBroadcast
376		TruthValue,
377	cvForwRouteSuppress
378		TruthValue,
379	cvForwRouteLoadShareEligible
380		TruthValue,
381	cvForwRouteAge
382		Integer32,
383	cvForwRouteMetric
384		VinesMetric,
385	cvForwRouteUses
386		Counter32
387    }
388
389cvForwRouteNetworkNumber OBJECT-TYPE
390	SYNTAX     VinesNetworkNumber
391	MAX-ACCESS not-accessible
392	STATUS     current
393	DESCRIPTION
394		"The remote network's VINES network number."
395	::= { cvForwRouteEntry 1 }
396
397cvForwRouteNeighborNetwork OBJECT-TYPE
398	SYNTAX     VinesNetworkNumber
399	MAX-ACCESS not-accessible
400	STATUS     current
401	DESCRIPTION
402		"The network part of the VINES internetwork address of
403		the neighbor that is the next hop to the remote network.
404		Since the neighbor is a router by definition, its host
405		number is 1."
406	::= { cvForwRouteEntry 2 }
407
408cvForwRouteSource OBJECT-TYPE
409	SYNTAX     INTEGER { unrecognized(1), self(2), rtpRedirect(3),
410			     rtpUpdate(4), manualRoute(5), igrp(6),
411			     test(7) }
412	MAX-ACCESS read-only
413	STATUS     current
414	DESCRIPTION
415		"The source of this entry."
416	::= { cvForwRouteEntry 3 }
417
418cvForwRouteRtpVersion OBJECT-TYPE
419	SYNTAX     Integer32 (0..255)
420	MAX-ACCESS read-only
421	STATUS     current
422	DESCRIPTION
423		"The version of RTP through which the entry was learned."
424	::= { cvForwRouteEntry 4 }
425
426cvForwRouteUseNext OBJECT-TYPE
427	SYNTAX TruthValue
428	MAX-ACCESS read-only
429	STATUS current
430	DESCRIPTION
431		"Whether this route is the one to use next to get to the
432		remote network."
433	::= { cvForwRouteEntry 5 }
434
435cvForwRouteForwardBroadcast OBJECT-TYPE
436	SYNTAX TruthValue
437	MAX-ACCESS read-only
438	STATUS current
439	DESCRIPTION
440		"Whether this route will be used to forward a broadcast
441		from a serverless network."
442	::= { cvForwRouteEntry 6 }
443
444cvForwRouteSuppress OBJECT-TYPE
445	SYNTAX TruthValue
446	MAX-ACCESS read-only
447	STATUS current
448	DESCRIPTION
449		"Whether this route is temporarily being suppressed as
450		normal operation before eventually advertising it."
451	::= { cvForwRouteEntry 7 }
452
453cvForwRouteLoadShareEligible OBJECT-TYPE
454	SYNTAX TruthValue
455	MAX-ACCESS read-only
456	STATUS current
457	DESCRIPTION
458		"Whether this route is eligible for load sharing because
459		its metric is equal to the best metric for the same
460		neighbor."
461	::= { cvForwRouteEntry 8 }
462
463cvForwRouteAge OBJECT-TYPE
464	SYNTAX     Integer32 (-1..65535)
465	UNITS      "seconds"
466	MAX-ACCESS read-only
467	STATUS     current
468	DESCRIPTION
469		"The age of the entry, in seconds.  The value -1 indicates
470		not applicable, for RTP Version 0 neighbors on WAN
471		interfaces, when the interface is configured for
472		delta-only updates."
473	::= { cvForwRouteEntry 9 }
474
475cvForwRouteMetric OBJECT-TYPE
476	SYNTAX     VinesMetric
477	UNITS        "milleseconds"
478	MAX-ACCESS read-only
479	STATUS     current
480	DESCRIPTION
481		"The expected one-way delay to send a message on this
482		route."
483	::= { cvForwRouteEntry 10 }
484
485cvForwRouteUses OBJECT-TYPE
486	SYNTAX     Counter32
487	MAX-ACCESS read-only
488	STATUS     current
489	DESCRIPTION
490		"The number of times the route has been used to forward
491		a message."
492	::= { cvForwRouteEntry 11 }
493
494
495-- Global Total Counters
496
497cvTotalInputPackets OBJECT-TYPE
498	SYNTAX     Counter32
499	MAX-ACCESS read-only
500	STATUS     current
501	DESCRIPTION
502		"Total count of number of VINES input packets."
503	::= { cvTotal 1 }
504
505cvTotalOutputPackets OBJECT-TYPE
506	SYNTAX     Counter32
507	MAX-ACCESS read-only
508	STATUS     current
509	DESCRIPTION
510		"Total count of number of VINES output packets."
511	::= { cvTotal 2 }
512
513cvTotalLocalDestPackets OBJECT-TYPE
514	SYNTAX     Counter32
515	MAX-ACCESS read-only
516	STATUS     current
517	DESCRIPTION
518		"Total count of VINES input packets for this host."
519	::= { cvTotal 3 }
520
521cvTotalForwardedPackets OBJECT-TYPE
522	SYNTAX     Counter32
523	MAX-ACCESS read-only
524	STATUS     current
525	DESCRIPTION
526		"Total count of number of VINES packets forwarded."
527	::= { cvTotal 4 }
528
529cvTotalBroadcastInPackets OBJECT-TYPE
530	SYNTAX     Counter32
531	MAX-ACCESS read-only
532	STATUS     current
533	DESCRIPTION
534		"Total count of number of VINES input
535		broadcast packets."
536	::= { cvTotal 5 }
537
538cvTotalBroadcastOutPackets OBJECT-TYPE
539	SYNTAX     Counter32
540	MAX-ACCESS read-only
541	STATUS     current
542	DESCRIPTION
543		"Total count of number of VINES output
544		broadcast packets."
545	::= { cvTotal 6 }
546
547cvTotalBroadcastForwardPackets OBJECT-TYPE
548	SYNTAX     Counter32
549	MAX-ACCESS read-only
550	STATUS     current
551	DESCRIPTION
552		"Total count of number of VINES broadcast
553		packets forwarded."
554	::= { cvTotal 7 }
555
556cvTotalLanOnlyPackets OBJECT-TYPE
557	SYNTAX     Counter32
558	MAX-ACCESS read-only
559	STATUS     current
560	DESCRIPTION
561		"Total count of number of VINES broadcast
562		packets not forwarded to all interfaces
563		because the LAN ONLY bit was set."
564	::= { cvTotal 8 }
565
566cvTotalNotOver4800Packets OBJECT-TYPE
567	SYNTAX     Counter32
568	MAX-ACCESS read-only
569	STATUS     current
570	DESCRIPTION
571		"Total count of number of VINES broadcast
572		packets not forwarded to all interfaces
573		because the OVER 4800 BPS bit was set."
574	::= { cvTotal 9 }
575
576cvTotalNoChargesPackets OBJECT-TYPE
577	SYNTAX     Counter32
578	MAX-ACCESS read-only
579	STATUS     current
580	DESCRIPTION
581		"Total count of number of VINES broadcast
582		packets not forwarded to all interfaces
583		because the NO CHARGES only bit was set."
584	::= { cvTotal 10 }
585
586cvTotalFormatErrors OBJECT-TYPE
587	SYNTAX     Counter32
588	MAX-ACCESS read-only
589	STATUS     current
590	DESCRIPTION
591		"Total count of number of VINES input packets
592		with header errors."
593	::= { cvTotal 11 }
594
595cvTotalChecksumErrors OBJECT-TYPE
596	SYNTAX     Counter32
597	MAX-ACCESS read-only
598	STATUS     current
599	DESCRIPTION
600		"Total count of number of VINES input packets
601		with checksum errors."
602	::= { cvTotal 12 }
603
604cvTotalHopCountsExceeded OBJECT-TYPE
605	SYNTAX     Counter32
606	MAX-ACCESS read-only
607	STATUS     current
608	DESCRIPTION
609		"Total count of number of VINES input packets
610		that have exceeded the maximum hop count."
611	::= { cvTotal 13 }
612
613cvTotalNoRouteDrops OBJECT-TYPE
614	SYNTAX     Counter32
615	MAX-ACCESS read-only
616	STATUS     current
617	DESCRIPTION
618		"Total count of number of VINES packets
619		dropped due to no route."
620	::= { cvTotal 14 }
621
622cvTotalEncapsFailedDrops OBJECT-TYPE
623	SYNTAX     Counter32
624	MAX-ACCESS read-only
625	STATUS     current
626	DESCRIPTION
627		"Total count of number of VINES packets
628		dropped due to output encapsulation failed."
629	::= { cvTotal 15 }
630
631cvTotalUnknownPackets OBJECT-TYPE
632	SYNTAX     Counter32
633	MAX-ACCESS read-only
634	STATUS     current
635	DESCRIPTION
636		"Total count of number of unknown VINES input
637		packets."
638	::= { cvTotal 16 }
639
640cvTotalIcpInPackets OBJECT-TYPE
641	SYNTAX     Counter32
642	MAX-ACCESS read-only
643	STATUS     current
644	DESCRIPTION
645		"Total count of number of VINES ICP packets
646		received."
647	::= { cvTotal 17 }
648
649cvTotalIcpOutPackets OBJECT-TYPE
650	SYNTAX     Counter32
651	MAX-ACCESS read-only
652	STATUS     current
653	DESCRIPTION
654		"Total count of number of VINES ICP packets
655		generated."
656	::= { cvTotal 18 }
657
658cvTotalMetricOutPackets OBJECT-TYPE
659	SYNTAX     Counter32
660	MAX-ACCESS read-only
661	STATUS     current
662	DESCRIPTION
663		"Total count of number of VINES ICP Metric
664		Notification packets generated."
665	::= { cvTotal 19 }
666
667cvTotalMacEchoInPackets OBJECT-TYPE
668	SYNTAX     Counter32
669	MAX-ACCESS read-only
670	STATUS     current
671	DESCRIPTION
672		"Total count of number of VINES MAC level
673		Echo packets received."
674	::= { cvTotal 20 }
675
676cvTotalMacEchoOutPackets OBJECT-TYPE
677	SYNTAX     Counter32
678	MAX-ACCESS read-only
679	STATUS     current
680	DESCRIPTION
681		"Total count of number of VINES MAC level
682		Echo packets generated."
683	::= { cvTotal 21 }
684
685cvTotalEchoInPackets OBJECT-TYPE
686	SYNTAX     Counter32
687	MAX-ACCESS read-only
688	STATUS     current
689	DESCRIPTION
690		"Total count of number of VINES Echo packets
691		received."
692	::= { cvTotal 22 }
693
694cvTotalEchoOutPackets OBJECT-TYPE
695	SYNTAX     Counter32
696	MAX-ACCESS read-only
697	STATUS     current
698	DESCRIPTION
699		"Total count of number of VINES Echo packets
700		generated."
701	::= { cvTotal 23 }
702
703cvTotalProxyOutPackets OBJECT-TYPE
704	SYNTAX     Counter32
705	MAX-ACCESS read-only
706	STATUS     current
707	DESCRIPTION
708		"Total count of proxy packets sent."
709	::= { cvTotal 24 }
710
711cvTotalProxyReplyOutPackets OBJECT-TYPE
712	SYNTAX     Counter32
713	MAX-ACCESS read-only
714	STATUS     current
715	DESCRIPTION
716		"Total count of responses to proxy packets."
717	::= { cvTotal 25 }
718
719
720-- Interface Information
721
722-- Interface Configuration Table
723
724cvIfConfigTable OBJECT-TYPE
725	SYNTAX     SEQUENCE OF CvIfConfigEntry
726	MAX-ACCESS not-accessible
727	STATUS     current
728	DESCRIPTION
729		"VINES interface configuration table."
730	::= { cvInterface 1 }
731
732cvIfConfigEntry OBJECT-TYPE
733	SYNTAX CvIfConfigEntry
734	MAX-ACCESS not-accessible
735	STATUS     current
736	DESCRIPTION
737		 "VINES interface configuration table entry."
738	INDEX { ifIndex }
739	::= { cvIfConfigTable 1 }
740
741CvIfConfigEntry ::=
742	SEQUENCE {
743	    cvIfConfigMetric
744		VinesMetric,
745	    cvIfConfigEncapsulation
746		INTEGER,
747	    cvIfConfigAccesslist
748		Integer32,
749	    cvIfConfigPropagate
750		INTEGER,
751	    cvIfConfigArpEnabled
752		INTEGER,
753	    cvIfConfigServerless
754		INTEGER,
755	    cvIfConfigRedirectInterval
756		Integer32,
757	    cvIfConfigSplitDisabled
758		TruthValue,
759	    cvIfConfigLineup
760		TruthValue,
761	    cvIfConfigFastokay
762		TruthValue,
763	    cvIfConfigRouteCache
764		TruthValue,
765	    cvIfConfigInputRouterFilter
766		Integer32,
767	    cvIfConfigInputNetworkFilter
768		Integer32,
769	    cvIfConfigOutputNetworkFilter
770		Integer32
771	}
772
773cvIfConfigMetric OBJECT-TYPE
774	SYNTAX     VinesMetric
775	MAX-ACCESS read-only
776	STATUS     current
777	DESCRIPTION
778		"VINES protocol metric value."
779	::= { cvIfConfigEntry 1 }
780
781cvIfConfigEncapsulation OBJECT-TYPE
782	SYNTAX     INTEGER { arpa(1), tokenRing(2), snap(3) }
783	MAX-ACCESS read-only
784	STATUS     current
785	DESCRIPTION
786		"VINES protocol default encapsulation"
787	::= { cvIfConfigEntry 2 }
788
789cvIfConfigAccesslist OBJECT-TYPE
790	SYNTAX     Integer32
791	MAX-ACCESS read-only
792	STATUS     current
793	DESCRIPTION
794		"VINES protocol outgoing access list number."
795	::= { cvIfConfigEntry 3 }
796
797cvIfConfigPropagate OBJECT-TYPE
798	SYNTAX     INTEGER { never(1), always(2), dynamic(3) }
799	MAX-ACCESS read-only
800	STATUS     current
801	DESCRIPTION
802		"VINES protocol propagation control."
803	::= { cvIfConfigEntry 4 }
804
805cvIfConfigArpEnabled OBJECT-TYPE
806	SYNTAX     INTEGER { never(1), always(2), dynamic(3) }
807	MAX-ACCESS read-only
808	STATUS     current
809	DESCRIPTION
810		"VINES protocol arp replies enabled."
811	::= { cvIfConfigEntry 5 }
812
813cvIfConfigServerless OBJECT-TYPE
814	SYNTAX     INTEGER { never(1), dynamic(2), always(3),
815			     alwaysBroadcast(4) }
816	MAX-ACCESS read-only
817	STATUS     current
818	DESCRIPTION
819		"VINES protocol serverless support enabled."
820	::= { cvIfConfigEntry 6 }
821
822cvIfConfigRedirectInterval OBJECT-TYPE
823	SYNTAX     Integer32
824	UNITS "milleseconds"
825	MAX-ACCESS read-only
826	STATUS     current
827	DESCRIPTION
828		"VINES protocol redirect interval (in ms)."
829	::= { cvIfConfigEntry 7 }
830
831cvIfConfigSplitDisabled OBJECT-TYPE
832	SYNTAX     TruthValue
833	MAX-ACCESS read-only
834	STATUS     current
835	DESCRIPTION
836		"VINES protocol split horizon disabled"
837	::= { cvIfConfigEntry 8 }
838
839cvIfConfigLineup OBJECT-TYPE
840	SYNTAX     TruthValue
841	MAX-ACCESS read-only
842	STATUS     current
843	DESCRIPTION
844		"VINES protocol line up/down."
845	::= { cvIfConfigEntry 9 }
846
847cvIfConfigFastokay OBJECT-TYPE
848	SYNTAX     TruthValue
849	MAX-ACCESS read-only
850	STATUS     current
851	DESCRIPTION
852		"VINES protocol fast switching supported."
853	::= { cvIfConfigEntry 10 }
854
855cvIfConfigRouteCache OBJECT-TYPE
856	SYNTAX     TruthValue
857	MAX-ACCESS read-only
858	STATUS     current
859	DESCRIPTION
860		"VINES protocol fast switching requested"
861	::= { cvIfConfigEntry 11 }
862
863cvIfConfigInputRouterFilter OBJECT-TYPE
864	SYNTAX     Integer32
865	MAX-ACCESS read-only
866	STATUS     current
867	DESCRIPTION
868		"VINES protocol filter on received routing
869		information source address."
870	::= { cvIfConfigEntry 12 }
871
872cvIfConfigInputNetworkFilter OBJECT-TYPE
873	SYNTAX     Integer32
874	MAX-ACCESS read-only
875	STATUS     current
876	DESCRIPTION
877		"VINES protocol filter on received routing
878		information content."
879	::= { cvIfConfigEntry 13 }
880
881cvIfConfigOutputNetworkFilter OBJECT-TYPE
882	SYNTAX     Integer32
883	MAX-ACCESS read-only
884	STATUS     current
885	DESCRIPTION
886		"VINES protocol filter on transmitted routing
887		information content."
888	::= { cvIfConfigEntry 14 }
889
890
891-- Interface Input Counter Table
892
893cvIfCountInTable OBJECT-TYPE
894	SYNTAX     SEQUENCE OF CvIfCountInEntry
895	MAX-ACCESS not-accessible
896	STATUS     current
897	DESCRIPTION
898		"VINES interface input counter table."
899	::= { cvInterface 2 }
900
901cvIfCountInEntry OBJECT-TYPE
902	SYNTAX     CvIfCountInEntry
903	MAX-ACCESS not-accessible
904	STATUS     current
905	DESCRIPTION
906		 "VINES interface input counter table entry."
907	INDEX { ifIndex }
908	::= { cvIfCountInTable 1 }
909
910CvIfCountInEntry ::=
911	SEQUENCE {
912	    cvIfCountInNotEnabledDrops
913		Counter32,
914	    cvIfCountInFormatErrors
915		Counter32,
916	    cvIfCountInLocalDestPackets
917		Counter32,
918	    cvIfCountInBroadcastPackets
919		Counter32,
920	    cvIfCountInForwardedPackets
921		Counter32,
922	    cvIfCountInNoRouteDrops
923		Counter32,
924	    cvIfCountInZeroHopCountDrops
925		Counter32,
926	    cvIfCountInChecksumErrors
927		Counter32,
928	    cvIfCountInArpQueryRequests
929		Counter32,
930	    cvIfCountInArpQueryResponses
931		Counter32,
932	    cvIfCountInArpAssignmentRequests
933		Counter32,
934	    cvIfCountInArpAssignmentResponses
935		Counter32,
936	    cvIfCountInArpIllegalMessages
937		Counter32,
938	    cvIfCountInIcpErrorMessages
939		Counter32,
940	    cvIfCountInIcpMetricMessages
941		Counter32,
942	    cvIfCountInIcpIllegalMessages
943		Counter32,
944	    cvIfCountInIpcMessages
945		Counter32,
946	    cvIfCountInRtp0Messages
947		Counter32,
948	    cvIfCountInRtp1Messages
949		Counter32,
950	    cvIfCountInRtp2Messages
951		Counter32,
952	    cvIfCountInRtp3Messages
953		Counter32,
954	    cvIfCountInRtpUpdateMessages
955		Counter32,
956	    cvIfCountInRtpResponseMessages
957		Counter32,
958	    cvIfCountInRtpRedirectMessages
959		Counter32,
960	    cvIfCountInRtpIllegalMessages
961		Counter32,
962	    cvIfCountInSppMessages
963		Counter32,
964	    cvIfCountInIpUnknownProtocols
965		Counter32,
966	    cvIfCountInIpcUnknownPorts
967		Counter32,
968	    cvIfCountInBroadcastsHelpered
969		Counter32,
970	    cvIfCountInBroadcastsForwarded
971		Counter32,
972	    cvIfCountInBroadcastDuplicates
973		Counter32,
974	    cvIfCountInEchoPackets
975		Counter32,
976	    cvIfCountInMacEchoPackets
977		Counter32,
978	    cvIfCountInProxyReplyPackets
979		Counter32
980	}
981
982cvIfCountInNotEnabledDrops OBJECT-TYPE
983	SYNTAX     Counter32
984	MAX-ACCESS read-only
985	STATUS     current
986	DESCRIPTION
987		"VINES protocol count of input packets
988		discarded because interface not configured."
989	::= { cvIfCountInEntry 1 }
990
991cvIfCountInFormatErrors OBJECT-TYPE
992	SYNTAX     Counter32
993	MAX-ACCESS read-only
994	STATUS     current
995	DESCRIPTION
996		"VINES protocol count of input packets with
997		format errors."
998	::= { cvIfCountInEntry 2 }
999
1000cvIfCountInLocalDestPackets OBJECT-TYPE
1001	SYNTAX     Counter32
1002	MAX-ACCESS read-only
1003	STATUS     current
1004	DESCRIPTION
1005		"VINES protocol count of input packets
1006		destined for this router."
1007	::= { cvIfCountInEntry 3 }
1008
1009cvIfCountInBroadcastPackets OBJECT-TYPE
1010	SYNTAX     Counter32
1011	MAX-ACCESS read-only
1012	STATUS     current
1013	DESCRIPTION
1014		"VINES protocol input broadcast count."
1015	::= { cvIfCountInEntry 4 }
1016
1017cvIfCountInForwardedPackets OBJECT-TYPE
1018	SYNTAX     Counter32
1019	MAX-ACCESS read-only
1020	STATUS     current
1021	DESCRIPTION
1022		"VINES protocol count of input packets
1023		forwarded to another interface."
1024	::= { cvIfCountInEntry 5 }
1025
1026cvIfCountInNoRouteDrops OBJECT-TYPE
1027	SYNTAX     Counter32
1028	MAX-ACCESS read-only
1029	STATUS     current
1030	DESCRIPTION
1031		"VINES protocol count of input packets
1032		dropped because there was no route to the
1033		destination."
1034	::= { cvIfCountInEntry 6 }
1035
1036cvIfCountInZeroHopCountDrops OBJECT-TYPE
1037	SYNTAX     Counter32
1038	MAX-ACCESS read-only
1039	STATUS     current
1040	DESCRIPTION
1041		"VINES protocol count of input packets
1042		dropped due to a zero hop count."
1043	::= { cvIfCountInEntry 7 }
1044
1045cvIfCountInChecksumErrors OBJECT-TYPE
1046	SYNTAX     Counter32
1047	MAX-ACCESS read-only
1048	STATUS     current
1049	DESCRIPTION
1050		"VINES protocol count of input packets with
1051		checksum errors."
1052	::= { cvIfCountInEntry 8 }
1053
1054cvIfCountInArpQueryRequests OBJECT-TYPE
1055	SYNTAX     Counter32
1056	MAX-ACCESS read-only
1057	STATUS     current
1058	DESCRIPTION
1059		"VINES protocol count of input ARP Query
1060		Request messages."
1061	::= { cvIfCountInEntry 9 }
1062
1063cvIfCountInArpQueryResponses OBJECT-TYPE
1064	SYNTAX     Counter32
1065	MAX-ACCESS read-only
1066	STATUS     current
1067	DESCRIPTION
1068		"VINES protocol count of input ARP Query
1069		Response messages."
1070	::= { cvIfCountInEntry 10 }
1071
1072cvIfCountInArpAssignmentRequests OBJECT-TYPE
1073	SYNTAX     Counter32
1074	MAX-ACCESS read-only
1075	STATUS     current
1076	DESCRIPTION
1077		"VINES protocol count of input ARP Assignment
1078		Request messages."
1079	::= { cvIfCountInEntry 11 }
1080
1081cvIfCountInArpAssignmentResponses OBJECT-TYPE
1082	SYNTAX     Counter32
1083	MAX-ACCESS read-only
1084	STATUS     current
1085	DESCRIPTION
1086		"VINES protocol count of input ARP Assignment
1087		Response messages."
1088	::= { cvIfCountInEntry 12 }
1089
1090cvIfCountInArpIllegalMessages OBJECT-TYPE
1091	SYNTAX     Counter32
1092	MAX-ACCESS read-only
1093	STATUS     current
1094	DESCRIPTION
1095		"VINES protocol count of input illegal ARP
1096		messages."
1097	::= { cvIfCountInEntry 13 }
1098
1099cvIfCountInIcpErrorMessages OBJECT-TYPE
1100	SYNTAX     Counter32
1101	MAX-ACCESS read-only
1102	STATUS     current
1103	DESCRIPTION
1104		"VINES protocol count of input ICP error
1105		messages."
1106	::= { cvIfCountInEntry 14 }
1107
1108cvIfCountInIcpMetricMessages OBJECT-TYPE
1109	SYNTAX     Counter32
1110	MAX-ACCESS read-only
1111	STATUS     current
1112	DESCRIPTION
1113		"VINES protocol count of input ICP metric
1114		messages."
1115	::= { cvIfCountInEntry 15 }
1116
1117cvIfCountInIcpIllegalMessages OBJECT-TYPE
1118	SYNTAX     Counter32
1119	MAX-ACCESS read-only
1120	STATUS     current
1121	DESCRIPTION
1122		"VINES protocol count of input illegal ICP
1123		messages."
1124	::= { cvIfCountInEntry 16 }
1125
1126cvIfCountInIpcMessages OBJECT-TYPE
1127	SYNTAX     Counter32
1128	MAX-ACCESS read-only
1129	STATUS     current
1130	DESCRIPTION
1131		"VINES protocol count of input IPC messages."
1132	::= { cvIfCountInEntry 17 }
1133
1134cvIfCountInRtp0Messages OBJECT-TYPE
1135	SYNTAX     Counter32
1136	MAX-ACCESS read-only
1137	STATUS     current
1138	DESCRIPTION
1139		"VINES protocol count of input RTP type 0
1140		messages."
1141	::= { cvIfCountInEntry 18 }
1142
1143cvIfCountInRtp1Messages OBJECT-TYPE
1144	SYNTAX     Counter32
1145	MAX-ACCESS read-only
1146	STATUS     current
1147	DESCRIPTION
1148		"VINES protocol count of input RTP Request
1149		messages."
1150	::= { cvIfCountInEntry 19 }
1151
1152cvIfCountInRtp2Messages OBJECT-TYPE
1153	SYNTAX     Counter32
1154	MAX-ACCESS read-only
1155	STATUS     current
1156	DESCRIPTION
1157		"VINES protocol count of input RTP type 2
1158		messages."
1159	::= { cvIfCountInEntry 20 }
1160
1161cvIfCountInRtp3Messages OBJECT-TYPE
1162	SYNTAX     Counter32
1163	MAX-ACCESS read-only
1164	STATUS     current
1165	DESCRIPTION
1166		"VINES protocol count of input RTP type 3
1167		messages."
1168	::= { cvIfCountInEntry 21 }
1169
1170cvIfCountInRtpUpdateMessages OBJECT-TYPE
1171	SYNTAX     Counter32
1172	MAX-ACCESS read-only
1173		   STATUS     current
1174		   DESCRIPTION
1175		"VINES protocol count of input RTP Update
1176		messages."
1177	::= { cvIfCountInEntry 22 }
1178
1179cvIfCountInRtpResponseMessages OBJECT-TYPE
1180	SYNTAX     Counter32
1181	MAX-ACCESS read-only
1182	STATUS     current
1183	DESCRIPTION
1184		"VINES protocol count of input RTP Response
1185		messages."
1186	::= { cvIfCountInEntry 23 }
1187
1188cvIfCountInRtpRedirectMessages OBJECT-TYPE
1189	SYNTAX     Counter32
1190	MAX-ACCESS read-only
1191	STATUS     current
1192	DESCRIPTION
1193		"VINES protocol count of input RTP Redirect
1194		messages."
1195	::= { cvIfCountInEntry 24 }
1196
1197cvIfCountInRtpIllegalMessages OBJECT-TYPE
1198	SYNTAX     Counter32
1199	MAX-ACCESS read-only
1200	STATUS     current
1201	DESCRIPTION
1202		"VINES protocol count of input illegal RTP
1203		messages."
1204	::= { cvIfCountInEntry 25 }
1205
1206cvIfCountInSppMessages OBJECT-TYPE
1207	SYNTAX     Counter32
1208	MAX-ACCESS read-only
1209	STATUS     current
1210	DESCRIPTION
1211		"VINES protocol count of input SPP messages."
1212	::= { cvIfCountInEntry 26 }
1213
1214cvIfCountInIpUnknownProtocols OBJECT-TYPE
1215	SYNTAX     Counter32
1216	MAX-ACCESS read-only
1217	STATUS     current
1218	DESCRIPTION
1219		"VINES protocol count of input packets of
1220		unknown VINES protocols."
1221	::= { cvIfCountInEntry 27 }
1222
1223cvIfCountInIpcUnknownPorts OBJECT-TYPE
1224	SYNTAX     Counter32
1225	MAX-ACCESS read-only
1226	STATUS     current
1227	DESCRIPTION
1228		"VINES protocol count of input packets of
1229		unknown VINES IPC ports."
1230	::= { cvIfCountInEntry 28 }
1231
1232cvIfCountInBroadcastsHelpered OBJECT-TYPE
1233	SYNTAX     Counter32
1234	MAX-ACCESS read-only
1235	STATUS     current
1236	DESCRIPTION
1237		"VINES protocol count of input packets
1238		helpered to another server."
1239	::= { cvIfCountInEntry 29 }
1240
1241cvIfCountInBroadcastsForwarded OBJECT-TYPE
1242	SYNTAX     Counter32
1243	MAX-ACCESS read-only
1244	STATUS     current
1245	DESCRIPTION
1246		"VINES protocol input broadcast forwarded to
1247		other interface(s)."
1248	::= { cvIfCountInEntry 30 }
1249
1250cvIfCountInBroadcastDuplicates OBJECT-TYPE
1251	SYNTAX     Counter32
1252	MAX-ACCESS read-only
1253	STATUS     current
1254	DESCRIPTION
1255		"VINES protocol input duplicate broadcast
1256		count."
1257	::= { cvIfCountInEntry 31 }
1258
1259cvIfCountInEchoPackets OBJECT-TYPE
1260	SYNTAX     Counter32
1261	MAX-ACCESS read-only
1262	STATUS     current
1263	DESCRIPTION
1264		"VINES protocol count of input IPC echo
1265		messages."
1266	::= { cvIfCountInEntry 32 }
1267
1268cvIfCountInMacEchoPackets OBJECT-TYPE
1269	SYNTAX     Counter32
1270	MAX-ACCESS read-only
1271	STATUS     current
1272	DESCRIPTION
1273		"VINES protocol count of input MAC layer echo
1274		frames."
1275	::= { cvIfCountInEntry 33 }
1276
1277cvIfCountInProxyReplyPackets OBJECT-TYPE
1278	SYNTAX     Counter32
1279	MAX-ACCESS read-only
1280	STATUS     current
1281	DESCRIPTION
1282		"VINES protocol count of responses to proxy
1283		packets."
1284	::= { cvIfCountInEntry 34 }
1285
1286
1287-- Interface Output Counter Table
1288
1289cvIfCountOutTable OBJECT-TYPE
1290	SYNTAX     SEQUENCE OF CvIfCountOutEntry
1291	MAX-ACCESS not-accessible
1292	STATUS     current
1293	DESCRIPTION
1294		"VINES interface output counter table."
1295	::= { cvInterface 3 }
1296
1297cvIfCountOutEntry OBJECT-TYPE
1298	SYNTAX     CvIfCountOutEntry
1299	MAX-ACCESS not-accessible
1300	STATUS     current
1301	DESCRIPTION
1302		 "VINES interface output counter table entry."
1303	INDEX { ifIndex }
1304	::= { cvIfCountOutTable 1 }
1305
1306CvIfCountOutEntry ::=
1307	SEQUENCE {
1308	    cvIfCountOutUnicastPackets
1309		Counter32,
1310	    cvIfCountOutBroadcastPackets
1311		Counter32,
1312	    cvIfCountOutForwardedPackets
1313		Counter32,
1314	    cvIfCountOutEncapsulationFailures
1315		Counter32,
1316	    cvIfCountOutAccessFailures
1317		Counter32,
1318	    cvIfCountOutDownFailures
1319		Counter32,
1320	    cvIfCountOutPacketsNotBroadcastToSource
1321		Counter32,
1322	    cvIfCountOutPacketsNotBroadcastLanOnly
1323		Counter32,
1324	    cvIfCountOutPacketsNotBroadcastNotOver4800
1325		Counter32,
1326	    cvIfCountOutPacketsNotBroadcastNoCharge
1327		Counter32,
1328	    cvIfCountOutBroadcastsForwarded
1329		Counter32,
1330	    cvIfCountOutBroadcastsHelpered
1331		Counter32,
1332	    cvIfCountOutArpQueryRequests
1333		Counter32,
1334	    cvIfCountOutArpQueryResponses
1335		Counter32,
1336	    cvIfCountOutArpAssignmentRequests
1337		Counter32,
1338	    cvIfCountOutArpAssignmentResponses
1339		Counter32,
1340	    cvIfCountOutIcpErrorMessages
1341		Counter32,
1342	    cvIfCountOutIcpMetricMessages
1343		Counter32,
1344	    cvIfCountOutIpcMessages
1345		Counter32,
1346	    cvIfCountOutRtp0Messages
1347		Counter32,
1348	    cvIfCountOutRtpRequestMessages
1349		Counter32,
1350	    cvIfCountOutRtp2Messages
1351		Counter32,
1352	    cvIfCountOutRtp3Messages
1353		Counter32,
1354	    cvIfCountOutRtpUpdateMessages
1355		Counter32,
1356	    cvIfCountOutRtpResponseMessages
1357		Counter32,
1358	    cvIfCountOutRtpRedirectMessages
1359		Counter32,
1360	    cvIfCountOutSppMessages
1361		Counter32,
1362	    cvIfCountOutEchoPackets
1363		Counter32,
1364	    cvIfCountOutMacEchoPackets
1365		Counter32,
1366	    cvIfCountOutProxyPackets
1367		Counter32
1368	}
1369
1370cvIfCountOutUnicastPackets OBJECT-TYPE
1371	SYNTAX     Counter32
1372	MAX-ACCESS read-only
1373	STATUS     current
1374	DESCRIPTION
1375		"VINES protocol unicast packets generated."
1376	::= { cvIfCountOutEntry 1 }
1377
1378cvIfCountOutBroadcastPackets OBJECT-TYPE
1379	SYNTAX     Counter32
1380	MAX-ACCESS read-only
1381	STATUS     current
1382	DESCRIPTION
1383		"VINES protocol broadcast packets
1384		generated."
1385	::= { cvIfCountOutEntry 2 }
1386
1387cvIfCountOutForwardedPackets OBJECT-TYPE
1388	SYNTAX     Counter32
1389	MAX-ACCESS read-only
1390	STATUS     current
1391	DESCRIPTION
1392		"VINES protocol count of forwarded packets."
1393	::= { cvIfCountOutEntry 3 }
1394
1395cvIfCountOutEncapsulationFailures OBJECT-TYPE
1396	SYNTAX     Counter32
1397	MAX-ACCESS read-only
1398	STATUS     current
1399	DESCRIPTION
1400		"VINES protocol output encapsulation
1401		failures."
1402	::= { cvIfCountOutEntry 4 }
1403
1404cvIfCountOutAccessFailures OBJECT-TYPE
1405	SYNTAX     Counter32
1406	MAX-ACCESS read-only
1407	STATUS     current
1408	DESCRIPTION
1409		"VINES protocol output access list failures."
1410	::= { cvIfCountOutEntry 5 }
1411
1412cvIfCountOutDownFailures OBJECT-TYPE
1413	SYNTAX     Counter32
1414	MAX-ACCESS read-only
1415	STATUS     current
1416	DESCRIPTION
1417		"VINES protocol output interface down count."
1418	::= { cvIfCountOutEntry 6 }
1419
1420cvIfCountOutPacketsNotBroadcastToSource OBJECT-TYPE
1421	SYNTAX     Counter32
1422	MAX-ACCESS read-only
1423	STATUS     current
1424	DESCRIPTION
1425		"VINES protocol output broadcast not sent
1426		because interface leads back to the source."
1427	::= { cvIfCountOutEntry 7 }
1428
1429cvIfCountOutPacketsNotBroadcastLanOnly OBJECT-TYPE
1430	SYNTAX     Counter32
1431	MAX-ACCESS read-only
1432	STATUS     current
1433	DESCRIPTION
1434		"VINES protocol output broadcast not sent due
1435		to 'Lan Only' class."
1436	::= { cvIfCountOutEntry 8 }
1437
1438cvIfCountOutPacketsNotBroadcastNotOver4800 OBJECT-TYPE
1439	SYNTAX     Counter32
1440	MAX-ACCESS read-only
1441	STATUS     current
1442	DESCRIPTION
1443		"VINES protocol output broadcast not sent due
1444		to 'High Speed' class."
1445	::= { cvIfCountOutEntry 9 }
1446
1447cvIfCountOutPacketsNotBroadcastNoCharge OBJECT-TYPE
1448	SYNTAX     Counter32
1449	MAX-ACCESS read-only
1450	STATUS     current
1451	DESCRIPTION
1452		"VINES protocol output broadcast not sent due
1453		to 'No Charges' class."
1454	::= { cvIfCountOutEntry 10 }
1455
1456cvIfCountOutBroadcastsForwarded OBJECT-TYPE
1457	SYNTAX     Counter32
1458	MAX-ACCESS read-only
1459	STATUS     current
1460	DESCRIPTION
1461		"VINES protocol output broadcast forwarded
1462		from another interface."
1463	::= { cvIfCountOutEntry 11 }
1464
1465cvIfCountOutBroadcastsHelpered OBJECT-TYPE
1466	SYNTAX     Counter32
1467	MAX-ACCESS read-only
1468	STATUS     current
1469	DESCRIPTION
1470		"VINES protocol output broadcast helpered to
1471		a VINES server."
1472	::= { cvIfCountOutEntry 12 }
1473
1474cvIfCountOutArpQueryRequests OBJECT-TYPE
1475	SYNTAX     Counter32
1476	MAX-ACCESS read-only
1477	STATUS     current
1478	DESCRIPTION
1479		"VINES protocol count of output ARP Query
1480		Request messages."
1481	::= { cvIfCountOutEntry 13 }
1482
1483cvIfCountOutArpQueryResponses OBJECT-TYPE
1484	SYNTAX     Counter32
1485	MAX-ACCESS read-only
1486	STATUS     current
1487	DESCRIPTION
1488		"VINES protocol count of output ARP Query
1489		Response messages."
1490	::= { cvIfCountOutEntry 14 }
1491
1492cvIfCountOutArpAssignmentRequests OBJECT-TYPE
1493	SYNTAX     Counter32
1494	MAX-ACCESS read-only
1495	STATUS     current
1496	DESCRIPTION
1497		"VINES protocol count of output ARP
1498		Assignment Request messages."
1499	::= { cvIfCountOutEntry 15 }
1500
1501cvIfCountOutArpAssignmentResponses OBJECT-TYPE
1502	SYNTAX     Counter32
1503	MAX-ACCESS read-only
1504	STATUS     current
1505	DESCRIPTION
1506		"VINES protocol count of input ARP Assignment
1507		Response messages."
1508	::= { cvIfCountOutEntry 16 }
1509
1510cvIfCountOutIcpErrorMessages OBJECT-TYPE
1511	SYNTAX     Counter32
1512	MAX-ACCESS read-only
1513	STATUS     current
1514	DESCRIPTION
1515		"VINES protocol count of output IPC Error
1516		messages."
1517	::= { cvIfCountOutEntry 17 }
1518
1519cvIfCountOutIcpMetricMessages OBJECT-TYPE
1520	SYNTAX     Counter32
1521	MAX-ACCESS read-only
1522	STATUS     current
1523	DESCRIPTION
1524		"VINES protocol count of output IPC metric
1525		messages."
1526	::= { cvIfCountOutEntry 18 }
1527
1528cvIfCountOutIpcMessages OBJECT-TYPE
1529	SYNTAX     Counter32
1530	MAX-ACCESS read-only
1531	STATUS     current
1532	DESCRIPTION
1533		"VINES protocol count of output ICP
1534		messages."
1535	::= { cvIfCountOutEntry 19 }
1536
1537cvIfCountOutRtp0Messages OBJECT-TYPE
1538	SYNTAX     Counter32
1539	MAX-ACCESS read-only
1540	STATUS     current
1541	DESCRIPTION
1542		"VINES protocol count of output RTP type 0
1543		messages."
1544	::= { cvIfCountOutEntry 20 }
1545
1546cvIfCountOutRtpRequestMessages OBJECT-TYPE
1547	SYNTAX     Counter32
1548	MAX-ACCESS read-only
1549	STATUS     current
1550	DESCRIPTION
1551		"VINES protocol count of output RTP Request
1552		messages."
1553	::= { cvIfCountOutEntry 21 }
1554
1555cvIfCountOutRtp2Messages OBJECT-TYPE
1556	SYNTAX     Counter32
1557	MAX-ACCESS read-only
1558	STATUS     current
1559	DESCRIPTION
1560		"VINES protocol count of output RTP type 2
1561		messages."
1562	::= { cvIfCountOutEntry 22 }
1563
1564cvIfCountOutRtp3Messages OBJECT-TYPE
1565	SYNTAX     Counter32
1566	MAX-ACCESS read-only
1567	STATUS     current
1568	DESCRIPTION
1569		"VINES protocol count of output RTP type 3
1570		messages."
1571	::= { cvIfCountOutEntry 23 }
1572
1573cvIfCountOutRtpUpdateMessages OBJECT-TYPE
1574	SYNTAX     Counter32
1575	MAX-ACCESS read-only
1576	STATUS     current
1577	DESCRIPTION
1578		"VINES protocol count of output RTP Update
1579		messages."
1580	::= { cvIfCountOutEntry 24 }
1581
1582cvIfCountOutRtpResponseMessages OBJECT-TYPE
1583	SYNTAX     Counter32
1584	MAX-ACCESS read-only
1585	STATUS     current
1586	DESCRIPTION
1587		"VINES protocol count of output RTP Response
1588		messages."
1589	::= { cvIfCountOutEntry 25 }
1590
1591cvIfCountOutRtpRedirectMessages OBJECT-TYPE
1592	SYNTAX     Counter32
1593	MAX-ACCESS read-only
1594	STATUS     current
1595	DESCRIPTION
1596		"VINES protocol count of output RTP Redirect
1597		messages."
1598	::= { cvIfCountOutEntry 26 }
1599
1600cvIfCountOutSppMessages OBJECT-TYPE
1601	SYNTAX     Counter32
1602	MAX-ACCESS read-only
1603	STATUS     current
1604	DESCRIPTION
1605		"VINES protocol count of output SPP
1606		messages."
1607	::= { cvIfCountOutEntry 27 }
1608
1609cvIfCountOutEchoPackets OBJECT-TYPE
1610	SYNTAX     Counter32
1611	MAX-ACCESS read-only
1612	STATUS     current
1613	DESCRIPTION
1614		"VINES protocol count of output IPC echo
1615		messages."
1616	::= { cvIfCountOutEntry 28 }
1617
1618cvIfCountOutMacEchoPackets OBJECT-TYPE
1619	SYNTAX     Counter32
1620	MAX-ACCESS read-only
1621	STATUS     current
1622	DESCRIPTION
1623		"VINES protocol count of output IPCMAC layer
1624		echo frames."
1625	::= { cvIfCountOutEntry 29 }
1626
1627cvIfCountOutProxyPackets OBJECT-TYPE
1628	SYNTAX     Counter32
1629	MAX-ACCESS read-only
1630	STATUS     current
1631	DESCRIPTION
1632		"VINES protocol count of proxy packets sent."
1633	::= { cvIfCountOutEntry 30 }
1634
1635
1636-- conformance information
1637
1638ciscoVinesMIBConformance OBJECT IDENTIFIER ::= { ciscoVinesMIB 3 }
1639ciscoVinesMIBCompliances OBJECT IDENTIFIER ::= { ciscoVinesMIBConformance 1 }
1640ciscoVinesMIBGroups      OBJECT IDENTIFIER ::= { ciscoVinesMIBConformance 2 }
1641
1642
1643-- compliance statement
1644
1645ciscoVinesMIBCompliance MODULE-COMPLIANCE
1646	STATUS	current
1647	DESCRIPTION
1648		"The compliance statement for entities which implement
1649		the Cisco VINES MIB"
1650	MODULE	-- this module
1651		MANDATORY-GROUPS { ciscoVinesMIBGroup }
1652	::= { ciscoVinesMIBCompliances 1 }
1653
1654
1655-- units of conformance
1656
1657ciscoVinesMIBGroup OBJECT-GROUP
1658	OBJECTS {
1659		cvBasicNetwork,
1660		cvBasicHost,
1661		cvBasicNextClient,
1662		cvForwNeighborNeighborCount,
1663		cvForwNeighborPathCount,
1664		cvForwNeighborVersion,
1665		cvForwNeighborSource,
1666		cvForwNeighborRtpVersion,
1667		cvForwNeighborUsageType,
1668		cvForwNeighborAge,
1669		cvForwNeighborMetric,
1670		cvForwNeighborUses,
1671		cvForwRouteRouterCount,
1672		cvForwRouteRouteCount,
1673		cvForwRouteVersion,
1674		cvForwRouteUpdateCountdown,
1675		cvForwRouteSource,
1676		cvForwRouteRtpVersion,
1677		cvForwRouteUseNext,
1678		cvForwRouteForwardBroadcast,
1679		cvForwRouteSuppress,
1680		cvForwRouteLoadShareEligible,
1681		cvForwRouteAge,
1682		cvForwRouteMetric,
1683		cvForwRouteUses,
1684		cvTotalInputPackets,
1685		cvTotalOutputPackets,
1686		cvTotalLocalDestPackets,
1687		cvTotalForwardedPackets,
1688		cvTotalBroadcastInPackets,
1689		cvTotalBroadcastOutPackets,
1690		cvTotalBroadcastForwardPackets,
1691		cvTotalLanOnlyPackets,
1692		cvTotalNotOver4800Packets,
1693		cvTotalNoChargesPackets,
1694		cvTotalFormatErrors,
1695		cvTotalChecksumErrors,
1696		cvTotalHopCountsExceeded,
1697		cvTotalNoRouteDrops,
1698		cvTotalEncapsFailedDrops,
1699		cvTotalUnknownPackets,
1700		cvTotalIcpInPackets,
1701		cvTotalIcpOutPackets,
1702		cvTotalMetricOutPackets,
1703		cvTotalMacEchoInPackets,
1704		cvTotalMacEchoOutPackets,
1705		cvTotalEchoInPackets,
1706		cvTotalEchoOutPackets,
1707		cvTotalProxyOutPackets,
1708		cvTotalProxyReplyOutPackets,
1709		cvIfConfigMetric,
1710		cvIfConfigEncapsulation,
1711		cvIfConfigAccesslist,
1712		cvIfConfigPropagate,
1713		cvIfConfigArpEnabled,
1714		cvIfConfigServerless,
1715		cvIfConfigRedirectInterval,
1716		cvIfConfigSplitDisabled,
1717		cvIfConfigLineup,
1718		cvIfConfigFastokay,
1719		cvIfConfigRouteCache,
1720		cvIfConfigInputRouterFilter,
1721		cvIfConfigInputNetworkFilter,
1722		cvIfConfigOutputNetworkFilter,
1723		cvIfCountInNotEnabledDrops,
1724		cvIfCountInFormatErrors,
1725		cvIfCountInLocalDestPackets,
1726		cvIfCountInBroadcastPackets,
1727		cvIfCountInForwardedPackets,
1728		cvIfCountInNoRouteDrops,
1729		cvIfCountInZeroHopCountDrops,
1730		cvIfCountInChecksumErrors,
1731		cvIfCountInArpQueryRequests,
1732		cvIfCountInArpQueryResponses,
1733		cvIfCountInArpAssignmentRequests,
1734		cvIfCountInArpAssignmentResponses,
1735		cvIfCountInArpIllegalMessages,
1736		cvIfCountInIcpErrorMessages,
1737		cvIfCountInIcpMetricMessages,
1738		cvIfCountInIcpIllegalMessages,
1739		cvIfCountInIpcMessages,
1740		cvIfCountInRtp0Messages,
1741		cvIfCountInRtp1Messages,
1742		cvIfCountInRtp2Messages,
1743		cvIfCountInRtp3Messages,
1744		cvIfCountInRtpUpdateMessages,
1745		cvIfCountInRtpResponseMessages,
1746		cvIfCountInRtpRedirectMessages,
1747		cvIfCountInRtpIllegalMessages,
1748		cvIfCountInSppMessages,
1749		cvIfCountInIpUnknownProtocols,
1750		cvIfCountInIpcUnknownPorts,
1751		cvIfCountInBroadcastsHelpered,
1752		cvIfCountInBroadcastsForwarded,
1753		cvIfCountInBroadcastDuplicates,
1754		cvIfCountInEchoPackets,
1755		cvIfCountInMacEchoPackets,
1756		cvIfCountInProxyReplyPackets,
1757		cvIfCountOutUnicastPackets,
1758		cvIfCountOutBroadcastPackets,
1759		cvIfCountOutForwardedPackets,
1760		cvIfCountOutEncapsulationFailures,
1761		cvIfCountOutAccessFailures,
1762		cvIfCountOutDownFailures,
1763		cvIfCountOutPacketsNotBroadcastToSource,
1764		cvIfCountOutPacketsNotBroadcastLanOnly,
1765		cvIfCountOutPacketsNotBroadcastNotOver4800,
1766		cvIfCountOutPacketsNotBroadcastNoCharge,
1767		cvIfCountOutBroadcastsForwarded,
1768		cvIfCountOutBroadcastsHelpered,
1769		cvIfCountOutArpQueryRequests,
1770		cvIfCountOutArpQueryResponses,
1771		cvIfCountOutArpAssignmentRequests,
1772		cvIfCountOutArpAssignmentResponses,
1773		cvIfCountOutIcpErrorMessages,
1774		cvIfCountOutIcpMetricMessages,
1775		cvIfCountOutIpcMessages,
1776		cvIfCountOutRtp0Messages,
1777		cvIfCountOutRtpRequestMessages,
1778		cvIfCountOutRtp2Messages,
1779		cvIfCountOutRtp3Messages,
1780		cvIfCountOutRtpUpdateMessages,
1781		cvIfCountOutRtpResponseMessages,
1782		cvIfCountOutRtpRedirectMessages,
1783		cvIfCountOutSppMessages,
1784		cvIfCountOutEchoPackets,
1785		cvIfCountOutMacEchoPackets,
1786		cvIfCountOutProxyPackets
1787	}
1788	STATUS	current
1789	DESCRIPTION
1790		"A collection of objects providing VINES monitoring."
1791	::= { ciscoVinesMIBGroups 1 }
1792
1793END
1794