summaryrefslogtreecommitdiff
path: root/MIBS/transition/TN-SIP-MIB.smi
blob: 3c134ddd48bc56a550aac00ca23846866ab337a1 (plain)
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
TN-SIP-MIB DEFINITIONS ::= BEGIN

-- ------------------------------------------------------------
-- MIB for L3 Static Routing
-- ------------------------------------------------------------
IMPORTS
    MODULE-IDENTITY, OBJECT-TYPE,
    IpAddress, Unsigned32, enterprises  FROM SNMPv2-SMI
    PhysAddress, TimeStamp, RowStatus   FROM SNMPv2-TC
    InetAddress, InetAddressType,
	InetAddressPrefixLength				FROM INET-ADDRESS-MIB
    ipv4InterfaceEntry                  FROM IP-MIB
    inetCidrRouteEntry                  FROM IP-FORWARD-MIB
	transition, tnProducts              FROM TRANSITION-SMI;

tnSipMIB MODULE-IDENTITY
    LAST-UPDATED "201210230000Z" -- October 23, 2012
    ORGANIZATION "Transition Networks"
    CONTACT-INFO
        "Copyright (C) 2012  Transition Networks, Inc. All Rights Reserved."
    DESCRIPTION
        "A MIB module provides L3 Static Routing management interface."
    ::= { enterprises transition(868) products(2) tnProducts(5) 121 }

--
-- Routing Endpoint Configuration Table
--
tnRoutingEndpointTable OBJECT-TYPE
    SYNTAX       SEQUENCE OF TnRoutingEndpointEntry
    MAX-ACCESS   not-accessible
    STATUS       current
    DESCRIPTION
            "This table contains additional objects for configuration of the
             routing endpoints."
    ::= { tnSipMIB 1 }

tnRoutingEndpointEntry OBJECT-TYPE
    SYNTAX       TnRoutingEndpointEntry
    MAX-ACCESS   not-accessible
    STATUS       current
    DESCRIPTION
            "An entry containing management information of the L3 routing
             endpoints."
	INDEX   { tnRoutingEndpointId }
    ::= { tnRoutingEndpointTable 1 }

TnRoutingEndpointEntry  ::=
    SEQUENCE {
		tnRoutingEndpointId                  Unsigned32,
		tnRoutingEndpointIfIndex             Unsigned32,
		tnRoutingEndpointAdmin               Unsigned32,
		tnRoutingEndpointPortsBitmask        Unsigned32,
		tnRoutingEndpointInetAddrType        InetAddressType,
		tnRoutingEndpointInetAddr            InetAddress,
		tnRoutingEndpointPfxLen              InetAddressPrefixLength,
		tnRoutingEndpointVlanType            Unsigned32,
		tnRoutingEndpointVlanId              Unsigned32,
        tnRoutingEndpointHorizon             Unsigned32,
        tnRoutingEndpointSplitHorizonStatus  Unsigned32,
        tnRoutingEndpointArpProxyGroup       Unsigned32,
        tnRoutingEndpointArpProxyStatus      Unsigned32,
		tnRoutingEndpointRowStatus           RowStatus
    }
tnRoutingEndpointId    OBJECT-TYPE
    SYNTAX      Unsigned32 (1..16)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
            "Unique routing endpoint identifier."
    ::= { tnRoutingEndpointEntry 1 }

tnRoutingEndpointIfIndex    OBJECT-TYPE
    SYNTAX     	Unsigned32
    MAX-ACCESS 	read-only
    STATUS      current
    DESCRIPTION
            "Inerfce index assigned to the routing endpoint. Routing endpoint
			can be accessed in ifTable by this index."
    ::= { tnRoutingEndpointEntry 2 }

tnRoutingEndpointAdmin    OBJECT-TYPE
    SYNTAX      Unsigned32 {
                 enable(1),
                 disable(2)
    }
    MAX-ACCESS 	read-write
    STATUS      current
    DESCRIPTION
            "Routing endpoint administrative status. Routing operations not performed
			if status is disabled."
	DEFVAL { 2 }
    ::= { tnRoutingEndpointEntry 3 }

tnRoutingEndpointPortsBitmask    OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS 	read-write
    STATUS      current
    DESCRIPTION
            "A bitmap structure presenting phisical ports assigned to
            this routing endpoint. Bits are numbered from 1 to 256 starting with the
            high order bit of the first octet.  Each bit which is set
            indicates the physical port number assigned to the this endpoint."
    ::= { tnRoutingEndpointEntry 4 }

tnRoutingEndpointInetAddrType    OBJECT-TYPE
    SYNTAX      InetAddressType
    MAX-ACCESS 	read-create
    STATUS      current
    DESCRIPTION
            "The type of the tnRoutingEndpointInetAddr address, as defined in the
			InetAddress MIB."
	DEFVAL { ipv4 }
    ::= { tnRoutingEndpointEntry 5 }

tnRoutingEndpointInetAddr    OBJECT-TYPE
    SYNTAX      InetAddress
    MAX-ACCESS 	read-create
    STATUS      current
    DESCRIPTION
            "Routing edpoint IP address."
    ::= { tnRoutingEndpointEntry 6 }

tnRoutingEndpointPfxLen    OBJECT-TYPE
    SYNTAX      InetAddressPrefixLength
    MAX-ACCESS 	read-create
    STATUS      current
    DESCRIPTION
            "Indicates the number of leading one bits that form the
            mask to be logical-ANDed with the destination address
            before being compared to the value in the
            tnRoutingEndpointInetAddr field."
    ::= { tnRoutingEndpointEntry 7 }

tnRoutingEndpointVlanType    OBJECT-TYPE
    SYNTAX    Unsigned32 {
				untagged(1),
				c-tagged(2),
				s-tagged(3),
				unaware(4)
	}
    MAX-ACCESS 	read-create
    STATUS      current
    DESCRIPTION
            "Vlan type of the routing endpoint."
    ::= { tnRoutingEndpointEntry 8 }

tnRoutingEndpointVlanId    OBJECT-TYPE
    SYNTAX    Unsigned32 (0..4095)
    MAX-ACCESS 	read-create
    STATUS      current
    DESCRIPTION
            "Vlan identifier if endpoit is tagged or 0 otherwise."
    ::= { tnRoutingEndpointEntry 9 }

tnRoutingEndpointHorizon    OBJECT-TYPE
    SYNTAX    Unsigned32 {
                 downlink(1),
                 uplink(2)
    }
    MAX-ACCESS read-write
    STATUS      current
    DESCRIPTION
            "Specifies horizon of the routing endpoint is Split Horizon
             routing enabled."
    DEFVAL { 1 }
    ::= { tnRoutingEndpointEntry 10 }

tnRoutingEndpointSplitHorizonStatus OBJECT-TYPE
    SYNTAX     Unsigned32 {
                 enable(1),
                 disable(2)
    }
    MAX-ACCESS read-write
    STATUS      current
    DESCRIPTION
            "Specifies enable or disable status for the split horizon
             routing. "
    DEFVAL { 2 }
    ::= { tnRoutingEndpointEntry 11 }

tnRoutingEndpointArpProxyGroup OBJECT-TYPE
    SYNTAX     Unsigned32 (1..16)
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
            "Specifies the number of the ARP proxy group of the routing
             entry."
    DEFVAL { 1 }
    ::= { tnRoutingEndpointEntry 12 }

tnRoutingEndpointArpProxyStatus OBJECT-TYPE
    SYNTAX       Unsigned32 {
                 enable(1),
                 disable(2)
    }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
            "Specifies enable or disable status for the split horizon
             routing."
    DEFVAL { 1 }
    ::= { tnRoutingEndpointEntry 13 }

tnRoutingEndpointRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
            "The row status variable, used according to row installation
			and removal conventions. A row entry cannot be modified when
			the status is marked as active(1)."
    DEFVAL { disable }
    ::= { tnRoutingEndpointEntry 14 }

--
-- Routing Endpoint Statistics Table
--
tnRoutingEndpointStatsTable OBJECT-TYPE
    SYNTAX       SEQUENCE OF TnRoutingEndpointStatsEntry
    MAX-ACCESS   not-accessible
    STATUS       current
    DESCRIPTION
            "This table contains statistics information of the
             routing endpoints."
    ::= { tnSipMIB 2 }

tnRoutingEndpointStatsEntry OBJECT-TYPE
    SYNTAX       TnRoutingEndpointStatsEntry
    MAX-ACCESS   not-accessible
    STATUS       current
    DESCRIPTION
            "An entry statistics information of the L3 routing
             endpoints."
	INDEX   { tnRoutingEndpointStatsEndpointId }
    ::= { tnRoutingEndpointStatsTable 1 }

TnRoutingEndpointStatsEntry  ::=
    SEQUENCE {
		tnRoutingEndpointStatsEndpointId     Unsigned32,
		tnRoutingEndpointRxPackets           Counter64,
		tnRoutingEndpointRxOctets            Counter64,
		tnRoutingEndpointRxMcPackets         Counter64,
		tnRoutingEndpointRxBcPackets         Counter64,
		tnRoutingEndpointRxForwDgrams        Counter64,
		tnRoutingEndpointRxDiscards          Counter32,
		tnRoutingEndpointRxNoRoutes          Counter32,
		tnRoutingEndpointRxAddrErrs          Counter32,
		tnRoutingEndpointRxUnknownProtos     Counter32,
		tnRoutingEndpointRxHdrErrs           Counter32,

		tnRoutingEndpointTxPackets           Counter64,
		tnRoutingEndpointTxOctets            Counter64,
		tnRoutingEndpointTxMcPackets         Counter64,
		tnRoutingEndpointTxBcPackets         Counter64,
		tnRoutingEndpointTxForwDgrams        Counter64,
		tnRoutingEndpointTxRequests          Counter64,
		tnRoutingEndpointTxDiscards          Counter32,

		tnRoutingEndpointRxIcmpPackets       Counter64,
		tnRoutingEndpointRxIcmpDiscards      Counter64,
		tnRoutingEndpointTxIcmpPackets       Counter64
    }
tnRoutingEndpointStatsEndpointId    OBJECT-TYPE
    SYNTAX      Unsigned32 (1..16)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
            "Unique routing endpoint identifier."
    ::= { tnRoutingEndpointStatsEntry 1 }

tnRoutingEndpointRxPackets    OBJECT-TYPE
    SYNTAX     	Counter64
    MAX-ACCESS 	read-only
    STATUS      current
    DESCRIPTION
            "The total number of input IP datagrams received, including
            those received in error."
    ::= { tnRoutingEndpointStatsEntry 2 }

tnRoutingEndpointRxOctets    OBJECT-TYPE
    SYNTAX     	Counter64
    MAX-ACCESS 	read-only
    STATUS      current
    DESCRIPTION
            "The total number of octets received in input IP datagrams,
            including those received in error."
    ::= { tnRoutingEndpointStatsEntry 3 }

tnRoutingEndpointRxMcPackets    OBJECT-TYPE
    SYNTAX     	Counter64
    MAX-ACCESS 	read-only
    STATUS      current
    DESCRIPTION
            "The number of IP multicast datagrams received."
    ::= { tnRoutingEndpointStatsEntry 4 }

tnRoutingEndpointRxBcPackets    OBJECT-TYPE
    SYNTAX     	Counter64
    MAX-ACCESS 	read-only
    STATUS      current
    DESCRIPTION
            "The number of IP broadcast datagrams received."
    ::= { tnRoutingEndpointStatsEntry 5 }

tnRoutingEndpointRxForwDgrams    OBJECT-TYPE
    SYNTAX     	Counter64
    MAX-ACCESS 	read-only
    STATUS      current
    DESCRIPTION
            "The number of input datagrams for which this entity was not
            their final IP destination and for which this entity
            attempted to find a route to forward them to that final
            destination."
    ::= { tnRoutingEndpointStatsEntry 6 }

tnRoutingEndpointRxDiscards    OBJECT-TYPE
    SYNTAX     	Counter32
    MAX-ACCESS 	read-only
    STATUS      current
    DESCRIPTION
            "The number of input IP datagrams for which no problems were
            encountered to prevent their continued processing, but
            were discarded (e.g., for lack of buffer space)."
    ::= { tnRoutingEndpointStatsEntry 7 }

tnRoutingEndpointRxNoRoutes    OBJECT-TYPE
    SYNTAX     	Counter32
    MAX-ACCESS 	read-only
    STATUS      current
    DESCRIPTION
            "The number of input IP datagrams discarded because no route
            could be found to transmit them to their destination."
    ::= { tnRoutingEndpointStatsEntry 8 }

tnRoutingEndpointRxAddrErrs    OBJECT-TYPE
    SYNTAX     	Counter32
    MAX-ACCESS 	read-only
    STATUS      current
    DESCRIPTION
            "The number of input IP datagrams discarded because the IP
            address in their IP header's destination field was not a
            valid address to be received at this entity.  This count
            includes invalid addresses (e.g., ::0)."
    ::= { tnRoutingEndpointStatsEntry 9 }

tnRoutingEndpointRxUnknownProtos    OBJECT-TYPE
    SYNTAX     	Counter32
    MAX-ACCESS 	read-only
    STATUS      current
    DESCRIPTION
            "The number of locally-addressed IP datagrams received
            successfully but discarded because of an unknown or
            unsupported protocol."
    ::= { tnRoutingEndpointStatsEntry 10 }

tnRoutingEndpointRxHdrErrs    OBJECT-TYPE
    SYNTAX     	Counter32
    MAX-ACCESS 	read-only
    STATUS      current
    DESCRIPTION
            "The number of input IP datagrams discarded due to errors in
            their IP headers, including version number mismatch, other
            format errors, hop count exceeded, errors discovered in
            processing their IP options, etc."
    ::= { tnRoutingEndpointStatsEntry 11 }

tnRoutingEndpointTxPackets    OBJECT-TYPE
    SYNTAX     	Counter64
    MAX-ACCESS 	read-only
    STATUS      current
    DESCRIPTION
            "The total number of IP datagrams that this entity supplied
            to the lower layers for transmission.  This includes
            datagrams generated locally and those forwarded by this
            entity."
    ::= { tnRoutingEndpointStatsEntry 12 }

tnRoutingEndpointTxOctets    OBJECT-TYPE
    SYNTAX     	Counter64
    MAX-ACCESS 	read-only
    STATUS      current
    DESCRIPTION
            "The total number of octets in IP datagrams delivered to the
            lower layers for transmission."
    ::= { tnRoutingEndpointStatsEntry 13 }

tnRoutingEndpointTxMcPackets    OBJECT-TYPE
    SYNTAX     	Counter64
    MAX-ACCESS 	read-only
    STATUS      current
    DESCRIPTION
            "The number of IP multicast datagrams transmitted."
    ::= { tnRoutingEndpointStatsEntry 14 }

tnRoutingEndpointTxBcPackets    OBJECT-TYPE
    SYNTAX     	Counter64
    MAX-ACCESS 	read-only
    STATUS      current
    DESCRIPTION
            "The number of IP broadcast datagrams transmitted."
    ::= { tnRoutingEndpointStatsEntry 15 }

tnRoutingEndpointTxForwDgrams    OBJECT-TYPE
    SYNTAX     	Counter64
    MAX-ACCESS 	read-only
    STATUS      current
    DESCRIPTION
            "The number of datagrams for which this entity was not their
            final IP destination and for which it was successful in
            finding a path to their final destination."
    ::= { tnRoutingEndpointStatsEntry 16 }

tnRoutingEndpointTxRequests    OBJECT-TYPE
    SYNTAX     	Counter64
    MAX-ACCESS 	read-only
    STATUS      current
    DESCRIPTION
            "The total number of IP datagrams that local IP user-
            protocols (including ICMP) supplied to IP in requests for
            transmission."
    ::= { tnRoutingEndpointStatsEntry 17 }

tnRoutingEndpointTxDiscards    OBJECT-TYPE
    SYNTAX     	Counter32
    MAX-ACCESS 	read-only
    STATUS      current
    DESCRIPTION
            "The number of output IP datagrams for which no problem was
            encountered to prevent their transmission to their
            destination, but were discarded (e.g., for lack of
            buffer space)."
    ::= { tnRoutingEndpointStatsEntry 18 }

tnRoutingEndpointRxIcmpPackets    OBJECT-TYPE
    SYNTAX     	Counter64
    MAX-ACCESS 	read-only
    STATUS      current
    DESCRIPTION
            "The total number of ICMP datagrams received."
    ::= { tnRoutingEndpointStatsEntry 19 }

tnRoutingEndpointRxIcmpDiscards    OBJECT-TYPE
    SYNTAX     	Counter64
    MAX-ACCESS 	read-only
    STATUS      current
    DESCRIPTION
            "The total number of discarded ICMP datagrams."
    ::= { tnRoutingEndpointStatsEntry 20 }

tnRoutingEndpointTxIcmpPackets    OBJECT-TYPE
    SYNTAX     	Counter64
    MAX-ACCESS 	read-only
    STATUS      current
    DESCRIPTION
            "The total number of ICMP datagrams transmitted."
    ::= { tnRoutingEndpointStatsEntry 21 }

--
-- Route Ext table
--
tnInetCidrRouteExtTable  OBJECT-TYPE
    SYNTAX      SEQUENCE OF TnInetCidrRouteExtEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
            "This table contains additional objects for configuration of the
             routing table. It is an extension to the CIDR Inet route table."
    ::= { tnSipMIB 3 }

tnInetCidrRouteExtEntry  OBJECT-TYPE
    SYNTAX      TnInetCidrRouteExtEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
            "An entry containing additional management information
             applicable to a particular inet route."
    AUGMENTS    { inetCidrRouteEntry }
    ::= { tnInetCidrRouteExtTable 1 }

TnInetCidrRouteExtEntry  ::=
    SEQUENCE {
        tnInetCidrRouteExtHorizon        INTEGER,
    }

tnInetCidrRouteExtHorizon OBJECT-TYPE
    SYNTAX     INTEGER {
                 downlink(1),
                 uplink(2)
    }
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
            "Specifies horizon of the route for Split Horizon routing."
    ::= { tnInetCidrRouteExtEntry 1 }


--
-- ARP table
--
tnRoutingArpTable  OBJECT-TYPE
    SYNTAX         SEQUENCE OF TnRoutingArpEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION
            "This table contains ARP table information with respect to Static
             IP routing."
    ::= { tnSipMIB 4 }

tnRoutingArpEntry  OBJECT-TYPE
    SYNTAX         TnRoutingArpEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION
            "An entry containing information of the ARP table record."
    INDEX       { tnRoutingArpEgrVlanType,
                  tnRoutingArpEgrVlanId,
				  tnRoutingArpDestNetAddr }
    ::= { tnRoutingArpTable 1 }

TnRoutingArpEntry ::=
    SEQUENCE {
		tnRoutingArpEgrVlanType   Unsigned32,
        tnRoutingArpEgrVlanId     Unsigned32,
		tnRoutingArpDestNetAddr   IpAddress,
        tnRoutingArpDestMacAddr   PhysAddress,
        tnRoutingArpEgressPort    Unsigned32,
        tnRoutingArpLastUpdated   TimeStamp,
        tnRoutingArpState         INTEGER
    }

tnRoutingArpEgrVlanType OBJECT-TYPE
    SYNTAX    Unsigned32 {
				untagged(1),
				c-tagged(2),
				s-tagged(3),
				unaware(4)
	}
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
            "Specifies the egress vlan ethernt type of the address."
    ::= { tnRoutingArpEntry 1 }

tnRoutingArpEgrVlanId OBJECT-TYPE
    SYNTAX     Unsigned32 (0..4095)
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
            "Specifies the egress vlan id of the address."
    ::= { tnRoutingArpEntry 2 }

tnRoutingArpDestNetAddr OBJECT-TYPE
    SYNTAX     IpAddress
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
           "The IP Address corresponding to the media-dependent
            physical address."
    ::= { tnRoutingArpEntry 3 }

tnRoutingArpDestMacAddr OBJECT-TYPE
    SYNTAX     PhysAddress (SIZE(0..65535))
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
           "The media-dependent (MAC) physical address."
    ::= { tnRoutingArpEntry 4 }

tnRoutingArpEgressPort OBJECT-TYPE
    SYNTAX     Unsigned32 (0..16)
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
           "Egress port to reach the destination host."
    ::= { tnRoutingArpEntry 5 }

tnRoutingArpLastUpdated OBJECT-TYPE
    SYNTAX     TimeStamp
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
           "The value of sysUpTime at the time this entry was last
            updated.  If this entry was updated prior to the last re-
            initialization of the local network management subsystem,
            then this object contains a zero value."
    ::= { tnRoutingArpEntry 6 }

tnRoutingArpState OBJECT-TYPE
    SYNTAX     INTEGER {
                 ok(1),
                 failed(2),
                 resolving(3)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
            "Host reachability state."
    DEFVAL { disable }
    ::= { tnRoutingArpEntry 7 }

--
-- ARP config parameters
--
tnRoutingArpConfigReplyWaitTime OBJECT-TYPE
    SYNTAX     Unsigned32 (1..10)
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
            "Specifies timeout in seconds between ARP request send
             and declaration of ARP failed."
	DEFVAL { 2 }
    ::= { tnSipMIB 5 }

tnRoutingArpConfigAgeingTime OBJECT-TYPE
    SYNTAX     Unsigned32 (60..86400)
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
            "Specifies timeout in seconds to keep unused ARP record
             in the ARP table."
    DEFVAL { 120 }
    ::= { tnSipMIB 6 }

tnRoutingArpConfigRefreshTime OBJECT-TYPE
    SYNTAX     Unsigned32 (60..86400)
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
            "Specifies timeout in seconds between consequential refreshing
             ARP request sent for the record in the ARP table."
    DEFVAL { 600 }
    ::= { tnSipMIB 7 }

tnRoutingArpConfigGarpStatus    OBJECT-TYPE
    SYNTAX      Unsigned32 {
                 enable(1),
                 disable(2)
    }
    MAX-ACCESS 	read-write
    STATUS      current
    DESCRIPTION
            "Gratuitous ARP status. GARP operations not performed
			if status is disabled."
	DEFVAL { 1 }
    ::= { tnSipMIB 8 }

END