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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
|
ALCATEL-IND1-UDP-RELAY-MIB DEFINITIONS ::= BEGIN
IMPORTS
IpAddress,
MODULE-IDENTITY,
OBJECT-TYPE,
OBJECT-IDENTITY,
Integer32, Unsigned32,
NOTIFICATION-TYPE,
Counter32 FROM SNMPv2-SMI
InetAddress, InetAddressType
FROM INET-ADDRESS-MIB
MacAddress, DisplayString, RowStatus,
TEXTUAL-CONVENTION FROM SNMPv2-TC
SnmpAdminString FROM SNMP-FRAMEWORK-MIB
MODULE-COMPLIANCE,
NOTIFICATION-GROUP,
OBJECT-GROUP FROM SNMPv2-CONF
routingIND1UdpRelay FROM ALCATEL-IND1-BASE
InterfaceIndex FROM IF-MIB;
alcatelIND1UDPRelayMIB MODULE-IDENTITY
LAST-UPDATED "201307150000Z"
ORGANIZATION "Alcatel -Architects Of An Internet World "
CONTACT-INFO
"Please consult with Customer Service to ensure the most appropriate
version of this document is used with the products in question:
Alcatel-Lucent, Enterprise Solutions Division
(Formerly Alcatel Internetworking, Incorporated)
26801 West Agoura Road
Agoura Hills, CA 91301-5122
United States Of America
Telephone: North America +1 800 995 2696
Latin America +1 877 919 9526
Europe +31 23 556 0100
Asia +65 394 7933
All Other +1 818 878 4507
Electronic Mail: support@ind.alcatel.com
World Wide Web: http://alcatel-lucent.com/wps/portal/enterprise
File Transfer Protocol: ftp://ftp.ind.alcatel.com/pub/products/mibs"
DESCRIPTION
"This module describes an authoritative enterprise-specific Simple
Network Management Protocol (SNMP) Management Information Base (MIB):
For the Birds Of Prey Product Line
UDP Relay to forward BOOTP/DHCP requests across VLANs
The right to make changes in specification and other information
contained in this document without prior notice is reserved.
No liability shall be assumed for any incidental, indirect, special, or
consequential damages whatsoever arising from or related to this
document or the information contained herein.
Vendors, end-users, and other interested parties are granted
non-exclusive license to use this specification in connection with
management of the products for which it is intended to be used.
Copyright (C) 1995-2013 Alcatel-Lucent
ALL RIGHTS RESERVED WORLDWIDE"
REVISION "201307150000Z"
DESCRIPTION
"The latest version of this MIB Module."
::= {routingIND1UdpRelay 1}
alcatelIND1UDPRelayNotificationObjects OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Branch For UDP Relay Notification Objects."
::= { alcatelIND1UDPRelayMIB 0 }
alcatelIND1UDPRelayMIBObjects OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Branch For UDP Relay
Subsystem Managed Objects."
::= { alcatelIND1UDPRelayMIB 1 }
alcatelIND1UDPRelayMIBConformance OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Branch For UDP Relay
Subsystem Conformance Information."
::= { alcatelIND1UDPRelayMIB 2 }
alcatelIND1UDPRelayMIBGroups OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Branch For UDP Relay
Subsystem Units Of Conformance."
::= { alcatelIND1UDPRelayMIBConformance 1 }
alcatelIND1UDPRelayMIBCompliances OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Branch For UDP Relay
Subsystem Compliance Statements."
::= { alcatelIND1UDPRelayMIBConformance 2 }
IphelpereOption82ASCIIFieldType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Ip helper Option 82 Format ASCII field type"
SYNTAX INTEGER {
none(0),
macAddress(1),
systemName(2),
userString(3),
interfaceAlias(4),
vlan(5),
interface(6)
}
DhcpSnoopingOption82ASCIIFieldType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"DHCP Snooping Option 82 Format ASCII field type"
SYNTAX INTEGER {
none(0),
macAddress(1),
systemName(2),
userString(3),
interfaceAlias(4),
vlan(5),
interface(6)
}
DhcpSnoopingOption82CircuitOrRemoteId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Circuit Id or Remote Id for Option 82 Format ASCII field."
SYNTAX INTEGER {
circuitid(1),
remoteid(2)
}
iphelperMIB OBJECT IDENTIFIER ::= { alcatelIND1UDPRelayMIBObjects 1 }
genericUdpServiceMIB OBJECT IDENTIFIER ::= { alcatelIND1UDPRelayMIBObjects 2 }
alaDhcpClientTrapsObj OBJECT IDENTIFIER ::= { alcatelIND1UDPRelayMIBObjects 3 }
dhcpSnoopingMIB OBJECT IDENTIFIER ::= { alcatelIND1UDPRelayMIBObjects 4 }
dhcpOption82MIB OBJECT IDENTIFIER ::= { alcatelIND1UDPRelayMIBObjects 5 }
iphelperTable OBJECT-TYPE
SYNTAX SEQUENCE OF IphelperEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of next hop IP Address for the DHCP Relay Agent."
::= { iphelperMIB 1 }
iphelperEntry OBJECT-TYPE
SYNTAX IphelperEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" An entry in the ip helper table"
INDEX { iphelperVlan, iphelperNextHopIpAddress }
::= { iphelperTable 1 }
IphelperEntry ::= SEQUENCE {
iphelperVlan
Unsigned32,
iphelperNextHopIpAddress
IpAddress,
iphelperResetSrvStats
Unsigned32,
iphelperRowStatus
RowStatus
}
iphelperVlan OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object is applicable when iphelperForwardOption is
equal to perVlan (2). On Per VLAN mod the next hop
IP Address corresponds to specific source VLAN. Based on
the VLAN that the DHCP packet comes to the DHCP Relay
Agent the packet is forwarded to the next hop defined
for that VLAN. When iphelperForwardOption is standard (1),
this field will be zero (0)."
::= { iphelperEntry 1 }
iphelperNextHopIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This specifies the next hop IP Address of the
DHCP Relay Agent is to forward the DHCP packet."
::= { iphelperEntry 2 }
iphelperResetSrvStats OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When set to 1, will reset all the statistic for this
server. On standard mode vlan will be zero. After the
reset operation, system will change this back to a zero (0).
Subsystem will always return zero (0)."
::= { iphelperEntry 3 }
iphelperRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row Status for creating/deleting"
::= { iphelperEntry 4 }
iphelperStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF IphelperStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This keeps statistics for each next hop IP Address."
::= { iphelperMIB 2 }
iphelperStatEntry OBJECT-TYPE
SYNTAX IphelperStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the stat table."
INDEX { iphelperStatsVlan, iphelperStatsNextHopIpAddr}
::= { iphelperStatTable 1 }
IphelperStatEntry ::= SEQUENCE {
iphelperStatsVlan
Unsigned32,
iphelperStatsNextHopIpAddr
IpAddress,
iphelperTxToNextHop
Counter32,
iphelperInvalidAgentInfoOptFrmSrver
Counter32
}
iphelperStatsVlan OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object is zero (0) when iphelperForwardOption is
equal to standard (1). On Per VLAN mod the next hop
IP Address corresponds to specific source VLAN. Based on
the VLAN that the DHCP packet comes to the DHCP Relay
Agent the packet is forwarded to the next hop defined
for that VLAN. When iphelperForwardOption is standard (1),
this field will be zero (0)."
::= { iphelperStatEntry 1 }
iphelperStatsNextHopIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This specifies the unique server address."
::= { iphelperStatEntry 2 }
iphelperTxToNextHop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This keeps track of the number of packets transmitted to the server."
::= { iphelperStatEntry 3}
iphelperInvalidAgentInfoOptFrmSrver OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This keeps track of the number of packets dropped due to
invalid from DHCP server with Relay Agent Information option
in the DHCP packet."
::= { iphelperStatEntry 4}
iphelperRxFromClient OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This keeps track of the number of packets recieved from the client."
::= { iphelperMIB 3 }
iphelperMaxHopsViolation OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This keeps track of the number of packets dropped due to
max hops violation."
::= { iphelperMIB 4}
iphelperForwDelayViolation OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This keeps track of the number of packets dropped due to
forward delay violation."
::= { iphelperMIB 5}
iphelperAgentInfoViolation OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This keeps track of the number of packets dropped due to
DHCP packet with giaddr field not equal to zero and
Relay Agent Information option is present and also the
Relay Agent Information Policy is set to DROP."
::= { iphelperMIB 6}
iphelperInvalidGatewayIP OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This keeps track of the number of packets dropped due to
giaddr matching a local subnet and Relay Agent Information
option is present in the DHCP packet."
::= { iphelperMIB 7}
iphelperForwDelay OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This sets the BOOTP/DHCP relay's forwarding delay and
is only used by the BOOTP/DHCP service. It is typically
set as seconds, but the value is totally client dependent.
This relay will not forward frames until client frames
have 'secs' field set to atleast the value iphelperForwDelay."
::= { iphelperMIB 8 }
iphelperMaxHops OBJECT-TYPE
SYNTAX Integer32 (1..16)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This sets the BOOTP/DHCP relay's maximum hops
forwarding limit and is only used by the BOOTP/DHCP service.
If a frame arrives with hopcount greater than or equal
to iphelperMaxHops, it will be dropped."
::= { iphelperMIB 9 }
iphelperForwardOption OBJECT-TYPE
SYNTAX INTEGER
{
standard(1),
perVlan(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is the forwarding option for the BOOTP/DHCP Relay Agent.
Default value is standard (1)."
DEFVAL { standard }
::= { iphelperMIB 10 }
iphelperResetAllStats OBJECT-TYPE
SYNTAX INTEGER {
noOperation (0),
resetAllStats (1),
resetAllGlbStats (2),
resetAllSrvStats (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This parameter resets all the ip helper statistics.
1 - reset all stats. Both Global and server stats.
2 - reset all global statistics.
3 - reset all server statistics.
When the reset operation is done, subsystem will
change the value to zero (0).
Subsystem will always return zero (0)."
::= { iphelperMIB 11}
iphelperBootupOption OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This object allows the user to enable or disable the
functionality of the relay to get an IP address at the
time of system boot-up and assign that IP address for
the ip interface of the default VLAN. When this is diabled
and then enable, the object iphelperBootupPacketOption is
reset to its default value.
Default of this option is Disable (2)."
DEFVAL { disable }
::= {iphelperMIB 12}
iphelperBootupPacketOption OBJECT-TYPE
SYNTAX INTEGER
{
bootp(1),
dhcp(2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This object is used in conjunction with iphelperBootupOption.
This specify the packet format with the choices of BOOTP or DHCP
to be used to get an IP address at the time of system boot-up.
Default option is DHCP"
DEFVAL { dhcp }
::= {iphelperMIB 13}
iphelperAgentInformation OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows user to enable or disable the functionality
of inserting the relay agent information option to the DHCP
option field according to RFC 3046. When is is disbled and then
enabled, the iphelperAgentInformationPolicy will be reset to its
default value."
DEFVAL { disable }
::= {iphelperMIB 14}
iphelperAgentInformationPolicy OBJECT-TYPE
SYNTAX INTEGER
{
drop(1),
keep(2),
replace(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows the user to select the policy of either
drop, keep or replace the relay agent information option if
this option is already present in the DHCP packet."
DEFVAL { drop }
::= {iphelperMIB 15}
iphelperPXESupport OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled the relay agent will replace the source IP address
of the packet with the gateway IP address from the DHCP packet.
The default value is disabled."
DEFVAL { disabled }
::= { iphelperMIB 16 }
iphelperDhcpOption82FormatType OBJECT-TYPE
SYNTAX INTEGER {
macAddress(1),
systemName(2),
userString(3),
interfaceAlias(4),
autoInterfaceAlias(5),
ascii(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"DHCP option-82 defines the type of information carried in circuit id
and remote id sub option fields. If the type selected is string the actual
value of the string can be found in iphelperDhcpOption82StringValue.
Format type ASCII will insert the configured fields in ASCII format."
DEFVAL { macAddress }
::= { iphelperMIB 17 }
iphelperDhcpOption82StringValue OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..63))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the string that will be used in the circuit id and remote id
sub options."
::= { iphelperMIB 18 }
iphelperDhcpOption82FormatASCIIField1 OBJECT-TYPE
SYNTAX IphelpereOption82ASCIIFieldType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of the first field in the Option 82 string in ASCII format,
which will be copied to Option-82 circuit id of the DHCP packet.
This Field is applicable only, if the option 82 format type is ASCII"
DEFVAL { none }
::= { iphelperMIB 19 }
iphelperDhcpOption82FormatASCIIField1StringValue OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..63))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The string value of the first field in the Option 82 string in ASCII
format, which will be copied to Option-82 circuit id of the DHCP packet.
This Field is applicable only, if the option 82 format type is ASCII.
If the option 82 format type is not ASCII or if this field is not used or
if the string value is port specific, this field returns an ASCII string -."
::= { iphelperMIB 20 }
iphelperDhcpOption82FormatASCIIField2 OBJECT-TYPE
SYNTAX IphelpereOption82ASCIIFieldType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of the second field in the Option 82 string in ASCII format,
which will be copied to Option-82 circuit id of the DHCP packet.
This Field is applicable only, if the option 82 format type is ASCII"
DEFVAL { none }
::= { iphelperMIB 21 }
iphelperDhcpOption82FormatASCIIField2StringValue OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..63))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The string value of the second field in the Option 82 string in ASCII
format, which will be copied to Option-82 circuit id of the DHCP packet.
This Field is applicable only, if the option 82 format type is ASCII.
If the option 82 format type is not ASCII or if this field is not used or
if the string value is port specific, this field returns an ASCII string -."
::= { iphelperMIB 22 }
iphelperDhcpOption82FormatASCIIField3 OBJECT-TYPE
SYNTAX IphelpereOption82ASCIIFieldType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of the third field in the Option 82 string in ASCII format,
which will be copied to Option-82 circuit id of the DHCP packet.
This Field is applicable only, if the option 82 format type is ASCII"
DEFVAL { none }
::= { iphelperMIB 23 }
iphelperDhcpOption82FormatASCIIField3StringValue OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..63))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The string value of the third field in the Option 82 string in ASCII
format, which will be copied to Option-82 circuit id of the DHCP packet.
This Field is applicable only, if the option 82 format type is ASCII.
If the option 82 format type is not ASCII or if this field is not used or
if the string value is port specific, this field returns an ASCII string -."
::= { iphelperMIB 24 }
iphelperDhcpOption82FormatASCIIField4 OBJECT-TYPE
SYNTAX IphelpereOption82ASCIIFieldType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of the fourth field in the Option 82 string in ASCII format,
which will be copied to Option-82 circuit id of the DHCP packet.
This Field is applicable only, if the option 82 format type is ASCII"
DEFVAL { none }
::= { iphelperMIB 25 }
iphelperDhcpOption82FormatASCIIField4StringValue OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..63))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The string value of the fourth field in the Option 82 string in ASCII
format, which will be copied to Option-82 circuit id of the DHCP packet.
This Field is applicable only, if the option 82 format type is ASCII.
If the option 82 format type is not ASCII or if this field is not used or
if the string value is port specific, this field returns an ASCII string -."
::= { iphelperMIB 26 }
iphelperDhcpOption82FormatASCIIField5 OBJECT-TYPE
SYNTAX IphelpereOption82ASCIIFieldType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of the fifth field in the Option 82 string in ASCII format,
which will be copied to Option-82 circuit id of the DHCP packet.
This Field is applicable only, if the option 82 format type is ASCII"
DEFVAL { none }
::= { iphelperMIB 27 }
iphelperDhcpOption82FormatASCIIField5StringValue OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..63))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The string value of the fifth field in the Option 82 string in ASCII
format, which will be copied to Option-82 circuit id of the DHCP packet.
This Field is applicable only, if the option 82 format type is ASCII.
If the option 82 format type is not ASCII or if this field is not used or
if the string value is port specific, this field returns an ASCII string -."
::= { iphelperMIB 28 }
iphelperDhcpOption82FormatASCIIDelimiter OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..63))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the delimiter that is inserted between the fields in the
Option 82 string in ASCII format, which will be copied to Option-82
circuit id of the DHCP packet. This value is applicable only, if the
option 82 format type is ASCII"
::= { iphelperMIB 29 }
iphelperResetAllOpt82ErrStats OBJECT-TYPE
SYNTAX INTEGER {
noOperation (0),
resetAllStats (1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This parameter resets all the ip helper Option 82 error statistics.
When the reset operation is done, subsystem will
change the value to zero (0).
Subsystem will always return zero (0)."
::= { iphelperMIB 30}
iphelperOption82ErrStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF IphelperOption82ErrStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Option 82 related error statistic count per port and per vlan."
::= { iphelperMIB 31 }
iphelperOption82ErrStatsEntry OBJECT-TYPE
SYNTAX IphelperOption82ErrStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" An entry in the ip helper Option 82 error statistics table"
INDEX { iphelperOpt82ifIndex, iphelperOpt82vlan }
::= { iphelperOption82ErrStatsTable 1 }
IphelperOption82ErrStatsEntry ::= SEQUENCE {
iphelperOpt82ifIndex
InterfaceIndex,
iphelperOpt82vlan
Unsigned32,
iphelperOpt82agentInfoViolationCnt
Counter32,
iphelperOpt82invalidGatewayIPAddrCnt
Counter32,
iphelperOpt82resetErrStats
INTEGER
}
iphelperOpt82ifIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The interface where the DHCP packet ingress the switch that
caused the Agent Info Violation or the Invalid Gateway
IP Address error."
::= { iphelperOption82ErrStatsEntry 1 }
iphelperOpt82vlan OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The vlan where the DHCP packet ingress the switch that
caused the Agent Info Violation or the Invalid Gateway
IP Address error."
::= { iphelperOption82ErrStatsEntry 2 }
iphelperOpt82agentInfoViolationCnt OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Agent Info Violation seen on this interface and vlan."
::= { iphelperOption82ErrStatsEntry 3 }
iphelperOpt82invalidGatewayIPAddrCnt OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Invalid Gateway IP Address seen on this interface and vlan."
::= { iphelperOption82ErrStatsEntry 4 }
iphelperOpt82resetErrStats OBJECT-TYPE
SYNTAX INTEGER {
noOperation (0),
resetErrStats (1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This parameter resets the ip helper Option 82 error statistics
on this interface and vlan. When the reset operation is done,
subsystem will change the value to zero (0). Subsystem will always return
zero (0)."
::= { iphelperOption82ErrStatsEntry 5 }
dhcpSnoopingVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpSnoopingVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of vlans that have DHCP Snooping enabled."
::= { dhcpSnoopingMIB 1 }
dhcpSnoopingVlanEntry OBJECT-TYPE
SYNTAX DhcpSnoopingVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A DHCP Snooping VLAN entry."
INDEX { dhcpSnoopingVlanNumber }
::= { dhcpSnoopingVlanTable 1 }
DhcpSnoopingVlanEntry ::= SEQUENCE {
dhcpSnoopingVlanNumber Integer32,
dhcpSnoopingVlanOpt82DataInsertionStatus INTEGER,
dhcpSnoopingVlanMacAddrVerificationStatus INTEGER,
dhcpSnoopingVlanStatus RowStatus
}
dhcpSnoopingVlanNumber OBJECT-TYPE
SYNTAX Integer32 (1..4094)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VLAN number identifying this instance. Valid
range from 1 to 4094."
::= { dhcpSnoopingVlanEntry 1 }
dhcpSnoopingVlanOpt82DataInsertionStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The DHCP Option-82 data insertion status. Default value is enabled,
which means once the VLAN is enabled for DHCP snooping, the
Option-82 field will be inserted in the DHCP packets between the
Relay Agent and the DHCP Server, on all the ports belong to the
VLAN."
DEFVAL { enabled }
::= { dhcpSnoopingVlanEntry 2 }
dhcpSnoopingVlanMacAddrVerificationStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The DHCP Snooping MAC Address verification status. Default value is
enabled. Once enabled, for all the incoming DHCP traffic to those
DHCP Snooping enabled vlan port, it compares the source MAC address
and the client Hardware Address in the DHCP packet. If mismatch, the
packet will be dropped."
DEFVAL { enabled }
::= { dhcpSnoopingVlanEntry 3 }
dhcpSnoopingVlanStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row Status for creating/deleting"
::= { dhcpSnoopingVlanEntry 4 }
dhcpSnoopingPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpSnoopingPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of ports that have DHCP Snooping trust status."
::= { dhcpSnoopingMIB 2 }
dhcpSnoopingPortEntry OBJECT-TYPE
SYNTAX DhcpSnoopingPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A DHCP Snooping Port entry."
INDEX { dhcpSnoopingPortIfIndex }
::= { dhcpSnoopingPortTable 1 }
DhcpSnoopingPortEntry ::= SEQUENCE {
dhcpSnoopingPortIfIndex InterfaceIndex,
dhcpSnoopingPortTrustMode INTEGER,
dhcpSnoopingPortMacAddrViolation Counter32,
dhcpSnoopingPortDhcpServerViolation Counter32,
dhcpSnoopingPortOption82Violation Counter32,
dhcpSnoopingPortRelayAgentViolation Counter32,
dhcpSnoopingPortBindingViolation Counter32,
dhcpSnoopingPortIpSourceFiltering INTEGER
}
dhcpSnoopingPortIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex subindex identifying this instance."
::= { dhcpSnoopingPortEntry 1 }
dhcpSnoopingPortTrustMode OBJECT-TYPE
SYNTAX INTEGER {
blocked(1),
clientOnly(2),
trusted(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The DHCP Snooping's VLAN port's trust mode. Default value
is client-only, which means once the VLAN is enabled for DHCP
snooping, the vlan ports only allow DHCP client packets. Blocked
means all DHCP traffic is block on the port. Trusted means all
DHCP traffic is allowed on the port"
DEFVAL { clientOnly }
::= { dhcpSnoopingPortEntry 2 }
dhcpSnoopingPortMacAddrViolation OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This keeps track of the number of packets dropped due to DHCPi
packet with the source MAC Address not equal the client DHCP
Hardware address in the DHCP packet."
::= { dhcpSnoopingPortEntry 3 }
dhcpSnoopingPortDhcpServerViolation OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This keeps track of the number of packets dropped due to receiving
an DHCP server packet on a DHCP Snooping enabled port."
::= { dhcpSnoopingPortEntry 4 }
dhcpSnoopingPortOption82Violation OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This keeps track of the number of packets dropped due to a relay
agent forards a packet that includes option 82 info to an untrusted
port."
::= { dhcpSnoopingPortEntry 5 }
dhcpSnoopingPortRelayAgentViolation OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This keeps track of the number of packets dropped due to an DHCP
relay agent forwards a DHCP packate includes an relay agent ip
address that is not 0.0.0.0."
::= { dhcpSnoopingPortEntry 6 }
dhcpSnoopingPortBindingViolation OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This keeps track of the number of packets dropped due to receiving
an DHCP Relase or DHCP Decline message that contains a MAC address
in the DHCP snooping binding table, but the interface information in
the binding table does not match the interface on which the message
was received."
::= { dhcpSnoopingPortEntry 7 }
dhcpSnoopingPortIpSourceFiltering OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The DHCP Snooping IP Source filtering status. Default value
is disabled. Once enabled, only the incoming traffic with the proper
client IP address, MAC address and port will be allowed."
DEFVAL { disabled }
::= { dhcpSnoopingPortEntry 8 }
dhcpSnoopingBindingTable OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpSnoopingBindingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"DHCP Snooping binding table."
::= { dhcpSnoopingMIB 3 }
dhcpSnoopingBindingEntry OBJECT-TYPE
SYNTAX DhcpSnoopingBindingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A DHCP Snooping binding entry."
INDEX { dhcpSnoopingBindingMacAddress, dhcpSnoopingBindingIfIndex }
::= { dhcpSnoopingBindingTable 1 }
DhcpSnoopingBindingEntry ::= SEQUENCE {
dhcpSnoopingBindingMacAddress MacAddress,
dhcpSnoopingBindingIfIndex InterfaceIndex,
dhcpSnoopingBindingIpAddress IpAddress,
dhcpSnoopingBindingVlan Unsigned32,
dhcpSnoopingBindingLeaseTime Unsigned32,
dhcpSnoopingBindingType INTEGER,
dhcpSnoopingBindingRowStatus RowStatus
}
dhcpSnoopingBindingMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The MAC Address subindex identifying this instance."
::= { dhcpSnoopingBindingEntry 1 }
dhcpSnoopingBindingIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The IfIndex subindex identifying this instance. It is the
the interface where the DHCP request is coming in from."
::= { dhcpSnoopingBindingEntry 2 }
dhcpSnoopingBindingIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Ip Address offered by the DHCP Server to the Client."
::= { dhcpSnoopingBindingEntry 3 }
dhcpSnoopingBindingVlan OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"It is the VLAN Id where the DHCP client belongs to."
::= { dhcpSnoopingBindingEntry 4 }
dhcpSnoopingBindingLeaseTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lease time of the client's IP Address."
::= { dhcpSnoopingBindingEntry 5 }
dhcpSnoopingBindingType OBJECT-TYPE
SYNTAX INTEGER {
dynamic(1),
static(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The learning/configuration nature of the binding entry.
Normally, the entries are learned dynamically, while it
also can be statically/manually configured."
DEFVAL { dynamic }
::= { dhcpSnoopingBindingEntry 6 }
dhcpSnoopingBindingRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row Status for creating/deleting"
::= { dhcpSnoopingBindingEntry 7 }
dhcpSnoopingMode OBJECT-TYPE
SYNTAX INTEGER {
switchLevel(1),
disabled(2),
vlanLevel(3) -- read-only state
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enabling DHCP Snooping at the switch level. For the vlan level,
it is enabled implicitly when an individual vlan's DHCP Snooping
is enabled; and, mode is implicitly disabled until all vlan's
DHCP Snooping are disabled. If mode is set to vlan level, the
operation will be of no effect."
::= {dhcpSnoopingMIB 4 }
dhcpSnoopingOpt82DataInsertionStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The DHCP Option-82 data insertion status at switch level. Default
value is enabled, the Option-82 field will be inserted in the DHCP
packets between the Relay Agent and the DHCP Server, on all the
ports belong to the switch."
DEFVAL { enabled }
::= { dhcpSnoopingMIB 5 }
dhcpSnoopingMacAddrVerificationStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The DHCP Snooping MAC Address verification status at switch level.
Default value is enabled. Once enabled, for all the incoming DHCP
traffic to the port, it compares the source MAC address and the
client Hardware Address in the DHCP packet. If mismatch, the packet
will be dropped."
DEFVAL { enabled }
::= { dhcpSnoopingMIB 6 }
dhcpSnoopingBindingStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies if the capability of building the DHCP
Snooping Binding Table/Database is enable or not. By default, it is
enabled. It is applicable for both switch-level or vlan-level DHCP
Snooping."
DEFVAL { enabled }
::= { dhcpSnoopingMIB 7 }
dhcpSnoopingBindingDatabaseSyncTimeout OBJECT-TYPE
SYNTAX Unsigned32 (60..600)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The DHCP Snooping Binding Database synchronization timeout value.
It is used to specify the synchronization frequency, in seconds,
between the binding table in memory and the binding file in flash."
DEFVAL { 300 }
::= { dhcpSnoopingMIB 8 }
dhcpSnoopingBindingDatabaseLastSyncTime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time stamp of the last successuful DHCP Snooping Binding
Database synchronization."
::= { dhcpSnoopingMIB 9 }
dhcpSnoopingBindingDatabaseAction OBJECT-TYPE
SYNTAX INTEGER {
noaction(0),
purge(1),
renew(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object identifies the action to be performed. Purge:
means to clear the binding table entries in the memory.
Renew: means to populate the binding table entries from the
flash file."
::= { dhcpSnoopingMIB 10 }
dhcpSnoopingBypassOpt82CheckStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"DHCP bypass option-82 check status. By default, it is disabled.
Once enabled, it will no longer enforce the check of option-82 field
in the incoming DHCP Packets on those untrusted ports."
DEFVAL { disabled }
::= { dhcpSnoopingMIB 11 }
dhcpSnoopingBindingPersistencyStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"DHCP Snooping binding table persistency check status. By default,
it is disabled. Once enabled, the binding entries expiry will be
solely depend on Lease time"
DEFVAL { disabled }
::= { dhcpSnoopingMIB 12 }
dhcpSnoopingSourceFilterVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpSnoopingSourceFilterVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of vlans that have ip-source-filtering enabled."
::= { dhcpSnoopingMIB 13 }
dhcpSnoopingSourceFilterVlanEntry OBJECT-TYPE
SYNTAX DhcpSnoopingSourceFilterVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A Source Filtering enabled VLAN entry."
INDEX { dhcpSnoopingSourceFilterVlanNumber }
::= { dhcpSnoopingSourceFilterVlanTable 1 }
DhcpSnoopingSourceFilterVlanEntry ::= SEQUENCE {
dhcpSnoopingSourceFilterVlanNumber
Integer32,
dhcpSnoopingSourceFilterVlanFilteringStatus
RowStatus
}
dhcpSnoopingSourceFilterVlanNumber OBJECT-TYPE
SYNTAX Integer32 (1..4094)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VLAN number identifying this instance. Valid
range from 1 to 4094."
::= { dhcpSnoopingSourceFilterVlanEntry 1 }
dhcpSnoopingSourceFilterVlanFilteringStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The DHCP Snooping IP Source filtering row status. Default value
is disabled. Once enabled, only the incoming traffic with the proper
client IP address, MAC address , port and vlan will be allowed."
::= { dhcpSnoopingSourceFilterVlanEntry 2 }
dhcpSnoopingOption82FormatType OBJECT-TYPE
SYNTAX INTEGER {
macAddress(1),
systemName(2),
userString(3),
interfaceAlias(4),
autoInterfaceAlias(5),
ascii(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"DHCP option-82 defines the type of information carried in circuit id
and remote id sub option fields. If the type selected is string the actual
value of the string can be found in iphelperDhcpOption82StringValue.
Format type ASCII will insert the configured fields in ASCII format."
DEFVAL { macAddress }
::= { iphelperMIB 45 }
dhcpSnoopingOption82StringValue OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..63))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the string that will be used in the circuit id and remote id
sub options."
::= { iphelperMIB 46 }
dhcpSnoopingOption82FormatASCIIConfigurableTable OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpSnoopingOption82FormatASCIIConfigurableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of ascii fields used for Circuit ID or Remote ID."
::= { iphelperMIB 47 }
dhcpSnoopingOption82FormatASCIIConfigurableEntry OBJECT-TYPE
SYNTAX DhcpSnoopingOption82FormatASCIIConfigurableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An ascii field entry for Circuit ID or Remote ID."
INDEX { dhcpSnoopingOption82FormatASCIIConfigurableIndex }
::= { dhcpSnoopingOption82FormatASCIIConfigurableTable 1 }
DhcpSnoopingOption82FormatASCIIConfigurableEntry ::= SEQUENCE {
dhcpSnoopingOption82FormatASCIIConfigurableIndex
DhcpSnoopingOption82CircuitOrRemoteId,
dhcpSnoopingOption82FormatASCIIConfigurableField1
DhcpSnoopingOption82ASCIIFieldType,
dhcpSnoopingOption82FormatASCIIConfigurableField1StrVal
SnmpAdminString,
dhcpSnoopingOption82FormatASCIIConfigurableField2
DhcpSnoopingOption82ASCIIFieldType,
dhcpSnoopingOption82FormatASCIIConfigurableField2StrVal
SnmpAdminString,
dhcpSnoopingOption82FormatASCIIConfigurableField3
DhcpSnoopingOption82ASCIIFieldType,
dhcpSnoopingOption82FormatASCIIConfigurableField3StrVal
SnmpAdminString,
dhcpSnoopingOption82FormatASCIIConfigurableField4
DhcpSnoopingOption82ASCIIFieldType,
dhcpSnoopingOption82FormatASCIIConfigurableField4StrVal
SnmpAdminString,
dhcpSnoopingOption82FormatASCIIConfigurableField5
DhcpSnoopingOption82ASCIIFieldType,
dhcpSnoopingOption82FormatASCIIConfigurableField5StrVal
SnmpAdminString,
dhcpSnoopingOption82FormatASCIIConfigurableDelimiter
SnmpAdminString,
dhcpSnoopingOption82FormatASCIIConfigurableStatus
RowStatus
}
dhcpSnoopingOption82FormatASCIIConfigurableIndex OBJECT-TYPE
SYNTAX DhcpSnoopingOption82CircuitOrRemoteId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object specifies the either circuit id or remote id for option82."
::= { dhcpSnoopingOption82FormatASCIIConfigurableEntry 1 }
dhcpSnoopingOption82FormatASCIIConfigurableField1 OBJECT-TYPE
SYNTAX DhcpSnoopingOption82ASCIIFieldType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of the first field in the Option 82 string in ASCII
format, which will be copied to Option-82 circuit id or remote id of
the DHCP packet. This Field is applicable only, if the option 82
format type is ASCII."
::= { dhcpSnoopingOption82FormatASCIIConfigurableEntry 2 }
dhcpSnoopingOption82FormatASCIIConfigurableField1StrVal OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..63))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The string value of the first field in the Option 82 string in
ASCII format, which will be copied to Option-82 circuit id or remote
id of the DHCP packet. This Field is applicable only, if the option
82 format type is ASCII"
DEFVAL { " - " }
::= { dhcpSnoopingOption82FormatASCIIConfigurableEntry 3 }
dhcpSnoopingOption82FormatASCIIConfigurableField2 OBJECT-TYPE
SYNTAX DhcpSnoopingOption82ASCIIFieldType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of the second field in the Option 82 string in ASCII
format, which will be copied to Option-82 circuit id or remote id of
the DHCP packet. This Field is applicable only, if the option 82
format type is ASCII"
DEFVAL { none }
::= { dhcpSnoopingOption82FormatASCIIConfigurableEntry 4 }
dhcpSnoopingOption82FormatASCIIConfigurableField2StrVal OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..63))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The string value of the second field in the Option 82 string in
ASCII format, which will be copied to Option-82 circuit id or remote
id of the DHCP packet. This Field is applicable only, if the option
82 format type is ASCII"
DEFVAL { " - " }
::= { dhcpSnoopingOption82FormatASCIIConfigurableEntry 5 }
dhcpSnoopingOption82FormatASCIIConfigurableField3 OBJECT-TYPE
SYNTAX DhcpSnoopingOption82ASCIIFieldType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of the third field in the Option 82 string in ASCII
format, which will be copied to Option-82 circuit id or remote id of
the DHCP packet. This Field is applicable only, if the option 82
format type is ASCII"
DEFVAL { none }
::= { dhcpSnoopingOption82FormatASCIIConfigurableEntry 6 }
dhcpSnoopingOption82FormatASCIIConfigurableField3StrVal OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..63))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The string value of the third field in the Option 82 string in
ASCII format, which will be copied to Option-82 circuit id or remote
id of the DHCP packet. This Field is applicable only, if the option
82 format type is ASCII"
DEFVAL { " - " }
::= { dhcpSnoopingOption82FormatASCIIConfigurableEntry 7 }
dhcpSnoopingOption82FormatASCIIConfigurableField4 OBJECT-TYPE
SYNTAX DhcpSnoopingOption82ASCIIFieldType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of the fourth field in the Option 82 string in ASCII
format, which will be copied to Option-82 circuit id or remote id of
the DHCP packet. This Field is applicable only, if the option 82
format type is ASCII"
DEFVAL { none }
::= { dhcpSnoopingOption82FormatASCIIConfigurableEntry 8 }
dhcpSnoopingOption82FormatASCIIConfigurableField4StrVal OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..63))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The string value of the fourth field in the Option 82 string in
ASCII format, which will be copied to Option-82 circuit id or remote
id of the DHCP packet. This Field is applicable only, if the option
82 format type is ASCII"
DEFVAL { " - " }
::= { dhcpSnoopingOption82FormatASCIIConfigurableEntry 9 }
dhcpSnoopingOption82FormatASCIIConfigurableField5 OBJECT-TYPE
SYNTAX DhcpSnoopingOption82ASCIIFieldType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of the fifth field in the Option 82 string in ASCII
format, which will be copied to Option-82 circuit id or remote id of
the DHCP packet. This Field is applicable only, if the option 82
format type is ASCII"
DEFVAL { none }
::= { dhcpSnoopingOption82FormatASCIIConfigurableEntry 10 }
dhcpSnoopingOption82FormatASCIIConfigurableField5StrVal OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..63))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The string value of the fifth field in the Option 82 string in
ASCII format, which will be copied to Option-82 circuit id or remote
id of the DHCP packet. This Field is applicable only, if the option
82 format type is ASCII"
DEFVAL { " - " }
::= { dhcpSnoopingOption82FormatASCIIConfigurableEntry 11 }
dhcpSnoopingOption82FormatASCIIConfigurableDelimiter OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..63))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of the delimiter that is inserted between the fields in
the Option 82 string in ASCII format, which will be copied to
Option-82 circuit id or remote id of the DHCP packet. This value is
applicable only, if the option 82 format type is ASCII"
DEFVAL { "" }
::= { dhcpSnoopingOption82FormatASCIIConfigurableEntry 12 }
dhcpSnoopingOption82FormatASCIIConfigurableStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the status of the entry."
::= { dhcpSnoopingOption82FormatASCIIConfigurableEntry 13 }
-- MDNS Relay --
alaMdnsAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MDNS global admin status."
DEFVAL { disable }
::= { iphelperMIB 48 }
alaMdnsGreTunnelName OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the tunnel name for the MDNS feature."
::= { iphelperMIB 49 }
alaMdnsOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MDNS operational status"
DEFVAL { down }
::= { iphelperMIB 50 }
-- SSDP Relay --
alaSsdpGreTunnelName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the GRE tunnel IP interface name associated with the SSDP Relay feature."
::= { iphelperMIB 51 }
alaSsdpAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"SSDP Relay global status"
DEFVAL { disabled }
::= { iphelperMIB 52 }
alaSsdpOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SSDP operational status"
DEFVAL { down }
::= { iphelperMIB 53 }
genericUdpServiceTable OBJECT-TYPE
SYNTAX SEQUENCE OF GenericUdpServiceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines the Generic UDP Relay Service."
::= { genericUdpServiceMIB 1 }
genericUdpServiceEntry OBJECT-TYPE
SYNTAX GenericUdpServiceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in Generic UDP Relay table"
INDEX { genericUdpServiceUdpPort}
::= { genericUdpServiceTable 1 }
GenericUdpServiceEntry ::= SEQUENCE {
genericUdpServiceUdpPort
Unsigned32,
genericUdpServiceDescription
SnmpAdminString,
genericUdpServiceStatRxFromClient
Counter32,
genericUdpServiceRowStatus
RowStatus
}
genericUdpServiceUdpPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"UDP port for the service."
::= { genericUdpServiceEntry 1 }
genericUdpServiceDescription OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..30))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name and/or description of the service. If null string is passed
the default name will be used."
::= { genericUdpServiceEntry 2 }
genericUdpServiceStatRxFromClient OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This keeps track of the number of packets received from the
client with UDP destination port matching genericUdpServiceUdpPort."
::= { genericUdpServiceEntry 3 }
genericUdpServiceRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row Status for creating/deleting"
::= { genericUdpServiceEntry 4 }
genericUdpServiceDstTable OBJECT-TYPE
SYNTAX SEQUENCE OF GenericUdpServiceDstEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines the destination VLAN for the
Generic UDP Relay Service. UDP packet with destination port
genericUdpServiceUdpPort are forwarded to VLAN defined in
genericUdpServiceDstVlan."
::= { genericUdpServiceMIB 2 }
genericUdpServiceDstEntry OBJECT-TYPE
SYNTAX GenericUdpServiceDstEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in Generic UDP Relay table"
INDEX { genericUdpServicePort, genericUdpServiceDstVlan}
::= { genericUdpServiceDstTable 1 }
GenericUdpServiceDstEntry ::= SEQUENCE {
genericUdpServicePort
Unsigned32,
genericUdpServiceDstVlan
Unsigned32,
genericUdpServiceStatTxToVlan
Counter32,
genericUdpServiceDstTblRowStatus
RowStatus
}
genericUdpServicePort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"UDP port for the service."
::= { genericUdpServiceDstEntry 1 }
genericUdpServiceDstVlan OBJECT-TYPE
SYNTAX Unsigned32 (1..4096)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Destination VLAN that the UPD port is to be forwarded to."
::= { genericUdpServiceDstEntry 2 }
genericUdpServiceStatTxToVlan OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This keeps track of the number of packets transmitted to the
destination VLAN with UDP destination port matching
genericUdpServicePort."
::= { genericUdpServiceDstEntry 3}
genericUdpServiceDstTblRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row Status for creating/deleting the Generic Service Destination Table"
::= { genericUdpServiceDstEntry 4 }
genericUdpServiceStatReset OBJECT-TYPE
SYNTAX INTEGER {
noOperation (0),
resetAllStats (1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This parameter resets all the Generic UDP Relay related
statistics. Subsystem always returns zero (0)."
::= { genericUdpServiceMIB 3 }
alaGenericUdpServiceDstIpTable OBJECT-TYPE
SYNTAX SEQUENCE OF GenericUdpServiceDstIpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines the destination IP for the
Generic UDP Relay Service. UDP packet with destination port
alaGenericUdpServiceDstUdpPort are forwarded to IP defined in
alaGenericUdpServiceDstIpAddress."
::= { genericUdpServiceMIB 4 }
alaGenericUdpServiceDstIpEntry OBJECT-TYPE
SYNTAX GenericUdpServiceDstIpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in Generic UDP Relay destination Ip table."
INDEX {
alaGenericUdpServiceDstUdpPort,
alaGenericUdpServiceDstIpType,
alaGenericUdpServiceDstIpAddress
}
::= { alaGenericUdpServiceDstIpTable 1 }
GenericUdpServiceDstIpEntry ::= SEQUENCE {
alaGenericUdpServiceDstUdpPort
Unsigned32,
alaGenericUdpServiceDstIpType
InetAddressType,
alaGenericUdpServiceDstIpAddress
InetAddress,
alaGenericUdpServiceDstStatTxToIp
Counter32,
alaGenericUdpServiceDstIpRowStatus
RowStatus
}
alaGenericUdpServiceDstUdpPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"UDP port for the service."
::= { alaGenericUdpServiceDstIpEntry 1 }
alaGenericUdpServiceDstIpType OBJECT-TYPE
SYNTAX InetAddressType { ipv4(1), ipv6(2) }
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This specifies the IP Address type of the
UDP Relay Server to forward the UDP packet."
::= { alaGenericUdpServiceDstIpEntry 2 }
alaGenericUdpServiceDstIpAddress OBJECT-TYPE
SYNTAX InetAddress (SIZE(4|16))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This specifies the IP Address of the
UDP Relay Server to forward the UDP packet."
::= { alaGenericUdpServiceDstIpEntry 3 }
alaGenericUdpServiceDstStatTxToIp OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This keeps track of the number of packets transmitted to the
destination IP with UDP destination port matching
alaGenericUdpServiceDstUdpPort."
::= { alaGenericUdpServiceDstIpEntry 4}
alaGenericUdpServiceDstIpRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row Status for creating/deleting the Generic Service Destination IP Table"
::= { alaGenericUdpServiceDstIpEntry 5 }
-- --------------------------------------------------------------
-- Trap Description
-- --------------------------------------------------------------
-- Notifications
alaDhcpClientAddressAddTrap NOTIFICATION-TYPE
OBJECTS {
alaDhcpClientAddress
}
STATUS current
DESCRIPTION
"When new IP address is assigned to DHCP Client interface."
::= { alcatelIND1UDPRelayNotificationObjects 1 }
alaDhcpClientAddressExpiryTrap NOTIFICATION-TYPE
OBJECTS {
alaDhcpClientAddress
}
STATUS current
DESCRIPTION
"When the lease time expires or when DHCP client not
able to renew/rebind an IP address."
::= { alcatelIND1UDPRelayNotificationObjects 2 }
alaDhcpClientAddressModifyTrap NOTIFICATION-TYPE
OBJECTS {
alaDhcpClientAddress,
alaDhcpClientNewAddress
}
STATUS current
DESCRIPTION
"When the dhcp client not able to obtain the existing
IP address and new IP address is assigned to the DHCP client."
::= { alcatelIND1UDPRelayNotificationObjects 3 }
alaDhcpBindingDuplicateEntry NOTIFICATION-TYPE
OBJECTS {
dhcpSnoopingBindingMacAddress,
dhcpSnoopingBindingVlan,
dhcpSnoopingBindingIfIndex,
dhcpSnoopingBindingIfIndex
}
STATUS current
DESCRIPTION
"Trap to notify MAC Movement in DHCP-Binding Table
Mac Address, Vlan, Previous ifIndex, Current ifIndex"
::= { alcatelIND1UDPRelayNotificationObjects 4 }
-- Notification Objects
alaDhcpClientAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object specifies the current IP address of the DHCP client."
::= { alaDhcpClientTrapsObj 1 }
alaDhcpClientNewAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object specifies the new IP address assigned for the DHCP client."
::= { alaDhcpClientTrapsObj 2 }
--
-- COMPLIANCE
--
alcatelIND1UDPRelayMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Compliance statement for UDP Relay"
MODULE
MANDATORY-GROUPS
{
iphelperGroup,
iphelperStatGroup,
iphelperMiscGroup,
genericUdpServiceGroup,
genericUdpServiceDstGroup,
genericUdpServiceMiscGroup,
alaDhcpClientTrapsGroup,
dhcpSnoopingGroup,
dhcpSnoopingGroup2,
alaGenericUdpServiceDstIpGroup
}
::={ alcatelIND1UDPRelayMIBCompliances 1}
iphelperGroup OBJECT-GROUP
OBJECTS
{
iphelperResetSrvStats,
iphelperRowStatus
}
STATUS current
DESCRIPTION
" Collection of objects for the management of parameters of UDP Relay."
::= { alcatelIND1UDPRelayMIBGroups 1}
iphelperStatGroup OBJECT-GROUP
OBJECTS
{
iphelperTxToNextHop,
iphelperInvalidAgentInfoOptFrmSrver
}
STATUS current
DESCRIPTION
" Collection of objects for management of statistics for DHCP Relay Agent."
::= { alcatelIND1UDPRelayMIBGroups 2}
iphelperMiscGroup OBJECT-GROUP
OBJECTS
{
iphelperRxFromClient,
iphelperMaxHopsViolation,
iphelperForwDelayViolation,
iphelperAgentInfoViolation,
iphelperInvalidGatewayIP,
iphelperForwDelay,
iphelperMaxHops,
iphelperForwardOption,
iphelperResetAllStats,
iphelperBootupOption,
iphelperBootupPacketOption,
iphelperAgentInformation,
iphelperAgentInformationPolicy,
iphelperPXESupport,
iphelperDhcpOption82FormatType,
iphelperDhcpOption82StringValue,
iphelperDhcpOption82FormatASCIIField1,
iphelperDhcpOption82FormatASCIIField1StringValue,
iphelperDhcpOption82FormatASCIIField2,
iphelperDhcpOption82FormatASCIIField2StringValue,
iphelperDhcpOption82FormatASCIIField3,
iphelperDhcpOption82FormatASCIIField3StringValue,
iphelperDhcpOption82FormatASCIIField4,
iphelperDhcpOption82FormatASCIIField4StringValue,
iphelperDhcpOption82FormatASCIIField5 ,
iphelperDhcpOption82FormatASCIIField5StringValue,
iphelperDhcpOption82FormatASCIIDelimiter,
iphelperResetAllOpt82ErrStats,
alaMdnsAdminStatus,
alaMdnsGreTunnelName,
alaMdnsOperStatus,
alaSsdpGreTunnelName,
alaSsdpAdminStatus,
alaSsdpOperStatus
}
STATUS current
DESCRIPTION
" Other independent objects of UDP Relay."
::= { alcatelIND1UDPRelayMIBGroups 3}
genericUdpServiceGroup OBJECT-GROUP
OBJECTS
{
genericUdpServiceDescription,
genericUdpServiceStatRxFromClient,
genericUdpServiceRowStatus
}
STATUS current
DESCRIPTION
"Objects for Generic UDP Service table"
::= { alcatelIND1UDPRelayMIBGroups 4}
genericUdpServiceDstGroup OBJECT-GROUP
OBJECTS
{
genericUdpServiceStatTxToVlan,
genericUdpServiceDstTblRowStatus
}
STATUS current
DESCRIPTION
"Objects for Generic UDP Service Destination table"
::= { alcatelIND1UDPRelayMIBGroups 5}
genericUdpServiceMiscGroup OBJECT-GROUP
OBJECTS
{
genericUdpServiceStatReset
}
STATUS current
DESCRIPTION
"Objects for Generic UDP Service Misc Group."
::= { alcatelIND1UDPRelayMIBGroups 6}
alaDhcpClientTrapsGroup NOTIFICATION-GROUP
NOTIFICATIONS
{
alaDhcpClientAddressAddTrap,
alaDhcpClientAddressExpiryTrap,
alaDhcpClientAddressModifyTrap,
alaDhcpBindingDuplicateEntry
}
STATUS current
DESCRIPTION
"Collection of traps for management of DHCP Client "
::= { alcatelIND1UDPRelayMIBGroups 7}
alaDhcpClientTrapsObjectGroup OBJECT-GROUP
OBJECTS
{
alaDhcpClientAddress,
alaDhcpClientNewAddress
}
STATUS current
DESCRIPTION
"Collection of trap objects for management of DHCP Client "
::= { alcatelIND1UDPRelayMIBGroups 8}
iphelperOpt82ErrorStatGroup OBJECT-GROUP
OBJECTS
{
iphelperOpt82agentInfoViolationCnt,
iphelperOpt82invalidGatewayIPAddrCnt,
iphelperOpt82resetErrStats
}
STATUS current
DESCRIPTION
" Collection of objects for Option 82 error statistics."
::= { alcatelIND1UDPRelayMIBGroups 9}
dhcpSnoopingGroup OBJECT-GROUP
OBJECTS
{
dhcpSnoopingBindingDatabaseAction,
dhcpSnoopingBindingDatabaseLastSyncTime,
dhcpSnoopingBindingDatabaseSyncTimeout,
dhcpSnoopingBindingIfIndex,
dhcpSnoopingBindingIpAddress,
dhcpSnoopingBindingLeaseTime,
dhcpSnoopingBindingMacAddress,
dhcpSnoopingBindingPersistencyStatus,
dhcpSnoopingBindingRowStatus,
dhcpSnoopingBindingStatus,
dhcpSnoopingBindingType,
dhcpSnoopingBindingVlan,
dhcpSnoopingBypassOpt82CheckStatus,
dhcpSnoopingMacAddrVerificationStatus,
dhcpSnoopingMode,
dhcpSnoopingOpt82DataInsertionStatus,
dhcpSnoopingOption82FormatASCIIConfigurableDelimiter,
dhcpSnoopingOption82FormatASCIIConfigurableField1,
dhcpSnoopingOption82FormatASCIIConfigurableField1StrVal,
dhcpSnoopingOption82FormatASCIIConfigurableField2,
dhcpSnoopingOption82FormatASCIIConfigurableField2StrVal,
dhcpSnoopingOption82FormatASCIIConfigurableField3,
dhcpSnoopingOption82FormatASCIIConfigurableField3StrVal,
dhcpSnoopingOption82FormatASCIIConfigurableField4,
dhcpSnoopingOption82FormatASCIIConfigurableField4StrVal,
dhcpSnoopingOption82FormatASCIIConfigurableField5,
dhcpSnoopingOption82FormatASCIIConfigurableField5StrVal,
dhcpSnoopingOption82FormatASCIIConfigurableStatus,
dhcpSnoopingOption82FormatType,
dhcpSnoopingPortIpSourceFiltering,
dhcpSnoopingPortMacAddrViolation,
dhcpSnoopingOption82StringValue
}
STATUS current
DESCRIPTION
" Collection of objects for DHCP Snooping."
::= { alcatelIND1UDPRelayMIBGroups 10}
dhcpSnoopingGroup2 OBJECT-GROUP
OBJECTS
{
dhcpSnoopingPortBindingViolation,
dhcpSnoopingPortOption82Violation,
dhcpSnoopingPortRelayAgentViolation,
dhcpSnoopingPortTrustMode,
dhcpSnoopingSourceFilterVlanFilteringStatus,
dhcpSnoopingVlanMacAddrVerificationStatus,
dhcpSnoopingPortDhcpServerViolation,
dhcpSnoopingVlanOpt82DataInsertionStatus,
dhcpSnoopingVlanStatus
}
STATUS current
DESCRIPTION
" Collection of objects for DHCP Snooping."
::= { alcatelIND1UDPRelayMIBGroups 11}
alaGenericUdpServiceDstIpGroup OBJECT-GROUP
OBJECTS
{
alaGenericUdpServiceDstStatTxToIp,
alaGenericUdpServiceDstIpRowStatus
}
STATUS current
DESCRIPTION
"Objects for Generic UDP Service Destination IP table"
::= { alcatelIND1UDPRelayMIBGroups 12}
END
|