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
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
|
-- =================================================================
-- Copyright (c) 2004-2016 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: Description Of Portal
-- Reference:
-- Version: V1.7
-- History:
-- V1.0 2008-12-30, Created by d04528
-- V1.1 2009-4-30, Modified by h02978
-- Added node hh3cPortalServerPort
-- Added table hh3cPortalIfInfoTable, including the following nodes:
-- hh3cPortalAuthReqNumber
-- hh3cPortalAuthSuccNumber
-- hh3cPortalAuthFailNumber
-- Added trap node hh3cPortalServerGet
-- V1.2 2010-5-31, Modified by y07111
-- Added table hh3cPortalIfServerTable, including the following nodes:
-- hh3cPortalIfServerIndex
-- hh3cPortalIfServerUrl
-- hh3cPortalIfServerRowStatus
-- Added hh3cPortalNasId
-- V1.3 2010-11-8, Modified by y07111
-- Added table hh3cPortalStatistic,including the following nodes:
-- hh3cPortalStatAuthReq
-- hh3cPortalStatAckLogout
-- hh3cPortalStatNotifyLogout
-- hh3cPortalStatChallengeTimeout
-- hh3cPortalStatChallengeBusy
-- hh3cPortalStatChallengeFail
-- hh3cPortalStatAuthTimeout
-- hh3cPortalStatAuthFail
-- hh3cPortalStatPwdError
-- hh3cPortalStatAuthBusy
-- hh3cPortalStatAuthDisordered
-- hh3cPortalStatAuthUnknownError
-- V1.4 2011-08-18, Added by liqian 04379
-- Added table hh3cPortalIfVlanNasIDTable, including the following nodes:
-- hh3cPortalIfVlanNasIDIfIndex
-- hh3cPortalIfVlanNasIDVlanID
-- hh3cPortalIfVlanNasIDNasID
-- Added table hh3cPortalSSIDFreeRuleTable, including the following nodes:
-- hh3cPortalSSIDFreeRuleIndex
-- hh3cPortalSSIDFreeRuleSrcSSID
-- hh3cPortalSSIDFreeRuleRowStatus
-- Added table hh3cPortalMacTriggerSrvTable, including the following nodes:
-- hh3cPortalMacTriggerSrvIndex
-- hh3cPortalMacTriggerSrvIPAddrType
-- hh3cPortalMacTriggerSrvIP
-- hh3cPortalMacTriggerSrvPort
-- hh3cPortalMacTriggerSrvRowStatus
-- Added table hh3cPortalMacTriggerOnIfTable, including the following nodes:
-- hh3cPortalMacTriggerOnIfIfIndex
-- hh3cPortalMacTriggerOnIfDetctFlowPeriod
-- hh3cPortalMacTriggerOnIfThresholdFlow
-- hh3cPortalMacTriggerOnIfRowStatus
-- Added table hh3cPortalPktStatistic ,including the following nodes:
-- hh3cPortalPktStaReqAuthNum
-- hh3cPortalPktStaAckAuthSuccess
-- hh3cPortalPktStaAckAuthReject
-- hh3cPortalPktStaAckAuthEstablish
-- hh3cPortalPktStaAckAuthBusy
-- hh3cPortalPktStaAckAuthAuthFail
-- hh3cPortalPktStaReqChallengeNum
-- hh3cPortalPktStaAckChallengeSuccess
-- hh3cPortalPktStaAckChallengeReject
-- hh3cPortalPktStaAckChallengeEstablish
-- hh3cPortalPktStaAckChallengeBusy
-- hh3cPortalPktStaAckChallengeAuthFail
-- 2011-11-8, Added by q04356
-- Added table hh3cPortalTrapVarObjects, including the following nodes:
-- hh3cPortalFirstTrapTime
-- Added table hh3cPortalFreeRuleTable, including the following nodes:
-- hh3cPortalFreeRuleIndex
-- hh3cPortalFreeRuleSrcIfIndex
-- hh3cPortalFreeRuleSrcVlanID
-- hh3cPortalFreeRuleSrcMac
-- hh3cPortalFreeRuleAddrType
-- hh3cPortalFreeRuleSrcAddr
-- hh3cPortalFreeRuleSrcPrefix
-- hh3cPortalFreeRuleDstAddr
-- hh3cPortalFreeRuleDstPrefix
-- hh3cPortalFreeRuleProtocol
-- hh3cPortalFreeRuleSrcPort
-- hh3cPortalFreeRuleDstPort
-- hh3cPortalFreeRuleRowStatus
-- Added table hh3cPortalForbiddenRuleTable, including the following nodes:
-- hh3cPortalForbiddenRuleIndex
-- hh3cPortalForbiddenRuleSrcIfIndex
-- hh3cPortalForbiddenRuleSrcVlanID
-- hh3cPortalForbiddenRuleSrcMac
-- hh3cPortalForbiddenRuleAddrType
-- hh3cPortalForbiddenRuleSrcAddr
-- hh3cPortalForbiddenRuleSrcPrefix
-- hh3cPortalForbiddenRuleDstAddr
-- hh3cPortalForbiddenRuleDstPrefix
-- hh3cPortalForbiddenRuleProtocol
-- hh3cPortalForbiddenRuleSrcPort
-- hh3cPortalForbiddenRuleDstPort
-- hh3cPortalForbiddenRuleRowStatus
-- Added node in table hh3cPortalStatistic
-- hh3cPortalStatAuthResp
-- hh3cPortalStatChallengeReq
-- hh3cPortalStatChallengeResp
-- V1.5 2012-11-21, Added by l09300
-- Added node in table hh3cPortalSSIDFreeRuleTable
-- hh3cPortalSSIDFreeRuleSrcSpot
-- V1.6 2013-08-29, Added by q04356
-- Added nodes in table hh3cPortalStatistic
-- hh3cPortalStatHttpReq
-- hh3cPortalStatHttpResp
-- Added node in table hh3cPortalTrapVarObjects
-- hh3cPortalServerIP
-- Added objects hh3cPortalServerPort and hh3cPortalServerIP in
-- trap nodes hh3cPortalServerGet and hh3cPortalServerLost
-- V1.7 2015-10-08, Added by zkf4839
-- Added nodes in table hh3cPortalStatistic
-- hh3cPortalStatHttpsReq
-- hh3cPortalStatHttpsResp
-- Added nodes in table hh3cPortalExtConfig, including the following nodes:
-- hh3cPortalExtMaxUserNumber
-- hh3cPortalExtCurrentUserNumber
-- hh3cPortalExtStatus
-- Added table hh3cPortalExtSrvTable, including the following nodes:
-- hh3cPortalExtSrvName
-- hh3cPortalExtSrvIPAddrType
-- hh3cPortalExtSrvIP
-- hh3cPortalExtSrvPort
-- hh3cPortalExtSrvRowStatus
-- Added table hh3cPortalExtWebSrvTable, including the following nodes:
-- hh3cPortalExtWebSrvName
-- hh3cPortalExtWebSrvUrl
-- hh3cPortalExtWebSrvRowStatus
-- Added table hh3cPortalExtMTSrvTable, including the following nodes:
-- hh3cPortalExtMTSrvName
-- hh3cPortalExtMTSrvIPAddrType
-- hh3cPortalExtMTSrvIP
-- hh3cPortalExtMTSrvPort
-- hh3cPortalExtMTDetctFlowPeriod
-- hh3cPortalExtMTThresholdFlow
-- hh3cPortalExtMTSrvRowStatus
-- Added table hh3cPortalExtIfConfigTable, including the following nodes:
-- hh3cPortalExtIfIndex
-- hh3cPortalExtIfWebSrvName
-- hh3cPortalExtIfDomainName
-- hh3cPortalExtIfAuthMethod
-- hh3cPortalExtIfMTSrvName
-- hh3cPortalExtIfMaxUser
-- Added table hh3cPortalExtIfIpv6ConfigTable, including the following nodes:
-- hh3cPortalExtIfIpv6Index
-- hh3cPortalExtIfIpv6WebSrvName
-- hh3cPortalExtIfIpv6DomainName
-- hh3cPortalExtIfIpv6AuthMethod
-- hh3cPortalExtIfIpv6MaxUser
-- Added table hh3cPortalDot11SrvTable, including the following nodes:
-- hh3cPortalDot11SrvTemName
-- hh3cPortalDot11WebSrvName
-- hh3cPortalDot11DomainName
-- hh3cPortalDot11AuthMethod
-- hh3cPortalDot11MTSrvName
-- hh3cPortalDot11MaxUser
-- Added table hh3cPortalDot11Ipv6SrvTable, including the following nodes:
-- hh3cPortalDot11Ipv6SrvTemName
-- hh3cPortalDot11Ipv6WebSrvName
-- hh3cPortalDot11Ipv6DomainName
-- hh3cPortalDot11Ipv6AuthMethod
-- hh3cPortalDot11Ipv6MaxUser
-- 2016-07-14, Added by xkf6915
-- Added nodes in table hh3cPortalForbiddenRuleTable
-- hh3cPortalForbiddenRuleSsidName
-- =================================================================
HH3C-PORTAL-MIB DEFINITIONS ::= BEGIN
IMPORTS
hh3cCommon
FROM HH3C-OID-MIB
OBJECT-TYPE, NOTIFICATION-TYPE, MODULE-IDENTITY, Integer32, Counter64, Unsigned32,
TimeTicks
FROM SNMPv2-SMI
RowStatus, MacAddress, TEXTUAL-CONVENTION
FROM SNMPv2-TC
ifIndex, InterfaceIndex
FROM IF-MIB
InetAddressPrefixLength, InetAddressType, InetAddress, InetAddressIPv4
FROM INET-ADDRESS-MIB;
hh3cPortal MODULE-IDENTITY
LAST-UPDATED "201607141020Z" -- Jul 14, 2016 at 10:20 GMT
ORGANIZATION
"New H3C Tech. Co., Ltd."
CONTACT-INFO
"Platform Team New H3C Tech. Co., Ltd.
Hai-Dian District Beijing P.R. China
http://www.h3c.com
Zip:100085
"
DESCRIPTION
"The MIB module is used for managing portal."
REVISION "201607141020Z" -- Jul 14, 2016 at 10:20 GMT
DESCRIPTION
"Modified to add new node in table hh3cPortalForbiddenRuleTable."
REVISION "201510081020Z" -- Oct 8, 2015 at 10:20 GMT
DESCRIPTION
"Modified to add new table."
::= { hh3cCommon 99 }
Hh3cPortalAuthMethod ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specify the portal authentication method."
SYNTAX INTEGER
{
invalid(1),
direct(2),
layer3(3),
redhcp(4)
}
hh3cPortalConfig OBJECT IDENTIFIER ::= { hh3cPortal 1 }
--
-- PORTAL MAX USER NUMBER
--
hh3cPortalMaxUserNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify the maximum number of online users,
the value to be set should meet the following two conditions:
1. Less than or equal to hh3cPortalUserNumberUpperLimit.
2. Greater than or equal to one.
The default value is equal to hh3cPortalUserNumberUpperLimit."
::= { hh3cPortalConfig 1 }
--
-- PORTAL CURRENT USER NUMBER
--
hh3cPortalCurrentUserNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of users connecting to the portal."
::= { hh3cPortalConfig 2 }
--
-- PORTAL STATUS
--
hh3cPortalStatus OBJECT-TYPE
SYNTAX INTEGER
{
enabled(1),
disabled(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It indicates the portal status.
enabled:
Portal is enabled on one or more interfaces.
disabled:
Portal is not enabled on any interface."
::= { hh3cPortalConfig 3 }
--
-- PORTAL USER NUMBER_UPPER_LIMIT
--
hh3cPortalUserNumberUpperLimit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper limit of hh3cPortalMaxUserNumber."
::= { hh3cPortalConfig 4 }
--
-- PORTAL NAS-ID Config
--
hh3cPortalNasId OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The nas id of this device."
::= { hh3cPortalConfig 5 }
--
-- PORTAL TABLES
--
hh3cPortalTables OBJECT IDENTIFIER ::= { hh3cPortal 2 }
--
-- PORTAL server table
--
hh3cPortalServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cPortalServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines the name and URL of portal server.
It can not be created and destroyed by MIB."
::= { hh3cPortalTables 1 }
hh3cPortalServerEntry OBJECT-TYPE
SYNTAX Hh3cPortalServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"There is a row in this table for each name and URL of portal server.
It is indexed using the object hh3cPortalServerName."
INDEX
{
hh3cPortalServerName
}
::= { hh3cPortalServerTable 1 }
Hh3cPortalServerEntry ::= SEQUENCE
{
hh3cPortalServerName OCTET STRING,
hh3cPortalServerUrl OCTET STRING,
hh3cPortalServerPort Integer32
}
hh3cPortalServerName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"It is the index of the table of hh3cPortalServerTable, it shows
the name of the portal server."
::= { hh3cPortalServerEntry 1 }
hh3cPortalServerUrl OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..127))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It shows the uniform resource locator to the portal server.
Users which have not logon to portal will be redirected to the
portal server according to hh3cPortalServerUrl.
The value is consisted of protocol, IP address and relative path.
For example: HTTP://10.1.1.1/portal
It is not configurable when the portal server has been enabled."
::= { hh3cPortalServerEntry 2 }
hh3cPortalServerPort OBJECT-TYPE
SYNTAX Integer32 (1..65534)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It shows the UDP port of the portal server.
The port will be used when client sends packets to portal server.
Default value is 50100.
It is not configurable when the portal server has been enabled."
::= { hh3cPortalServerEntry 3 }
--
-- PORTAL If Info Table
--
hh3cPortalIfInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cPortalIfInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table describes the portal information on some interface."
::= { hh3cPortalTables 2 }
hh3cPortalIfInfoEntry OBJECT-TYPE
SYNTAX Hh3cPortalIfInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"There is a row in this table for a interface on which
portal has been enabled.
It is indexed using the object ifIndex."
INDEX
{
ifIndex
}
::= { hh3cPortalIfInfoTable 1 }
Hh3cPortalIfInfoEntry ::= SEQUENCE
{
hh3cPortalAuthReqNumber Integer32,
hh3cPortalAuthSuccNumber Integer32,
hh3cPortalAuthFailNumber Integer32
}
hh3cPortalAuthReqNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the number of authentication request messages
which are sent by portal module to AAA module."
::= { hh3cPortalIfInfoEntry 1 }
hh3cPortalAuthSuccNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the number of authentication success response messages
which are sent by AAA module to portal module."
::= { hh3cPortalIfInfoEntry 2 }
hh3cPortalAuthFailNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the number of authentication failure response messages
which are sent by AAA module to portal module."
::= { hh3cPortalIfInfoEntry 3 }
--
-- PORTAL If Config Table
--
hh3cPortalIfServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cPortalIfServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table describes the portal information on some interface."
::= { hh3cPortalTables 3 }
hh3cPortalIfServerEntry OBJECT-TYPE
SYNTAX Hh3cPortalIfServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"There is a row in this table for a interface on which
portal has been enabled.
It is indexed using the object ifIndex."
INDEX
{
hh3cPortalIfServerIndex
}
::= { hh3cPortalIfServerTable 1 }
Hh3cPortalIfServerEntry ::= SEQUENCE
{
hh3cPortalIfServerIndex Integer32,
hh3cPortalIfServerUrl OCTET STRING,
hh3cPortalIfServerRowStatus RowStatus
}
hh3cPortalIfServerIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"It is the index of the table of hh3cIfPtServerTable, it shows
the index of the portal server."
::={ hh3cPortalIfServerEntry 1 }
hh3cPortalIfServerUrl OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"It shows the uniform resource locator to the portal server.
Users which have not logon to portal will be redirected to the
portal server according to hh3cPortalServerIfUrl.
The value is consisted of protocol, IP address and relative path.
For example: HTTP://10.1.1.1/portal
It is not configurable when the portal server has been enabled."
::= { hh3cPortalIfServerEntry 2 }
hh3cPortalIfServerRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is responsible for managing the creation, deletion and
modification of rows, which support active status and CreateAndGo,
Destroy operation. To create a new row, portal server must be specified.
To destroy an existent row, the portal server MUST NOT be referred by
interface."
::= { hh3cPortalIfServerEntry 3 }
-- PORTAL Vlan Not binding NAS ID Table
hh3cPortalIfVlanNasIDTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cPortalIfVlanNasIDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table describes the interface on which portal has been enabled,
the Vlan that the interface belongs to and the NAS ID to which the Vlan
is bound."
::= { hh3cPortalTables 4 }
hh3cPortalIfVlanNasIDEntry OBJECT-TYPE
SYNTAX Hh3cPortalIfVlanNasIDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"There is a row in this table for a interface on which portal has been
enabled, the Vlan that the interface belongs to and the NAS ID to which
the Vlan is bound.
It is indexed using the object ifIndex and Vlan that the interface
belongs to."
INDEX
{
hh3cPortalIfVlanNasIDIfIndex,
hh3cPortalIfVlanNasIDVlanID
}
::= { hh3cPortalIfVlanNasIDTable 1 }
Hh3cPortalIfVlanNasIDEntry ::= SEQUENCE
{
hh3cPortalIfVlanNasIDIfIndex InterfaceIndex,
hh3cPortalIfVlanNasIDVlanID Integer32,
hh3cPortalIfVlanNasIDNasID OCTET STRING
}
hh3cPortalIfVlanNasIDIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"It is the index of the table of hh3cPortalIfVlanNasIDTable, it shows
the interface on which portal has been enabled."
::={ hh3cPortalIfVlanNasIDEntry 1 }
hh3cPortalIfVlanNasIDVlanID OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"It is the index of the table of hh3cPortalIfVlanNasIDTable, it shows
the Vlan that the interface belongs to."
::= { hh3cPortalIfVlanNasIDEntry 2 }
hh3cPortalIfVlanNasIDNasID OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It is the NAS ID to which the Vlan is bound to."
::= { hh3cPortalIfVlanNasIDEntry 3 }
--
-- PORTAL SSID Free-rule Config Table
--
hh3cPortalSSIDFreeRuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cPortalSSIDFreeRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table describes SSID portal-free rule(s) allows specified users
to access specified external websites without portal authentication."
::= { hh3cPortalTables 5 }
hh3cPortalSSIDFreeRuleEntry OBJECT-TYPE
SYNTAX Hh3cPortalSSIDFreeRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"There is a row in this table for SSID portal-free rule.
It is indexed using the object Index."
INDEX
{
hh3cPortalSSIDFreeRuleIndex
}
::= { hh3cPortalSSIDFreeRuleTable 1 }
Hh3cPortalSSIDFreeRuleEntry ::= SEQUENCE
{
hh3cPortalSSIDFreeRuleIndex Integer32,
hh3cPortalSSIDFreeRuleSrcSSID OCTET STRING,
hh3cPortalSSIDFreeRuleRowStatus RowStatus,
hh3cPortalSSIDFreeRuleSrcSpot OCTET STRING
}
hh3cPortalSSIDFreeRuleIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"It is the index of the table of hh3cPortalSSIDFreeRuleTable, it shows
the index of the SSID portal-free rule."
::={ hh3cPortalSSIDFreeRuleEntry 1 }
hh3cPortalSSIDFreeRuleSrcSSID OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The SSID match against the packet's source SSID."
::={ hh3cPortalSSIDFreeRuleEntry 2 }
hh3cPortalSSIDFreeRuleRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is responsible for managing the creation, deletion and
modification of rows, which support active status and CreateAndGo,
Destroy operation."
::= { hh3cPortalSSIDFreeRuleEntry 3 }
hh3cPortalSSIDFreeRuleSrcSpot OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..63))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The spot match against the packet's source spot."
::={ hh3cPortalSSIDFreeRuleEntry 4 }
--
-- PORTAL MAC Trigger Server
--
hh3cPortalMacTriggerSrvTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cPortalMacTriggerSrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table describes the configration of MAC Trigger Portal server."
::= { hh3cPortalTables 6 }
hh3cPortalMacTriggerSrvEntry OBJECT-TYPE
SYNTAX Hh3cPortalMacTriggerSrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"There is a row in the table for MAC Trigger Portal server.
It is indexed using the object Index."
INDEX
{
hh3cPortalMacTriggerSrvIndex
}
::= { hh3cPortalMacTriggerSrvTable 1 }
Hh3cPortalMacTriggerSrvEntry ::= SEQUENCE
{
hh3cPortalMacTriggerSrvIndex Integer32,
hh3cPortalMacTriggerSrvIPAddrType InetAddressType,
hh3cPortalMacTriggerSrvIP InetAddress,
hh3cPortalMacTriggerSrvPort Integer32,
hh3cPortalMacTriggerSrvRowStatus RowStatus
}
hh3cPortalMacTriggerSrvIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"It is the index of the table of hh3cPortalMacTriggerSrvTable, it shows
the index of the MAC Trigger Portal server."
::={ hh3cPortalMacTriggerSrvEntry 1 }
hh3cPortalMacTriggerSrvIPAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of MAC Trigger Portal server IP address. While
other types of addresses are defined in the InetAddressType
textual convention, and DNS names, a classifier can only look at
packets on the wire."
::={ hh3cPortalMacTriggerSrvEntry 2 }
hh3cPortalMacTriggerSrvIP OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"It shows the IP address of MAC Trigger Portal server."
::= { hh3cPortalMacTriggerSrvEntry 3 }
hh3cPortalMacTriggerSrvPort OBJECT-TYPE
SYNTAX Integer32 (1..65534)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"It shows the UDP port of MAC Trigger Portal server.
The port will be used when client sends packets to MAC Trigger Portal server.
Default value is 50100."
::= { hh3cPortalMacTriggerSrvEntry 4 }
hh3cPortalMacTriggerSrvRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is responsible for managing the creation, deletion and
modification of rows, which support active status and CreateAndGo,
Destroy operation."
::= { hh3cPortalMacTriggerSrvEntry 5 }
--
-- PORTAL Eanble MAC Trigger on interface
--
hh3cPortalMacTriggerOnIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cPortalMacTriggerOnIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table describes the configration of Portal MAC Trigger on
interface."
::= { hh3cPortalTables 7 }
hh3cPortalMacTriggerOnIfEntry OBJECT-TYPE
SYNTAX Hh3cPortalMacTriggerOnIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"There is a row in the table for Portal MAC Trigger configuration on
interface. It is indexed using the object Index."
INDEX
{
hh3cPortalMacTriggerOnIfIfIndex
}
::= { hh3cPortalMacTriggerOnIfTable 1 }
Hh3cPortalMacTriggerOnIfEntry ::= SEQUENCE
{
hh3cPortalMacTriggerOnIfIfIndex InterfaceIndex,
hh3cPortalMacTriggerOnIfDetctFlowPeriod Integer32,
hh3cPortalMacTriggerOnIfThresholdFlow Unsigned32,
hh3cPortalMacTriggerOnIfRowStatus RowStatus
}
hh3cPortalMacTriggerOnIfIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"It is the interface index and the index of
hh3cPortalMacTriggerOnIfTable."
::={ hh3cPortalMacTriggerOnIfEntry 1 }
hh3cPortalMacTriggerOnIfDetctFlowPeriod OBJECT-TYPE
SYNTAX Integer32
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"It shows the user flow detection interval (in seconds) when
MAC Trigger and Portal are enabled.
Default value is 300."
DEFVAL { 300 }
::={ hh3cPortalMacTriggerOnIfEntry 2 }
hh3cPortalMacTriggerOnIfThresholdFlow OBJECT-TYPE
SYNTAX Unsigned32
UNITS "bytes"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"It shows the user traffic threshold (in bytes) that triggers authentication
when MAC Trigger and Portal are enabled.
Default value is 0."
DEFVAL { 0 }
::={ hh3cPortalMacTriggerOnIfEntry 3 }
hh3cPortalMacTriggerOnIfRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is responsible for managing the creation, deletion and
modification of rows, which support active status and CreateAndGo,
Destroy operation."
::= { hh3cPortalMacTriggerOnIfEntry 4 }
--
-- PORTAL Free-rule Config Table
--
hh3cPortalFreeRuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cPortalFreeRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table describes portal-free rule(s) allows specified users to
access specified external websites without portal authentication."
::= { hh3cPortalTables 8 }
hh3cPortalFreeRuleEntry OBJECT-TYPE
SYNTAX Hh3cPortalFreeRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"There is a row in this table for portal-free rule.
It is indexed using the object Index."
INDEX
{
hh3cPortalFreeRuleIndex
}
::= { hh3cPortalFreeRuleTable 1 }
Hh3cPortalFreeRuleEntry ::= SEQUENCE
{
hh3cPortalFreeRuleIndex Integer32,
hh3cPortalFreeRuleSrcIfIndex InterfaceIndex,
hh3cPortalFreeRuleSrcVlanID Integer32,
hh3cPortalFreeRuleSrcMac MacAddress,
hh3cPortalFreeRuleAddrType InetAddressType,
hh3cPortalFreeRuleSrcAddr InetAddress,
hh3cPortalFreeRuleSrcPrefix InetAddressPrefixLength,
hh3cPortalFreeRuleDstAddr InetAddress,
hh3cPortalFreeRuleDstPrefix InetAddressPrefixLength,
hh3cPortalFreeRuleProtocol INTEGER,
hh3cPortalFreeRuleSrcPort Integer32,
hh3cPortalFreeRuleDstPort Integer32,
hh3cPortalFreeRuleRowStatus RowStatus
}
hh3cPortalFreeRuleIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"It is the index of the table of hh3cPortalFreeRuleTable, it shows
the index of the portal-free rule."
::={ hh3cPortalFreeRuleEntry 1 }
hh3cPortalFreeRuleSrcIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The index of source interface."
::={ hh3cPortalFreeRuleEntry 2 }
hh3cPortalFreeRuleSrcVlanID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The identification of source vlan."
::={ hh3cPortalFreeRuleEntry 3 }
hh3cPortalFreeRuleSrcMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The MAC address to match against the packet's source MAC address."
::={ hh3cPortalFreeRuleEntry 4 }
hh3cPortalFreeRuleAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of IP address used by this classifier entry. While
other types of addresses are defined in the InetAddressType
textual convention, and DNS names, a classifier can only look at
packets on the wire."
::={ hh3cPortalFreeRuleEntry 5 }
hh3cPortalFreeRuleSrcAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IP address to match against the packet's source IP
address. This may be a DNS name or an IPv4 or IPv6
prefix. hh3cPortalFreeRuleSrcPrefix indicates the
number of bits that are relevant."
::={ hh3cPortalFreeRuleEntry 6 }
hh3cPortalFreeRuleSrcPrefix OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The length of the CIDR Prefix carried in
hh3cPortalFreeRuleSrcAddr. In IPv4 addresses, a length of 0
indicates a match of any address; a length of 32 indicates a
match of a single host address, and a length between 0 and 32
indicates the use of a CIDR Prefix. IPv6 is similar, except that
prefix lengths range from 0..128."
::={ hh3cPortalFreeRuleEntry 7 }
hh3cPortalFreeRuleDstAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IP address to match against the packet's destination IP
address. This may be a DNS name or an IPv4 or IPv6
prefix. hh3cPortalFreeRuleDstPrefix indicates the
number of bits that are relevant."
::={ hh3cPortalFreeRuleEntry 8 }
hh3cPortalFreeRuleDstPrefix OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The length of the CIDR Prefix carried in
hh3cPortalFreeRuleDstAddr. In IPv4 addresses, a length of 0
indicates a match of any address; a length of 32 indicates a
match of a single host address, and a length between 0 and 32
indicates the use of a CIDR Prefix. IPv6 is similar, except that
prefix lengths range from 0..128."
::={ hh3cPortalFreeRuleEntry 9 }
hh3cPortalFreeRuleProtocol OBJECT-TYPE
SYNTAX INTEGER
{
invalid(0),
tcp(6),
udp(17)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The protocol-type of port."
::={ hh3cPortalFreeRuleEntry 10 }
hh3cPortalFreeRuleSrcPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The source port allows users to access."
::={ hh3cPortalFreeRuleEntry 11 }
hh3cPortalFreeRuleDstPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The destination port allows users to access."
::={ hh3cPortalFreeRuleEntry 12 }
hh3cPortalFreeRuleRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is responsible for managing the creation, deletion and
modification of rows, which support active status and CreateAndGo,
Destroy operation."
::= { hh3cPortalFreeRuleEntry 13 }
--
-- PORTAL Forbidden-rule Config Table
--
hh3cPortalForbiddenRuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cPortalForbiddenRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table describes a portal-forbidden rule does not allow specified
users to access specified external websites."
::= { hh3cPortalTables 9 }
hh3cPortalForbiddenRuleEntry OBJECT-TYPE
SYNTAX Hh3cPortalForbiddenRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"There is a row in this table for portal-forbidden rule.
It is indexed using the object Index."
INDEX
{
hh3cPortalForbiddenRuleIndex
}
::= { hh3cPortalForbiddenRuleTable 1 }
Hh3cPortalForbiddenRuleEntry ::= SEQUENCE
{
hh3cPortalForbiddenRuleIndex Integer32,
hh3cPortalForbiddenRuleSrcIfIndex InterfaceIndex,
hh3cPortalForbiddenRuleSrcVlanID Integer32,
hh3cPortalForbiddenRuleSrcMac MacAddress,
hh3cPortalForbiddenRuleAddrType InetAddressType,
hh3cPortalForbiddenRuleSrcAddr InetAddress,
hh3cPortalForbiddenRuleSrcPrefix InetAddressPrefixLength,
hh3cPortalForbiddenRuleDstAddr InetAddress,
hh3cPortalForbiddenRuleDstPrefix InetAddressPrefixLength,
hh3cPortalForbiddenRuleProtocol INTEGER,
hh3cPortalForbiddenRuleSrcPort Integer32,
hh3cPortalForbiddenRuleDstPort Integer32,
hh3cPortalForbiddenRuleRowStatus RowStatus,
hh3cPortalForbiddenRuleSsidName OCTET STRING
}
hh3cPortalForbiddenRuleIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"It is the index of the table of hh3cPortalForbiddenRuleTable, it shows
the index of the portal-forbidden rule."
::={ hh3cPortalForbiddenRuleEntry 1 }
hh3cPortalForbiddenRuleSrcIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The index of source interface."
::={ hh3cPortalForbiddenRuleEntry 2 }
hh3cPortalForbiddenRuleSrcVlanID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The identification of source vlan."
::={ hh3cPortalForbiddenRuleEntry 3 }
hh3cPortalForbiddenRuleSrcMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The MAC address to match against the packet's source MAC address."
::={ hh3cPortalForbiddenRuleEntry 4 }
hh3cPortalForbiddenRuleAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of IP address used by this classifier entry. While
other types of addresses are defined in the InetAddressType
textual convention, and DNS names, a classifier can only look at
packets on the wire."
::={ hh3cPortalForbiddenRuleEntry 5 }
hh3cPortalForbiddenRuleSrcAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IP address to match against the packet's source IP
address. This may be a DNS name or an IPv4 or IPv6
prefix. hh3cPortalForbiddenRuleSrcPrefix indicates the
number of bits that are relevant."
::={ hh3cPortalForbiddenRuleEntry 6 }
hh3cPortalForbiddenRuleSrcPrefix OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The length of the CIDR Prefix carried in
hh3cPortalFreeRuleSrcAddr. In IPv4 addresses, a length of 0
indicates a match of any address; a length of 32 indicates a
match of a single host address, and a length between 0 and 32
indicates the use of a CIDR Prefix. IPv6 is similar, except that
prefix lengths range from 0..128."
::={ hh3cPortalForbiddenRuleEntry 7 }
hh3cPortalForbiddenRuleDstAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IP address to match against the packet's destination IP
address. This may be a DNS name or an IPv4 or IPv6
prefix. hh3cPortalForbiddenRuleDstPrefix indicates the
number of bits that are relevant."
::={ hh3cPortalForbiddenRuleEntry 8 }
hh3cPortalForbiddenRuleDstPrefix OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The length of the CIDR Prefix carried in
hh3cPortalFreeRuleDstAddr. In IPv4 addresses, a length of 0
indicates a match of any address; a length of 32 indicates a
match of a single host address, and a length between 0 and 32
indicates the use of a CIDR Prefix. IPv6 is similar, except that
prefix lengths range from 0..128."
::={ hh3cPortalForbiddenRuleEntry 9 }
hh3cPortalForbiddenRuleProtocol OBJECT-TYPE
SYNTAX INTEGER
{
invalid(0),
tcp(6),
udp(17)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The protocol-type of port."
::={ hh3cPortalForbiddenRuleEntry 10 }
hh3cPortalForbiddenRuleSrcPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The source port does not allow users to access."
::={ hh3cPortalForbiddenRuleEntry 11 }
hh3cPortalForbiddenRuleDstPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The destination port does not allow users to access."
::={ hh3cPortalForbiddenRuleEntry 12 }
hh3cPortalForbiddenRuleRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is responsible for managing the creation, deletion and
modification of rows, which support active status and CreateAndGo,
Destroy operation."
::= { hh3cPortalForbiddenRuleEntry 13 }
hh3cPortalForbiddenRuleSsidName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to match packet's source SSID."
::= { hh3cPortalForbiddenRuleEntry 14 }
--
-- Define the portal Traps.
--
hh3cPortalTraps OBJECT IDENTIFIER ::= { hh3cPortal 3 }
hh3cPortalTrapPrefix OBJECT IDENTIFIER ::= { hh3cPortalTraps 0 }
hh3cPortalServerLost NOTIFICATION-TYPE
OBJECTS
{
hh3cPortalServerName,
hh3cPortalFirstTrapTime,
hh3cPortalServerIP,
hh3cPortalServerPort
}
STATUS current
DESCRIPTION
"This trap is generated when the device finds that the portal server
is unreachable, the portal server's name is hh3cPortalServerName, and
the portal server's IP is hh3cPortalServerIP, and the portal server's
port is hh3cPortalServerPort, and the portal server has been enabled."
::= { hh3cPortalTrapPrefix 1 }
hh3cPortalServerGet NOTIFICATION-TYPE
OBJECTS
{
hh3cPortalServerName,
hh3cPortalFirstTrapTime,
hh3cPortalServerIP,
hh3cPortalServerPort
}
STATUS current
DESCRIPTION
"This trap is generated when the device finds that the state of portal
server changes from unreachable state to reachable,
the portal server's name is hh3cPortalServerName, and the portal server's
IP is hh3cPortalServerIP, and the portal server's port is hh3cPortalServerPort,
and the portal server has been enabled."
::= { hh3cPortalTrapPrefix 2 }
hh3cPortalTrapVarObjects OBJECT IDENTIFIER ::= { hh3cPortalTraps 1 }
hh3cPortalFirstTrapTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Represents the first trap time."
::= { hh3cPortalTrapVarObjects 1 }
hh3cPortalServerIP OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The portal server's IP."
::= { hh3cPortalTrapVarObjects 2 }
-- PORTAL STATISTIC
hh3cPortalStatistic OBJECT IDENTIFIER ::= { hh3cPortal 4 }
-- PORTAL AUTH REQ STATISTIC
hh3cPortalStatAuthReq OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the total number of portal authentication requests from the
portal server."
::= { hh3cPortalStatistic 1 }
-- PORTAL ACK LOGOUT STATISTIC
hh3cPortalStatAckLogout OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the number of logout requests from the portal server."
::= { hh3cPortalStatistic 2 }
-- PORTAL NOTIFY LOGOUT STATISTIC
hh3cPortalStatNotifyLogout OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the number of logout requests from the access device."
::= { hh3cPortalStatistic 3 }
-- PORTAL CHALLENGE TIMEOUT STATISTIC
hh3cPortalStatChallengeTimeout OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the number of challenge from the portal server without
response."
::= { hh3cPortalStatistic 4 }
-- PORTAL CHALLENGE BUSY STATISTIC
hh3cPortalStatChallengeBusy OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the number of device-busy responses for challenges from
the portal server."
::= { hh3cPortalStatistic 5 }
-- PORTAL CHALLENGE FAIL STATISTIC
hh3cPortalStatChallengeFail OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the number of challenges from the portal server with
failure response."
::= { hh3cPortalStatistic 6 }
-- PORTAL authenticate TIMEOUT STATISTIC
hh3cPortalStatAuthTimeout OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the number of authentication requests from the portal
server without responses."
::= { hh3cPortalStatistic 7 }
-- PORTAL authenticate FAIL STATISTIC
hh3cPortalStatAuthFail OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the number of authentication requests from the portal
server with failure responses."
::= { hh3cPortalStatistic 8 }
-- PORTAL PASSWORD ERROR STATISTIC
hh3cPortalStatPwdError OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the number of password errors."
::= { hh3cPortalStatistic 9 }
-- PORTAL authenticate BUSY STATISTIC
hh3cPortalStatAuthBusy OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the number of device-busy responses to authentication
requests from the portal server."
::= { hh3cPortalStatistic 10 }
-- PORTAL authenticate DISORDER STATISTIC
hh3cPortalStatAuthDisordered OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the number of disordered authentication packets from
the portal server."
::= { hh3cPortalStatistic 11 }
-- PORTAL authenticate UNKNOWN ERROR STATISTIC
hh3cPortalStatAuthUnknownError OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the number of unknown errors."
::= { hh3cPortalStatistic 12 }
-- PORTAL authenticate response STATISTIC
hh3cPortalStatAuthResp OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the number of authentication response messages
which are sent by device to portal server."
::= { hh3cPortalStatistic 13 }
-- PORTAL authenticate challenge request STATISTIC
hh3cPortalStatChallengeReq OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the number of challenge request messages
which are sent by portal server to device."
::= { hh3cPortalStatistic 14 }
-- PORTAL authenticate challenge response STATISTIC
hh3cPortalStatChallengeResp OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the number of challenge response messages
which are sent by device to portal server."
::= { hh3cPortalStatistic 15 }
-- PORTAL http request statistic
hh3cPortalStatHttpReq OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the number of http request messages
which are sent by portal user to device."
::= { hh3cPortalStatistic 16 }
-- PORTAL http response statistic
hh3cPortalStatHttpResp OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the number of http response messages
which are sent by device to portal user."
::= { hh3cPortalStatistic 17 }
-- PORTAL HTTPS request statistic
hh3cPortalStatHttpsReq OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the number of HTTPS request messages
sent from portal users to the device."
::= { hh3cPortalStatistic 18 }
-- PORTAL HTTPS response statistic
hh3cPortalStatHttpsResp OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the number of HTTPS response messages
sent from the device to portal users."
::= { hh3cPortalStatistic 19 }
-- PORTAL PACKET STATISTIC BY ERROR CODE
hh3cPortalPktStatistic OBJECT IDENTIFIER ::= { hh3cPortal 5 }
-- PORTAL REQ AUTH STATISTIC
hh3cPortalPktStaReqAuthNum OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the total number of portal authentication requests from the
portal server."
::= { hh3cPortalPktStatistic 1 }
hh3cPortalPktStaAckAuthSuccess OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the total number of the response to REQ-AUTH packet of
portal server including error code 0 in the packet, that is
authentication success."
::= { hh3cPortalPktStatistic 2 }
hh3cPortalPktStaAckAuthReject OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the total number of the response to REQ-AUTH packet of
portal server including error code 1 in the packet, that is rejected
by server."
::= { hh3cPortalPktStatistic 3 }
hh3cPortalPktStaAckAuthEstablish OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the total number of the response to REQ-AUTH packet of
portal server including error code 2 in the packet, that is the link
is already established."
::= { hh3cPortalPktStatistic 4 }
hh3cPortalPktStaAckAuthBusy OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the total number of the response to REQ-AUTH packet of
portal server including error code 3 in the packet, that is the
system is busy."
::= { hh3cPortalPktStatistic 5 }
hh3cPortalPktStaAckAuthAuthFail OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the total number of the response to REQ-AUTH packet of
portal server including error code 4 in the packet, that is
authentication fail."
::= { hh3cPortalPktStatistic 6 }
hh3cPortalPktStaReqChallengeNum OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the total number of portal challenge requests from the
portal server."
::= { hh3cPortalPktStatistic 7 }
hh3cPortalPktStaAckChallengeSuccess OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the total number of the response to challenge packet of
portal server including error code 0 in the packet, that is
challenge is success."
::= { hh3cPortalPktStatistic 8 }
hh3cPortalPktStaAckChallengeReject OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the total number of the response to challenge packet of
portal server including error code 1 in the packet, that is
challenge is rejected by server."
::= { hh3cPortalPktStatistic 9 }
hh3cPortalPktStaAckChallengeEstablish OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the total number of the response to challenge packet of
portal server including error code 2 in the packet, that is the
link is alreadys established."
::= { hh3cPortalPktStatistic 10 }
hh3cPortalPktStaAckChallengeBusy OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the total number of the response to challenge packet of
portal server including error code 3 in the packet, that is the
system is busy."
::= { hh3cPortalPktStatistic 11 }
hh3cPortalPktStaAckChallengeAuthFail OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the total number of the response to challenge packet of
portal server including error code 4 in the packet, that is
authentication fail."
::= { hh3cPortalPktStatistic 12 }
hh3cPortalExtConfig OBJECT IDENTIFIER ::= { hh3cPortal 6 }
--
-- PORTAL MAX USER NUMBER
--
hh3cPortalExtMaxUserNumber OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify the maximum number of online users."
::= { hh3cPortalExtConfig 1 }
--
-- PORTAL CURRENT USER NUMBER
--
hh3cPortalExtCurrentUserNumber OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of online portal users."
::= { hh3cPortalExtConfig 2 }
--
-- PORTAL STATUS
--
hh3cPortalExtStatus OBJECT-TYPE
SYNTAX INTEGER
{
enabled(1),
disabled(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It indicates the portal status.
enabled:
Portal is enabled on one or more interfaces.
disabled:
Portal is not enabled on any interface."
::= { hh3cPortalExtConfig 3 }
hh3cPortalExtTables OBJECT IDENTIFIER ::= { hh3cPortal 7 }
--
-- PORTAL server table
--
hh3cPortalExtSrvTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cPortalExtSrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines the name of the portal server. It can be created
and destroyed by MIB."
::= { hh3cPortalExtTables 1 }
hh3cPortalExtSrvEntry OBJECT-TYPE
SYNTAX Hh3cPortalExtSrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"There is a row in this table for each name and URL of the portal server.
It is indexed by using the object hh3cPortalExtSrvName."
INDEX
{
hh3cPortalExtSrvName
}
::= { hh3cPortalExtSrvTable 1 }
Hh3cPortalExtSrvEntry ::= SEQUENCE
{
hh3cPortalExtSrvName OCTET STRING,
hh3cPortalExtSrvIPAddrType InetAddressType,
hh3cPortalExtSrvIP InetAddress,
hh3cPortalExtSrvPort Integer32,
hh3cPortalExtSrvRowStatus RowStatus
}
hh3cPortalExtSrvName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"It is the index of the table hh3cPortalExtSrvTable. It shows
the name of the portal server."
::= { hh3cPortalExtSrvEntry 1 }
hh3cPortalExtSrvIPAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of the portal server IP address."
::={ hh3cPortalExtSrvEntry 2 }
hh3cPortalExtSrvIP OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"It shows the IP address of the portal server."
::= { hh3cPortalExtSrvEntry 3 }
hh3cPortalExtSrvPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It shows the UDP port of the portal server.
The port will be used when clients send packets to the portal server.
Default value is 50100.
It is not configurable when the portal server has been enabled."
::= { hh3cPortalExtSrvEntry 4 }
hh3cPortalExtSrvRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is responsible for managing the creation, deletion and
modification of rows, which support active status and CreateAndGo and
Destroy operations. To create a new row, the portal server must be
specified.
To destroy an existing row, the portal server MUST NOT be referenced by
an interface."
::= { hh3cPortalExtSrvEntry 5 }
--
-- PORTAL web server table
--
hh3cPortalExtWebSrvTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cPortalExtWebSrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines the name of the portal Web server. It can be created
and destroyed by MIB."
::= { hh3cPortalExtTables 2 }
hh3cPortalExtWebSrvEntry OBJECT-TYPE
SYNTAX Hh3cPortalExtWebSrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"There is a row in this table for each name and portal Web server.
It is indexed by using the object hh3cPortalExtWebSrvName."
INDEX
{
hh3cPortalExtWebSrvName
}
::= { hh3cPortalExtWebSrvTable 1 }
Hh3cPortalExtWebSrvEntry ::= SEQUENCE
{
hh3cPortalExtWebSrvName OCTET STRING,
hh3cPortalExtWebSrvUrl OCTET STRING,
hh3cPortalExtWebSrvRowStatus RowStatus
}
hh3cPortalExtWebSrvName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"It is the index of the table hh3cPortalExtWebSrvTable. It shows
the name of the portal Web server."
::= { hh3cPortalExtWebSrvEntry 1 }
hh3cPortalExtWebSrvUrl OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"It shows the URL to the portal Web server.
Users which have not logged on to portal will be redirected to the
portal server according to hh3cPortalServerIfUrl.
The value is consisted of protocol, IP address and relative path.
For example: http://10.1.1.1/portal."
::= { hh3cPortalExtWebSrvEntry 2 }
hh3cPortalExtWebSrvRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is responsible for managing the creation, deletion and
modification of rows, which support active status and CreateAndGo and
Destroy operations. To create a new row, the portal server must be specified.
To destroy an existing row, the portal Web server MUST NOT be referenced by an
interface."
::= { hh3cPortalExtWebSrvEntry 3 }
hh3cPortalExtMTSrvTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cPortalExtMTSrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table describes the configuration of the MAC Trigger server."
::= { hh3cPortalExtTables 3 }
hh3cPortalExtMTSrvEntry OBJECT-TYPE
SYNTAX Hh3cPortalExtMTSrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"There is a row in the table for the MAC Trigger server. It is indexed by using the object Index."
INDEX
{
hh3cPortalExtMTSrvName
}
::= { hh3cPortalExtMTSrvTable 1 }
Hh3cPortalExtMTSrvEntry ::= SEQUENCE
{
hh3cPortalExtMTSrvName OCTET STRING,
hh3cPortalExtMTSrvIPAddrType InetAddressType,
hh3cPortalExtMTSrvIP InetAddress,
hh3cPortalExtMTSrvPort Integer32,
hh3cPortalExtMTDetctFlowPeriod Integer32,
hh3cPortalExtMTThresholdFlow Unsigned32,
hh3cPortalExtMTSrvRowStatus RowStatus
}
hh3cPortalExtMTSrvName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"It is the index of the table hh3cPortalExtMTSrvTable. It shows
the name of the MAC Trigger server."
::= { hh3cPortalExtMTSrvEntry 1 }
hh3cPortalExtMTSrvIPAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of the MAC Trigger server IP address."
::={ hh3cPortalExtMTSrvEntry 2 }
hh3cPortalExtMTSrvIP OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"It shows the IP address of the MAC Trigger server."
::= { hh3cPortalExtMTSrvEntry 3 }
hh3cPortalExtMTSrvPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"It shows the UDP port of the MAC Trigger server.
The port will be used when clients send packets to the MAC Trigger server.
Default value is 50100."
DEFVAL { 50100 }
::= { hh3cPortalExtMTSrvEntry 4 }
hh3cPortalExtMTDetctFlowPeriod OBJECT-TYPE
SYNTAX Integer32
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"It shows the user flow detection interval (in seconds) when
MAC Trigger and Portal are enabled.
Default value is 300."
DEFVAL { 300 }
::= { hh3cPortalExtMTSrvEntry 5 }
hh3cPortalExtMTThresholdFlow OBJECT-TYPE
SYNTAX Unsigned32
UNITS "bytes"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"It shows the user traffic threshold (in bytes) that triggers authentication
when MAC Trigger and Portal are enabled.
Default value is 0."
DEFVAL { 0 }
::= { hh3cPortalExtMTSrvEntry 6 }
hh3cPortalExtMTSrvRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is responsible for managing the creation, deletion and
modification of rows, which support active status and CreateAndGo and
Destroy operations."
::= { hh3cPortalExtMTSrvEntry 7 }
--
-- PORTAL extend if table
--
hh3cPortalExtIfConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cPortalExtIfConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table describes portal information on interfaces."
::= { hh3cPortalExtTables 4 }
hh3cPortalExtIfConfigEntry OBJECT-TYPE
SYNTAX Hh3cPortalExtIfConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"There is a row in this table for an interface on which
portal has been enabled.
It is indexed by using the object ifIndex."
INDEX
{
hh3cPortalExtIfIndex
}
::= { hh3cPortalExtIfConfigTable 1 }
Hh3cPortalExtIfConfigEntry ::= SEQUENCE
{
hh3cPortalExtIfIndex InterfaceIndex,
hh3cPortalExtIfWebSrvName OCTET STRING,
hh3cPortalExtIfDomainName OCTET STRING,
hh3cPortalExtIfAuthMethod Hh3cPortalAuthMethod,
hh3cPortalExtIfMTSrvName OCTET STRING,
hh3cPortalExtIfMaxUser Unsigned32
}
hh3cPortalExtIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"It is the interface index and the index of hh3cPortalExtIfConfigTable."
::= { hh3cPortalExtIfConfigEntry 1 }
hh3cPortalExtIfWebSrvName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Portal Web server name must exist. It references
hh3cPortalExtWebSrvName."
::= { hh3cPortalExtIfConfigEntry 2 }
hh3cPortalExtIfDomainName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Authentication domain."
::= { hh3cPortalExtIfConfigEntry 3 }
hh3cPortalExtIfAuthMethod OBJECT-TYPE
SYNTAX Hh3cPortalAuthMethod
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify the portal authentication method."
::= { hh3cPortalExtIfConfigEntry 4 }
hh3cPortalExtIfMTSrvName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The MAC trigger server name must exist. It references hh3cPortalExtMTSrvName."
::= { hh3cPortalExtIfConfigEntry 5 }
hh3cPortalExtIfMaxUser OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum number of portal users."
::= { hh3cPortalExtIfConfigEntry 6 }
hh3cPortalExtIfIpv6ConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cPortalExtIfIpv6ConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table describes IPv6 portal information on interfaces."
::= { hh3cPortalExtTables 5 }
hh3cPortalExtIfIpv6ConfigEntry OBJECT-TYPE
SYNTAX Hh3cPortalExtIfIpv6ConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"There is a row in this table for an interface on which
IPv6 portal has been enabled.
It is indexed by using the object ifIndex."
INDEX
{
hh3cPortalExtIfIpv6Index
}
::= { hh3cPortalExtIfIpv6ConfigTable 1 }
Hh3cPortalExtIfIpv6ConfigEntry ::= SEQUENCE
{
hh3cPortalExtIfIpv6Index InterfaceIndex,
hh3cPortalExtIfIpv6WebSrvName OCTET STRING,
hh3cPortalExtIfIpv6DomainName OCTET STRING,
hh3cPortalExtIfIpv6AuthMethod Hh3cPortalAuthMethod,
hh3cPortalExtIfIpv6MaxUser Unsigned32
}
hh3cPortalExtIfIpv6Index OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"It is the interface index and the index of hh3cPortalExtIfIpv6ConfigTable."
::= { hh3cPortalExtIfIpv6ConfigEntry 1 }
hh3cPortalExtIfIpv6WebSrvName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Portal Web server name must exist. It references hh3cPortalExtWebSrvName."
::= { hh3cPortalExtIfIpv6ConfigEntry 2 }
hh3cPortalExtIfIpv6DomainName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Authentication domain."
::= { hh3cPortalExtIfIpv6ConfigEntry 3 }
hh3cPortalExtIfIpv6AuthMethod OBJECT-TYPE
SYNTAX Hh3cPortalAuthMethod
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify the portal authentication method."
::= { hh3cPortalExtIfIpv6ConfigEntry 4 }
hh3cPortalExtIfIpv6MaxUser OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum number of IPv6 portal users."
::= { hh3cPortalExtIfIpv6ConfigEntry 5 }
--
-- PORTAL dot11 configuration table
--
hh3cPortalDot11SrvTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cPortalDot11SrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table describes the portal information on service templates."
::= { hh3cPortalExtTables 6 }
hh3cPortalDot11SrvEntry OBJECT-TYPE
SYNTAX Hh3cPortalDot11SrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"There is a row in this table for a service template on which
portal has been enabled.
It is indexed by using the object wlan service-template name."
INDEX
{
hh3cPortalDot11SrvTemName
}
::= { hh3cPortalDot11SrvTable 1 }
Hh3cPortalDot11SrvEntry ::= SEQUENCE
{
hh3cPortalDot11SrvTemName OCTET STRING,
hh3cPortalDot11WebSrvName OCTET STRING,
hh3cPortalDot11DomainName OCTET STRING,
hh3cPortalDot11AuthMethod Hh3cPortalAuthMethod,
hh3cPortalDot11MTSrvName OCTET STRING,
hh3cPortalDot11MaxUser Unsigned32
}
hh3cPortalDot11SrvTemName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..63))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"It is the index of the table hh3cPortalDot11SrvTable, it shows
the name of the wlan service-template."
::= { hh3cPortalDot11SrvEntry 1 }
hh3cPortalDot11WebSrvName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It shows portal web-server name."
::= { hh3cPortalDot11SrvEntry 2 }
hh3cPortalDot11DomainName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It shows portal authentication domain name."
::= { hh3cPortalDot11SrvEntry 3 }
hh3cPortalDot11AuthMethod OBJECT-TYPE
SYNTAX Hh3cPortalAuthMethod
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify the portal authentication method on service templates."
::= { hh3cPortalDot11SrvEntry 4 }
hh3cPortalDot11MTSrvName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The MAC trigger server name must exist. It references hh3cPortalExtMTSrvName."
::= { hh3cPortalDot11SrvEntry 5 }
hh3cPortalDot11MaxUser OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum number of portal users."
::= { hh3cPortalDot11SrvEntry 6 }
hh3cPortalDot11Ipv6SrvTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cPortalDot11Ipv6SrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table describes IPv6 portal information on service templates."
::= { hh3cPortalExtTables 7 }
hh3cPortalDot11Ipv6SrvEntry OBJECT-TYPE
SYNTAX Hh3cPortalDot11Ipv6SrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"There is a row in this table for a service template on which
IPv6 portal has been enabled.
It is indexed by using the object wlan service-template name."
INDEX
{
hh3cPortalDot11Ipv6SrvTemName
}
::= { hh3cPortalDot11Ipv6SrvTable 1 }
Hh3cPortalDot11Ipv6SrvEntry ::= SEQUENCE
{
hh3cPortalDot11Ipv6SrvTemName OCTET STRING,
hh3cPortalDot11Ipv6WebSrvName OCTET STRING,
hh3cPortalDot11Ipv6DomainName OCTET STRING,
hh3cPortalDot11Ipv6AuthMethod Hh3cPortalAuthMethod,
hh3cPortalDot11Ipv6MaxUser Unsigned32
}
hh3cPortalDot11Ipv6SrvTemName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..63))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"It is the index of the table hh3cPortalDot11Ipv6SrvTable. It shows
the name of the IPv6 portal server."
::= { hh3cPortalDot11Ipv6SrvEntry 1 }
hh3cPortalDot11Ipv6WebSrvName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It shows the IPv6 portal Web server name."
::= { hh3cPortalDot11Ipv6SrvEntry 2 }
hh3cPortalDot11Ipv6DomainName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IPv6 portal authentication domain name."
::= { hh3cPortalDot11Ipv6SrvEntry 3 }
hh3cPortalDot11Ipv6AuthMethod OBJECT-TYPE
SYNTAX Hh3cPortalAuthMethod
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify the IPv6 portal authentication method on service templates."
::= { hh3cPortalDot11Ipv6SrvEntry 4 }
hh3cPortalDot11Ipv6MaxUser OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum number of IPv6 portal users."
::= { hh3cPortalDot11Ipv6SrvEntry 5 }
END
|