-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathIP-MIB.yang
4157 lines (3590 loc) · 153 KB
/
IP-MIB.yang
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* This YANG module has been generated by smidump 0.5.0:
*
* smidump -f yang IP-MIB
*
* Do not edit. Edit the source file instead!
*/
module IP-MIB {
namespace "urn:ietf:params:xml:ns:yang:smiv2:IP-MIB";
prefix "ip-mib";
import IF-MIB {
prefix "if-mib";
}
import INET-ADDRESS-MIB {
prefix "inet-address";
}
import SNMPv2-TC {
prefix "snmpv2-tc";
}
import ietf-inet-types {
prefix "inet";
}
import ietf-yang-smiv2 {
prefix "smiv2";
}
import ietf-yang-types {
prefix "yang";
}
organization
"IETF IPv6 MIB Revision Team";
contact
"Editor:
Shawn A. Routhier
Interworking Labs
108 Whispering Pines Dr. Suite 235
Scotts Valley, CA 95066
USA
EMail: <sar@iwl.com>";
description
"The MIB module for managing IP and ICMP implementations, but
excluding their management of IP routes.
Copyright (C) The Internet Society (2006). This version of
this MIB module is part of RFC 4293; see the RFC itself for
full legal notices.";
revision 2006-02-02 {
description
"The IP version neutral revision with added IPv6 objects for
ND, default routers, and router advertisements. As well as
being the successor to RFC 2011, this MIB is also the
successor to RFCs 2465 and 2466. Published as RFC 4293.";
}
revision 1994-11-01 {
description
"A separate MIB module (IP-MIB) for IP and ICMP management
objects. Published as RFC 2011.";
}
revision 1991-03-31 {
description
"The initial revision of this MIB module was part of MIB-II,
which was published as RFC 1213.";
}
typedef IpAddressOriginTC {
type enumeration {
enum "other" {
value "1";
}
enum "manual" {
value "2";
}
enum "dhcp" {
value "4";
}
enum "linklayer" {
value "5";
}
enum "random" {
value "6";
}
}
description
"The origin of the address.
manual(2) indicates that the address was manually configured
to a specified address, e.g., by user configuration.
dhcp(4) indicates an address that was assigned to this
system by a DHCP server.
linklayer(5) indicates an address created by IPv6 stateless
auto-configuration.
random(6) indicates an address chosen by the system at
random, e.g., an IPv4 address within 169.254/16, or an RFC
3041 privacy address.";
}
typedef IpAddressStatusTC {
type enumeration {
enum "preferred" {
value "1";
}
enum "deprecated" {
value "2";
}
enum "invalid" {
value "3";
}
enum "inaccessible" {
value "4";
}
enum "unknown" {
value "5";
}
enum "tentative" {
value "6";
}
enum "duplicate" {
value "7";
}
enum "optimistic" {
value "8";
}
}
description
"The status of an address. Most of the states correspond to
states from the IPv6 Stateless Address Autoconfiguration
protocol.
The preferred(1) state indicates that this is a valid
address that can appear as the destination or source address
of a packet.
The deprecated(2) state indicates that this is a valid but
deprecated address that should no longer be used as a source
address in new communications, but packets addressed to such
an address are processed as expected.
The invalid(3) state indicates that this isn't a valid
address and it shouldn't appear as the destination or source
address of a packet.
The inaccessible(4) state indicates that the address is not
accessible because the interface to which this address is
assigned is not operational.
The unknown(5) state indicates that the status cannot be
determined for some reason.
The tentative(6) state indicates that the uniqueness of the
address on the link is being verified. Addresses in this
state should not be used for general communication and
should only be used to determine the uniqueness of the
address.
The duplicate(7) state indicates the address has been
determined to be non-unique on the link and so must not be
used.
The optimistic(8) state indicates the address is available
for use, subject to restrictions, while its uniqueness on
a link is being verified.
In the absence of other information, an IPv4 address is
always preferred(1).";
reference
"RFC 2462";
}
typedef IpAddressPrefixOriginTC {
type enumeration {
enum "other" {
value "1";
}
enum "manual" {
value "2";
}
enum "wellknown" {
value "3";
}
enum "dhcp" {
value "4";
}
enum "routeradv" {
value "5";
}
}
description
"The origin of this prefix.
manual(2) indicates a prefix that was manually configured.
wellknown(3) indicates a well-known prefix, e.g., 169.254/16
for IPv4 auto-configuration or fe80::/10 for IPv6 link-local
addresses. Well known prefixes may be assigned by IANA,
the address registries, or by specification in a standards
track RFC.
dhcp(4) indicates a prefix that was assigned by a DHCP
server.
routeradv(5) indicates a prefix learned from a router
advertisement.
Note: while IpAddressOriginTC and IpAddressPrefixOriginTC
are similar, they are not identical. The first defines how
an address was created, while the second defines how a
prefix was found.";
}
typedef Ipv6AddressIfIdentifierTC {
type string {
length "0..8";
}
description
"This data type is used to model IPv6 address
interface identifiers. This is a binary string
of up to 8 octets in network byte-order.";
smiv2:display-hint "2x:";
}
container IP-MIB {
config false;
container ip {
smiv2:oid "1.3.6.1.2.1.4";
leaf ipForwarding {
type enumeration {
enum "forwarding" {
value "1";
}
enum "notForwarding" {
value "2";
}
}
description
"The indication of whether this entity is acting as an IPv4
router in respect to the forwarding of datagrams received
by, but not addressed to, this entity. IPv4 routers forward
datagrams. IPv4 hosts do not (except those source-routed
via the host).
When this object is written, the entity should save the
change to non-volatile storage and restore the object from
non-volatile storage upon re-initialization of the system.
Note: a stronger requirement is not used because this object
was previously defined.";
smiv2:max-access "read-write";
smiv2:oid "1.3.6.1.2.1.4.1";
}
leaf ipDefaultTTL {
type int32 {
range "1..255";
}
description
"The default value inserted into the Time-To-Live field of
the IPv4 header of datagrams originated at this entity,
whenever a TTL value is not supplied by the transport layer
protocol.
When this object is written, the entity should save the
change to non-volatile storage and restore the object from
non-volatile storage upon re-initialization of the system.
Note: a stronger requirement is not used because this object
was previously defined.";
smiv2:max-access "read-write";
smiv2:oid "1.3.6.1.2.1.4.2";
}
leaf ipInReceives {
type yang:counter32;
status deprecated;
description
"The total number of input datagrams received from
interfaces, including those received in error.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by
ipSystemStatsInRecieves.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.4.3";
}
leaf ipInHdrErrors {
type yang:counter32;
status deprecated;
description
"The number of input datagrams discarded due to errors in
their IPv4 headers, including bad checksums, version number
mismatch, other format errors, time-to-live exceeded, errors
discovered in processing their IPv4 options, etc.
This object has been deprecated as a new IP version-neutral
table has been added. It is loosely replaced by
ipSystemStatsInHdrErrors.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.4.4";
}
leaf ipInAddrErrors {
type yang:counter32;
status deprecated;
description
"The number of input datagrams discarded because the IPv4
address in their IPv4 header's destination field was not a
valid address to be received at this entity. This count
includes invalid addresses (e.g., 0.0.0.0) and addresses of
unsupported Classes (e.g., Class E). For entities which are
not IPv4 routers, and therefore do not forward datagrams,
this counter includes datagrams discarded because the
destination address was not a local address.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by
ipSystemStatsInAddrErrors.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.4.5";
}
leaf ipForwDatagrams {
type yang:counter32;
status deprecated;
description
"The number of input datagrams for which this entity was not
their final IPv4 destination, as a result of which an
attempt was made to find a route to forward them to that
final destination. In entities which do not act as IPv4
routers, this counter will include only those packets which
were Source-Routed via this entity, and the Source-Route
option processing was successful.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by
ipSystemStatsInForwDatagrams.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.4.6";
}
leaf ipInUnknownProtos {
type yang:counter32;
status deprecated;
description
"The number of locally-addressed datagrams received
successfully but discarded because of an unknown or
unsupported protocol.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by
ipSystemStatsInUnknownProtos.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.4.7";
}
leaf ipInDiscards {
type yang:counter32;
status deprecated;
description
"The number of input IPv4 datagrams for which no problems
were encountered to prevent their continued processing, but
which were discarded (e.g., for lack of buffer space). Note
that this counter does not include any datagrams discarded
while awaiting re-assembly.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by
ipSystemStatsInDiscards.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.4.8";
}
leaf ipInDelivers {
type yang:counter32;
status deprecated;
description
"The total number of input datagrams successfully delivered
to IPv4 user-protocols (including ICMP).
This object has been deprecated as a new IP version neutral
table has been added. It is loosely replaced by
ipSystemStatsIndelivers.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.4.9";
}
leaf ipOutRequests {
type yang:counter32;
status deprecated;
description
"The total number of IPv4 datagrams which local IPv4 user
protocols (including ICMP) supplied to IPv4 in requests for
transmission. Note that this counter does not include any
datagrams counted in ipForwDatagrams.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by
ipSystemStatsOutRequests.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.4.10";
}
leaf ipOutDiscards {
type yang:counter32;
status deprecated;
description
"The number of output IPv4 datagrams for which no problem was
encountered to prevent their transmission to their
destination, but which were discarded (e.g., for lack of
buffer space). Note that this counter would include
datagrams counted in ipForwDatagrams if any such packets met
this (discretionary) discard criterion.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by
ipSystemStatsOutDiscards.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.4.11";
}
leaf ipOutNoRoutes {
type yang:counter32;
status deprecated;
description
"The number of IPv4 datagrams discarded because no route
could be found to transmit them to their destination. Note
that this counter includes any packets counted in
ipForwDatagrams which meet this `no-route' criterion. Note
that this includes any datagrams which a host cannot route
because all of its default routers are down.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by
ipSystemStatsOutNoRoutes.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.4.12";
}
leaf ipReasmTimeout {
type int32;
units "seconds";
description
"The maximum number of seconds that received fragments are
held while they are awaiting reassembly at this entity.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.4.13";
}
leaf ipReasmReqds {
type yang:counter32;
status deprecated;
description
"The number of IPv4 fragments received which needed to be
reassembled at this entity.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by
ipSystemStatsReasmReqds.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.4.14";
}
leaf ipReasmOKs {
type yang:counter32;
status deprecated;
description
"The number of IPv4 datagrams successfully re-assembled.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by
ipSystemStatsReasmOKs.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.4.15";
}
leaf ipReasmFails {
type yang:counter32;
status deprecated;
description
"The number of failures detected by the IPv4 re-assembly
algorithm (for whatever reason: timed out, errors, etc).
Note that this is not necessarily a count of discarded IPv4
fragments since some algorithms (notably the algorithm in
RFC 815) can lose track of the number of fragments by
combining them as they are received.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by
ipSystemStatsReasmFails.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.4.16";
}
leaf ipFragOKs {
type yang:counter32;
status deprecated;
description
"The number of IPv4 datagrams that have been successfully
fragmented at this entity.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by
ipSystemStatsOutFragOKs.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.4.17";
}
leaf ipFragFails {
type yang:counter32;
status deprecated;
description
"The number of IPv4 datagrams that have been discarded
because they needed to be fragmented at this entity but
could not be, e.g., because their Don't Fragment flag was
set.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by
ipSystemStatsOutFragFails.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.4.18";
}
leaf ipFragCreates {
type yang:counter32;
status deprecated;
description
"The number of IPv4 datagram fragments that have been
generated as a result of fragmentation at this entity.
This object has been deprecated as a new IP version neutral
table has been added. It is loosely replaced by
ipSystemStatsOutFragCreates.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.4.19";
}
leaf ipRoutingDiscards {
type yang:counter32;
status deprecated;
description
"The number of routing entries which were chosen to be
discarded even though they are valid. One possible reason
for discarding such an entry could be to free-up buffer
space for other routing entries.
This object was defined in pre-IPv6 versions of the IP MIB.
It was implicitly IPv4 only, but the original specifications
did not indicate this protocol restriction. In order to
clarify the specifications, this object has been deprecated
and a similar, but more thoroughly clarified, object has
been added to the IP-FORWARD-MIB.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.4.23";
}
leaf ipv6IpForwarding {
type enumeration {
enum "forwarding" {
value "1";
}
enum "notForwarding" {
value "2";
}
}
description
"The indication of whether this entity is acting as an IPv6
router on any interface in respect to the forwarding of
datagrams received by, but not addressed to, this entity.
IPv6 routers forward datagrams. IPv6 hosts do not (except
those source-routed via the host).
When this object is written, the entity SHOULD save the
change to non-volatile storage and restore the object from
non-volatile storage upon re-initialization of the system.";
smiv2:max-access "read-write";
smiv2:oid "1.3.6.1.2.1.4.25";
}
leaf ipv6IpDefaultHopLimit {
type int32 {
range "0..255";
}
description
"The default value inserted into the Hop Limit field of the
IPv6 header of datagrams originated at this entity whenever
a Hop Limit value is not supplied by the transport layer
protocol.
When this object is written, the entity SHOULD save the
change to non-volatile storage and restore the object from
non-volatile storage upon re-initialization of the system.";
reference
"RFC 2461 Section 6.3.2";
smiv2:max-access "read-write";
smiv2:oid "1.3.6.1.2.1.4.26";
}
leaf ipv4InterfaceTableLastChange {
type yang:timestamp;
description
"The value of sysUpTime on the most recent occasion at which
a row in the ipv4InterfaceTable was added or deleted, or
when an ipv4InterfaceReasmMaxSize or an
ipv4InterfaceEnableStatus object was modified.
If new objects are added to the ipv4InterfaceTable that
require the ipv4InterfaceTableLastChange to be updated when
they are modified, they must specify that requirement in
their description clause.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.4.27";
}
leaf ipv6InterfaceTableLastChange {
type yang:timestamp;
description
"The value of sysUpTime on the most recent occasion at which
a row in the ipv6InterfaceTable was added or deleted or when
an ipv6InterfaceReasmMaxSize, ipv6InterfaceIdentifier,
ipv6InterfaceEnableStatus, ipv6InterfaceReachableTime,
ipv6InterfaceRetransmitTime, or ipv6InterfaceForwarding
object was modified.
If new objects are added to the ipv6InterfaceTable that
require the ipv6InterfaceTableLastChange to be updated when
they are modified, they must specify that requirement in
their description clause.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.4.29";
}
leaf ipAddressSpinLock {
type snmpv2-tc:TestAndIncr;
description
"An advisory lock used to allow cooperating SNMP managers to
coordinate their use of the set operation in creating or
modifying rows within this table.
In order to use this lock to coordinate the use of set
operations, managers should first retrieve
ipAddressTableSpinLock. They should then determine the
appropriate row to create or modify. Finally, they should
issue the appropriate set command, including the retrieved
value of ipAddressSpinLock. If another manager has altered
the table in the meantime, then the value of
ipAddressSpinLock will have changed, and the creation will
fail as it will be specifying an incorrect value for
ipAddressSpinLock. It is suggested, but not required, that
the ipAddressSpinLock be the first var bind for each set of
objects representing a 'row' in a PDU.";
smiv2:max-access "read-write";
smiv2:oid "1.3.6.1.2.1.4.33";
}
leaf ipv6RouterAdvertSpinLock {
type snmpv2-tc:TestAndIncr;
description
"An advisory lock used to allow cooperating SNMP managers to
coordinate their use of the set operation in creating or
modifying rows within this table.
In order to use this lock to coordinate the use of set
operations, managers should first retrieve
ipv6RouterAdvertSpinLock. They should then determine the
appropriate row to create or modify. Finally, they should
issue the appropriate set command including the retrieved
value of ipv6RouterAdvertSpinLock. If another manager has
altered the table in the meantime, then the value of
ipv6RouterAdvertSpinLock will have changed and the creation
will fail as it will be specifying an incorrect value for
ipv6RouterAdvertSpinLock. It is suggested, but not
required, that the ipv6RouterAdvertSpinLock be the first var
bind for each set of objects representing a 'row' in a PDU.";
smiv2:max-access "read-write";
smiv2:oid "1.3.6.1.2.1.4.38";
}
}
container ipTrafficStats {
smiv2:oid "1.3.6.1.2.1.4.31";
leaf ipIfStatsTableLastChange {
type yang:timestamp;
description
"The value of sysUpTime on the most recent occasion at which
a row in the ipIfStatsTable was added or deleted.
If new objects are added to the ipIfStatsTable that require
the ipIfStatsTableLastChange to be updated when they are
modified, they must specify that requirement in their
description clause.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.4.31.2";
}
}
container icmp {
smiv2:oid "1.3.6.1.2.1.5";
leaf icmpInMsgs {
type yang:counter32;
status deprecated;
description
"The total number of ICMP messages which the entity received.
Note that this counter includes all those counted by
icmpInErrors.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by
icmpStatsInMsgs.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.5.1";
}
leaf icmpInErrors {
type yang:counter32;
status deprecated;
description
"The number of ICMP messages which the entity received but
determined as having ICMP-specific errors (bad ICMP
checksums, bad length, etc.).
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by
icmpStatsInErrors.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.5.2";
}
leaf icmpInDestUnreachs {
type yang:counter32;
status deprecated;
description
"The number of ICMP Destination Unreachable messages
received.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by a column in
the icmpMsgStatsTable.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.5.3";
}
leaf icmpInTimeExcds {
type yang:counter32;
status deprecated;
description
"The number of ICMP Time Exceeded messages received.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by a column in
the icmpMsgStatsTable.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.5.4";
}
leaf icmpInParmProbs {
type yang:counter32;
status deprecated;
description
"The number of ICMP Parameter Problem messages received.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by a column in
the icmpMsgStatsTable.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.5.5";
}
leaf icmpInSrcQuenchs {
type yang:counter32;
status deprecated;
description
"The number of ICMP Source Quench messages received.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by a column in
the icmpMsgStatsTable.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.5.6";
}
leaf icmpInRedirects {
type yang:counter32;
status deprecated;
description
"The number of ICMP Redirect messages received.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by a column in
the icmpMsgStatsTable.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.5.7";
}
leaf icmpInEchos {
type yang:counter32;
status deprecated;
description
"The number of ICMP Echo (request) messages received.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by a column in
the icmpMsgStatsTable.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.5.8";
}
leaf icmpInEchoReps {
type yang:counter32;
status deprecated;
description
"The number of ICMP Echo Reply messages received.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by a column in
the icmpMsgStatsTable.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.5.9";
}
leaf icmpInTimestamps {
type yang:counter32;
status deprecated;
description
"The number of ICMP Timestamp (request) messages received.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by a column in
the icmpMsgStatsTable.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.5.10";
}
leaf icmpInTimestampReps {
type yang:counter32;
status deprecated;
description
"The number of ICMP Timestamp Reply messages received.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by a column in
the icmpMsgStatsTable.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.5.11";
}
leaf icmpInAddrMasks {
type yang:counter32;
status deprecated;
description
"The number of ICMP Address Mask Request messages received.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by a column in
the icmpMsgStatsTable.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.5.12";
}
leaf icmpInAddrMaskReps {
type yang:counter32;
status deprecated;
description
"The number of ICMP Address Mask Reply messages received.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by a column in
the icmpMsgStatsTable.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.5.13";
}
leaf icmpOutMsgs {
type yang:counter32;
status deprecated;
description
"The total number of ICMP messages which this entity
attempted to send. Note that this counter includes all
those counted by icmpOutErrors.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by
icmpStatsOutMsgs.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.5.14";
}
leaf icmpOutErrors {
type yang:counter32;
status deprecated;
description
"The number of ICMP messages which this entity did not send
due to problems discovered within ICMP, such as a lack of
buffers. This value should not include errors discovered
outside the ICMP layer, such as the inability of IP to route
the resultant datagram. In some implementations, there may
be no types of error which contribute to this counter's
value.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by
icmpStatsOutErrors.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.5.15";
}
leaf icmpOutDestUnreachs {
type yang:counter32;
status deprecated;
description
"The number of ICMP Destination Unreachable messages sent.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by a column in
the icmpMsgStatsTable.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.5.16";
}
leaf icmpOutTimeExcds {
type yang:counter32;
status deprecated;
description
"The number of ICMP Time Exceeded messages sent.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by a column in
the icmpMsgStatsTable.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.5.17";
}
leaf icmpOutParmProbs {
type yang:counter32;
status deprecated;
description
"The number of ICMP Parameter Problem messages sent.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by a column in
the icmpMsgStatsTable.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.5.18";
}
leaf icmpOutSrcQuenchs {
type yang:counter32;
status deprecated;
description
"The number of ICMP Source Quench messages sent.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by a column in
the icmpMsgStatsTable.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.5.19";
}
leaf icmpOutRedirects {
type yang:counter32;
status deprecated;
description
"The number of ICMP Redirect messages sent. For a host, this
object will always be zero, since hosts do not send
redirects.
This object has been deprecated, as a new IP version-neutral
table has been added. It is loosely replaced by a column in
the icmpMsgStatsTable.";
smiv2:max-access "read-only";
smiv2:oid "1.3.6.1.2.1.5.20";
}
leaf icmpOutEchos {