-
Notifications
You must be signed in to change notification settings - Fork 13
/
dumpdatamodel.txt
7810 lines (7810 loc) · 424 KB
/
dumpdatamodel.txt
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
<InternetGatewayDevice. n="IGD" t="staticObject">
<DeviceSummary ml="1024" rw="R" t="string" v="" />
<LANDeviceNumberOfEntries rw="R" t="unsignedInt" v="" />
<WANDeviceNumberOfEntries rw="R" t="unsignedInt" v="" />
<X_CU_POTSDeviceNumber rw="R" t="unsignedInt" v="" />
<X_ASB_COM_Language ml="8" rw="RW" t="string" v="" />
<X_ASB_COM_PreConfig. n="PreCfg" t="staticObject">
<X_ASB_COM_InformBindEnable dv="true" rw="RW" t="boolean" v="True" />
<X_ASB_COM_ModelnameSuffix ml="64" rw="RW" t="string" v="" />
<X_ASB_COM_PortBindRule dv="1" rw="RW" t="int" v="1" />
<X_ASB_COM_CriticalParaTemp rw="R" t="unsignedInt" v="0" />
<X_ASB_COM_ITMSType rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_SipTypeOpt60Coup dv="false" rw="RW" t="boolean" v="False" />
<X_ASB_COM_SNinOpt60 dv="false" rw="RW" t="boolean" v="False" />
<X_ASB_COM_SSID_2Enabled dv="false" rw="RW" t="boolean" v="False" />
<X_ASB_COM_RegKeyShow dv="false" rw="RW" t="boolean" v="True" />
<X_ASB_COM_Tr069MTU rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_VoipMTU rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_InternetMTU rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_SuperUserName ml="64" rw="RW" t="string" v="" />
<X_ASB_COM_SuperUserPassword ml="64" rw="RW" t="string" v="" />
<X_ASB_COM_AutoLinkDetect dv="false" rw="RW" t="boolean" v="False" />
<X_ASB_COM_NormalUserPermission rw="RW" t="unsignedInt" v="110" />
<X_ASB_COM_AdminUserPermission rw="RW" t="unsignedInt" v="111" />
<X_ASB_COM_STBDetectMethod rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_DNSTransparentEnabled dv="false" rw="RW" t="boolean" v="False" />
<X_ASB_COM_OperatorType rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_ConnectionTrigger ml="64" rw="RW" t="string" v="AlwaysOn" />
<X_ASB_COM_ExternalWebAccess dv="false" rw="RW" t="boolean" v="True" />
<X_ASB_COM_LocalWebAccess dv="true" rw="RW" t="boolean" v="True" />
<X_ASB_COM_WANHeartbeatInterval rw="RW" t="unsignedInt" v="300" />
<X_ASB_COM_LoopDetectInGPONEnable dv="false" rw="RW" t="boolean" v="False" />
<X_ASB_COM_PPPoEAccountMonitor dv="false" rw="RW" t="boolean" v="False" />
<X_ASB_COM_PPPoEInternetBridgeLedMonitor rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_MulticastVLANConfRule rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_PONRegType rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_WlanUserMaximum rw="RW" t="unsignedInt" v="255" />
<X_ASB_COM_InformSTBMAC dv="false" rw="RW" t="boolean" v="False" />
<X_ASB_COM_HybridWANWebEnable dv="false" rw="RW" t="boolean" v="True" />
<X_ASB_COM_PPPoEProxyEnable dv="false" rw="RW" t="boolean" v="False" />
<X_ASB_COM_PONLightActInSilence rw="RW" t="unsignedInt" v="1" />
<X_ASB_COM_GlobalHguDns dv="false" rw="RW" t="boolean" v="False" />
<X_ASB_COM_GlobalPPPConLost dv="false" rw="RW" t="boolean" v="False" />
<X_ASB_COM_GlobalPolicyRouting dv="false" rw="RW" t="boolean" v="False" />
<X_ASB_COM_DHCPCOPTION60 rw="RW" t="unsignedInt" v="2" />
<X_ASB_COM_DHCPRESENDMODE rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_SpeedTestDownloadMode rw="RW" t="unsignedInt" v="1" />
<X_ASB_COM_TCPMSSRules rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_MacFilter rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_DosProtection rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_IpFilter rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_FwLevel rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_PortForwarding rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_DMZ rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_StartIgmpProxyOnInternetWan dv="true" rw="RW" t="boolean" v="True" />
<X_ASB_COM_TransferPPPOEtoIPOEHeader dv="false" rw="RW" t="boolean" v="False" />
<X_ASB_COM_ButtonResetFlag ml="64" rw="RW" t="string" v="" />
<X_ASB_COM_EMFIGSType rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_WlanRegion ml="64" rw="RW" t="string" v="0" />
<X_ASB_COM_KeyParameterEnable rw="RW" t="boolean" v="True" />
<X_ASB_COM_PPPBackOff rw="RW" t="string" ml="128" v="" />
<X_ASB_COM_JsonPltAuthMode rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_EponNodeVisible rw="RW" t="boolean" v="False" />
<X_ASB_COM_LoopDetectMacMigration rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_IgmpAcceptLoacl rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_RTSPMode ml="64" rw="RW" t="string" v="strip" />
<X_ASB_COM_MaxWanNum rw="RW" t="unsignedInt" v="8" />
<X_ASB_COM_ForbidPingOnWan rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_NewCUWeb rw="RW" t="unsignedInt" v="1" />
<X_ASB_COM_SynInternetAndOttAccountPw rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_KeepPPProuteUsrNamePw rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_ReOrderInstanceID rw="RW" t="boolean" v="False" />
<X_ASB_COM_AdditionnalAddWlanPreSharedKey rw="RW" t="boolean" v="False" />
<X_ASB_COM_NeedForcedValueChange rw="RW" t="boolean" v="False" />
<X_ASB_COM_PortalBasedOnInternetService rw="RW" t="boolean" v="False" />
<X_ASB_COM_CalcTimesForWholeRegisterProcess rw="RW" t="boolean" v="False" />
<X_ASB_COM_MutiWanDns rw="RW" t="boolean" v="False" />
<X_ASB_COM_UnityVersionEnable rw="RW" t="boolean" v="False" />
<X_ASB_COM_SyncPOTSInfoEnable rw="RW" t="boolean" v="True" />
<X_ASB_COM_aWiFiEnable rw="RW" t="boolean" v="False" />
<X_ASB_COM_ConvertPonInterfaceToInterafce rw="RW" t="boolean" v="False" />
<X_ASB_COM_KeyParameterMode rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_IptvWanBindPortEnable rw="RW" t="boolean" v="False" />
<X_ASB_COM_MulticastVlanFilterEnable rw="RW" t="boolean" v="False" />
<X_ASB_COM_RegKeyShowOnMain rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_ResetButton. n="ResetButton" t="staticObject">
<X_ASB_COM_Mode ml="64" rw="RW" t="string" v="ResetLongTimeout" />
<X_ASB_COM_ResetTimer rw="RW" t="unsignedInt" v="999" />
<X_ASB_COM_ResetTimerEnd rw="RW" t="unsignedInt" v="999" />
<X_ASB_COM_ShortTimer rw="RW" t="unsignedInt" v="999" />
<X_ASB_COM_ShortTimerEnd rw="RW" t="unsignedInt" v="999" />
<X_ASB_COM_LongTimer rw="RW" t="unsignedInt" v="999" />
<X_ASB_COM_LongTimerEnd rw="RW" t="unsignedInt" v="999" />
</X_ASB_COM_ResetButton.>
<X_ASB_COM_WlanButton. n="WlanButton" t="staticObject">
<X_ASB_COM_WlanTimer rw="RW" t="unsignedInt" v="0" />
</X_ASB_COM_WlanButton.>
<X_ASB_COM_TR069PreConfig. n="TR069PreConfig" t="staticObject">
<X_ASB_COM_ConvertEponLinkConfigToGpon rw="RW" t="boolean" v="false" />
<X_ASB_COM_InformContainYJYXNodes rw="RW" t="boolean" v="false" />
<X_ASB_COM_GetBwTypeEx rw="RW" t="boolean" v="false" />
<X_ASB_COM_DDSampled rw="RW" t="boolean" v="false" />
<X_ASB_COM_NeedUpgradePortal rw="RW" t="boolean" v="false" />
<X_ASB_COM_AddCUBindExEvent rw="RW" t="boolean" v="false" />
<X_ASB_COM_ChangeRegStatusWithoutCheck rw="RW" t="boolean" v="false" />
<X_ASB_COM_NeedActiveRebootForSetParam rw="RW" t="boolean" v="true" />
<X_ASB_COM_WorkSheetContainUpgrade rw="RW" t="boolean" v="false" />
<X_ASB_COM_SendTCBeforeReboot rw="RW" t="boolean" v="false" />
<X_ASB_COM_NeedUpnpModule rw="RW" t="boolean" v="false" />
<X_ASB_COM_Tr69WanStatusChangedNotInform1Boot rw="RW" t="boolean" v="false" />
<X_ASB_COM_AfterRebootAddValueChangeEvent rw="RW" t="boolean" v="false" />
<X_ASB_COM_QoeModuleEnable rw="RW" t="boolean" v="false" />
<X_ASB_COM_BlockRecvDownloadDiagnotics rw="RW" t="boolean" v="false" />
<X_ASB_COM_NeedRefreshInformValueStructNum rw="RW" t="boolean" v="false" />
<X_ASB_COM_NeedForcedValueChange rw="RW" t="boolean" v="false" />
<X_ASB_COM_LOIDRegisterNodeMode rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_CleanBindEnableAfterInform rw="RW" t="boolean" v="false" />
<X_ASB_COM_CheckDownloadImageSize rw="RW" t="unsignedInt" v="1" />
<X_ASB_COM_BootstrapAlwaysbindLoID rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_StbInformLoID rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_StbInformBindwithBoot rw="RW" t="unsignedInt" v="1" />
<X_ASB_COM_SetStatusAndResultOfUserInfoAfterLOIDRegSuccess rw="RW" t="unsignedInt" v="0" />
</X_ASB_COM_TR069PreConfig.>
<X_ASB_COM_NFFFunction. n="NFF" t="staticObject">
<X_ASB_COM_Enable rw="RW" t="boolean" v="true" />
<X_ASB_COM_LogServer ml="32" rw="RW" t="string" v="192.168.1.100" />
<X_ASB_COM_Interval rw="RW" t="unsignedInt" v="1800" />
<X_ASB_COM_LocalPort rw="RW" t="unsignedInt" v="8043" />
<X_ASB_COM_RemotePort rw="RW" t="unsignedInt" v="4200" />
<X_ASB_COM_RemoteDebug rw="RW" t="boolean" v="false" />
</X_ASB_COM_NFFFunction.>
</X_ASB_COM_PreConfig.>
<X_ASB_COM_SpeedTestConfig. n="SpeedTestParm" t="staticObject">
<X_ASB_COM_SpeedTestKoScaleNum rw="RW" t="unsignedInt" v="0" />
</X_ASB_COM_SpeedTestConfig.>
<X_CU_Function. n="CuFunction" t="staticObject">
<X_ASB_COM_Enable rw="RW" t="boolean" v="false" />
<Telnet. n="CuTelnet" t="staticObject">
<Status ml="256" rw="R" t="string" v="" />
</Telnet.>
<RingCheck. n="CuRingCheck" t="staticObject">
<Enable dv="false" rw="RW" t="boolean" v="false" />
<DefaultSpecifidVlan ml="128" rw="RW" t="string" v="" />
<EthType rw="RW" t="unsignedInt" v="33536" />
<PkgPerSec rw="RW" t="unsignedInt" v="5" />
<LoopInterval rw="RW" t="unsignedInt" v="10" />
<RingPortReCheckInterval rw="RW" t="unsignedInt" v="300" />
</RingCheck.>
<Firewall. n="CuFirewall" t="staticObject">
<PacketofAPPFilterEnable dv="true" rw="RW" t="boolean" v="true" />
<PortScanEnable dv="true" rw="RW" t="boolean" v="true" />
<InvalidPacketDenyEnable dv="true" rw="RW" t="boolean" v="true" />
<DoSEnable dv="true" rw="RW" t="boolean" v="true" />
</Firewall.>
<RMS_SpeedTest. n="RMS_SpeedTest" t="staticObject">
<DiagnosticsState ml="32" rw="RW" t="string" v="" />
<testMode ml="32" rw="RW" t="string" v="" />
<downloadURL ml="256" rw="RW" t="string" v="" />
<testURL ml="256" rw="RW" t="string" v="" />
<reportURL ml="256" rw="RW" t="string" v="" />
<Status ml="64" rw="RW" t="string" v="" />
<pppoeIP ml="128" rw="RW" t="string" v="" />
<pppoeName ml="128" rw="RW" t="string" v="" />
<Eupppoename ml="256" rw="RW" t="string" v="" />
<Eupassword ml="256" rw="RW" t="string" v="" />
<WANInterface ml="256" rw="RW" t="string" v="" />
<cspeed ml="32" rw="RW" t="string" v="" />
<aspeed ml="32" rw="RW" t="string" v="" />
<bspeed ml="32" rw="RW" t="string" v="" />
<Cspeed ml="32" rw="RW" t="string" v="" />
<Aspeed ml="32" rw="RW" t="string" v="" />
<Bspeed ml="32" rw="RW" t="string" v="" />
<maxspeed ml="32" rw="RW" t="string" v="" />
<starttime ml="32" rw="RW" t="string" v="" />
<endtime ml="32" rw="RW" t="string" v="" />
<totalsize ml="32" rw="RW" t="string" v="" />
<Totalsize ml="32" rw="RW" t="string" v="" />
<backgroundsize ml="32" rw="RW" t="string" v="" />
<failcode ml="32" rw="RW" t="string" v="" />
<Failcode ml="32" rw="RW" t="string" v="" />
</RMS_SpeedTest.>
<HttpSpeedTest. n="HttpSpeedTest" t="staticObject">
<EnabledForTest dv="false" rw="RW" t="boolean" v="false" />
<TestURL ml="256" rw="R" t="string" v="" />
<Eupppoename ml="256" rw="R" t="string" v="" />
<Eupassword ml="256" rw="R" t="string" v="" />
<WANInterface ml="256" rw="R" t="string" v="" />
</HttpSpeedTest.>
<ServiceMgt. n="CuSrvMgt" t="staticObject">
<MgtURL dv="" ml="256" rw="RW" t="string" v="" />
<MgtPort dv="0" rw="RW" t="unsignedInt" v="0" />
<WANInterface dv="" ml="256" rw="RW" t="string" v="" />
<Hb dv="60" rw="RW" t="unsignedInt" v="60" />
<Ability dv="0" rw="RW" t="unsignedInt" v="0" />
<LocatePort1 dv="17999" rw="RW" t="unsignedInt" v="17999" />
<LocatePort2 dv="17998" rw="RW" t="unsignedInt" v="17998" />
<LocalUserName dv="" ml="16" rw="RW" t="string" v="" />
<LocalUserPassword dv="" ml="32" rw="RW" t="string" v="" />
<LocalAdminName dv="" ml="16" rw="RW" t="string" v="CUAdmin" />
<LocalAdminPassword dv="" ml="32" rw="RW" t="string" v="CUAdmin" />
<Version dv="1.0" ml="16" rw="RW" t="string" v="1.0" />
</ServiceMgt.>
<Web. n="CuWeb" t="staticObject">
<UserWebEnable rw="RW" t="boolean" v="true" />
<AdminWebEnable rw="RW" t="boolean" v="true" />
</Web.>
<Log. n="CUAlarm" t="staticObject">
<X_ASB_COM_Account dv="0" rw="RW" t="unsignedInt" v="0" />
<AlarmEnable rw="RW" t="boolean" v="false" />
<AlarmLevel rw="RW" t="unsignedInt" v="0" />
<AlarmInfo.1. n="CUAlarmInfo" t="dynamicObject" status="deleted">
<AlarmID dv="" rw="R" t="unsignedInt" v="" />
<AlarmCode dv="" rw="R" t="unsignedInt" v="" />
<AlarmStatus dv="" rw="R" t="unsignedInt" v="" />
<PerceivedSeverity dv="" rw="R" t="unsignedInt" v="" />
<AlarmRaisedTime ml="64" rw="R" t="dateTime" v="1970-01-01T00:00:00" />
<AlarmClearedTime ml="64" rw="R" t="dateTime" v="1970-01-01T00:00:00" />
<AlarmDetail dv="" ml="256" rw="R" t="string" v="" />
</AlarmInfo.1.>
</Log.>
<FactoryResetMode. n="CuFtRstMode" t="staticObject">
<Mode rw="RW" t="unsignedInt" v="1" />
</FactoryResetMode.>
<DDNS. n="ddns" t="staticObject">
<Enabled rw="RW" t="boolean" v="false" />
<Provider ml="256" rw="RW" t="string" v="CU" />
<Username ml="256" rw="RW" t="string" v="" />
<Password ml="256" rw="RW" t="string" v="" />
<ServicePort ml="256" rw="RW" t="string" v="80" />
<DomainName ml="256" rw="RW" t="string" v="" />
<HostName ml="256" rw="RW" t="string" v="" />
<WANPath ml="256" rw="RW" t="string" v="" />
</DDNS.>
</X_CU_Function.>
<X_CT-COM_UplinkQoS. n="CtQosUplink" t="staticObject">
<Mode ml="32" rw="RW" t="string" v="TR069,VOIP,IPTV,INTERNET" />
<Enable rw="RW" t="boolean" v="false" />
<Bandwidth rw="RW" t="unsignedInt" v="0" />
<Plan ml="64" rw="RW" t="string" v="priority" />
<EnableForceWeight rw="RW" t="boolean" v="false" />
<EnableDSCPMark rw="RW" t="boolean" v="false" />
<Enable802-1_P rw="RW" t="unsignedInt" v="0" />
<PriorityQueue.1. n="CtQosPriQueue" t="dynamicObject" status="">
<Enable dv="false" rw="RW" t="boolean" v="false" />
<Priority dv="0" rw="RW" t="unsignedInt" v="1" />
<Weight dv="0" rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_Enable dv="false" rw="RW" t="boolean" v="false" />
</PriorityQueue.1.>
<PriorityQueue.2. n="CtQosPriQueue" t="dynamicObject" status="">
<Enable dv="false" rw="RW" t="boolean" v="false" />
<Priority dv="0" rw="RW" t="unsignedInt" v="2" />
<Weight dv="0" rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_Enable dv="false" rw="RW" t="boolean" v="false" />
</PriorityQueue.2.>
<PriorityQueue.3. n="CtQosPriQueue" t="dynamicObject" status="">
<Enable dv="false" rw="RW" t="boolean" v="false" />
<Priority dv="0" rw="RW" t="unsignedInt" v="3" />
<Weight dv="0" rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_Enable dv="false" rw="RW" t="boolean" v="false" />
</PriorityQueue.3.>
<PriorityQueue.4. n="CtQosPriQueue" t="dynamicObject" status="">
<Enable dv="false" rw="RW" t="boolean" v="false" />
<Priority dv="0" rw="RW" t="unsignedInt" v="4" />
<Weight dv="0" rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_Enable dv="false" rw="RW" t="boolean" v="false" />
</PriorityQueue.4.>
<Classification.1. n="CtQosClassification" t="dynamicObject" status="">
<ClassQueue dv="0" rw="RW" t="unsignedInt" v="0" />
<DSCPMarkValue dv="0" rw="RW" t="unsignedInt" v="0" />
<P_802-1_P_Value dv="0" rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_Enable dv="false" rw="RW" t="boolean" v="false" />
<type.1. n="CtQosClassType" t="dynamicObject" status="">
<Type dv="" ml="64" rw="RW" t="string" v="" />
<Max dv="" ml="256" rw="RW" t="string" v="" />
<Min dv="" ml="256" rw="RW" t="string" v="" />
<ProtocolList dv="" ml="256" rw="RW" t="string" v="" />
<X_ASB_COM_ClassKey dv="0" rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_Enable dv="false" rw="RW" t="boolean" v="false" />
</type.1.>
</Classification.1.>
<Classification.2. n="CtQosClassification" t="dynamicObject" status="">
<ClassQueue dv="0" rw="RW" t="unsignedInt" v="0" />
<DSCPMarkValue dv="0" rw="RW" t="unsignedInt" v="0" />
<P_802-1_P_Value dv="0" rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_Enable dv="false" rw="RW" t="boolean" v="false" />
<type.1. n="CtQosClassType" t="dynamicObject" status="">
<Type dv="" ml="64" rw="RW" t="string" v="" />
<Max dv="" ml="256" rw="RW" t="string" v="" />
<Min dv="" ml="256" rw="RW" t="string" v="" />
<ProtocolList dv="" ml="256" rw="RW" t="string" v="" />
<X_ASB_COM_ClassKey dv="0" rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_Enable dv="false" rw="RW" t="boolean" v="false" />
</type.1.>
</Classification.2.>
<Classification.3. n="CtQosClassification" t="dynamicObject" status="">
<ClassQueue dv="0" rw="RW" t="unsignedInt" v="0" />
<DSCPMarkValue dv="0" rw="RW" t="unsignedInt" v="0" />
<P_802-1_P_Value dv="0" rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_Enable dv="false" rw="RW" t="boolean" v="false" />
<type.1. n="CtQosClassType" t="dynamicObject" status="">
<Type dv="" ml="64" rw="RW" t="string" v="" />
<Max dv="" ml="256" rw="RW" t="string" v="" />
<Min dv="" ml="256" rw="RW" t="string" v="" />
<ProtocolList dv="" ml="256" rw="RW" t="string" v="" />
<X_ASB_COM_ClassKey dv="0" rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_Enable dv="false" rw="RW" t="boolean" v="false" />
</type.1.>
</Classification.3.>
<Classification.4. n="CtQosClassification" t="dynamicObject" status="">
<ClassQueue dv="0" rw="RW" t="unsignedInt" v="0" />
<DSCPMarkValue dv="0" rw="RW" t="unsignedInt" v="0" />
<P_802-1_P_Value dv="0" rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_Enable dv="false" rw="RW" t="boolean" v="false" />
<type.1. n="CtQosClassType" t="dynamicObject" status="">
<Type dv="" ml="64" rw="RW" t="string" v="" />
<Max dv="" ml="256" rw="RW" t="string" v="" />
<Min dv="" ml="256" rw="RW" t="string" v="" />
<ProtocolList dv="" ml="256" rw="RW" t="string" v="" />
<X_ASB_COM_ClassKey dv="0" rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_Enable dv="false" rw="RW" t="boolean" v="false" />
</type.1.>
</Classification.4.>
<App.1. n="CtQosApp" t="dynamicObject" status="">
<AppName dv="" ml="32" rw="RW" t="string" v="" />
<ClassQueue dv="0" rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_Enable dv="false" rw="RW" t="boolean" v="false" />
</App.1.>
<App.2. n="CtQosApp" t="dynamicObject" status="">
<AppName dv="" ml="32" rw="RW" t="string" v="" />
<ClassQueue dv="0" rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_Enable dv="false" rw="RW" t="boolean" v="false" />
</App.2.>
</X_CT-COM_UplinkQoS.>
<X_CT-COM_UserInfo. n="UserInfo" t="staticObject">
<UserName ml="64" rw="RW" t="string" v="" />
<UserId ml="64" rw="RW" t="string" v="" />
<AuthStatus rw="RW" t="unsignedInt" v="0" />
<Result rw="RW" t="unsignedInt" v="99" />
<X_ASB_COM_UserName ml="64" rw="RW" t="string" v="" />
<X_ASB_COM_UserId ml="64" rw="RW" t="string" v="" />
<Status rw="RW" t="unsignedInt" v="99" />
<Limit rw="RW" t="unsignedInt" v="10" />
<Times rw="RW" t="unsignedInt" v="0" />
<ServiceNum rw="RW" t="int" v="0" />
<X_ASB_COM_HaveDoneServiceNum rw="RW" t="int" v="0" />
<ServiceName ml="64" rw="RW" t="string" v="" />
<X_ASB_COM_InProcessServiceName ml="64" rw="RW" t="string" v="" />
<X_ASB_COM_SucceededServiceName ml="64" rw="RW" t="string" v="" />
<X_ASB_COM_FailedServiceName ml="64" rw="RW" t="string" v="" />
<ProvisioningCode ml="64" rw="RW" t="string" v="" />
<X_ASB_COM_RegStatus rw="RW" t="unsignedInt" v="0" />
<X_ASB_COM_LoidAuthEnable dv="false" rw="RW" t="boolean" v="false" />
<X_ASB_COM_BindInformed rw="RW" t="unsignedInt" v="0" />
<LoidValidated rw="RW" t="boolean" v="false" />
</X_CT-COM_UserInfo.>
<DeviceInfo. n="IGDDeviceInfo" t="staticObject">
<Manufacturer ml="64" rw="R" t="string" v="NBEL" />
<Manufacturerid ml="64" rw="R" t="string" v="NBEL" />
<ManufacturerOUI ml="8" rw="R" t="string" v="AC9CE4" />
<ModelName ml="64" rw="R" t="string" v="G-140W-C" />
<Description ml="256" rw="R" t="string" v="" />
<ProductClass ml="64" rw="R" t="string" v="G-140W-C" />
<SerialNumber ml="64" rw="R" t="string" v="CB17094FE9DCDF780" />
<HardwareVersion ml="64" rw="R" t="string" v="3FE46330ABAA" />
<SoftwareVersion ml="64" rw="R" t="string" v="3FE46872AFHA82" />
<X_ASB_COM_HardwareVersion ml="64" rw="RW" t="string" v="3FE46330ABAA" />
<X_ASB_COM_ITMSSoftwareVersion ml="64" rw="RW" t="string" v="3FE46872AFHA82" />
<X_ASB_COM_WEBSoftwareVersion ml="64" rw="RW" t="string" v="3FE46872AFHA82" />
<X_ASB_COM_WEBHiddenSoftwareVersion ml="64" rw="RW" t="string" v="3FE46872AFHA82" />
<X_ASB_COM_OLTSoftwareVersion ml="64" rw="RW" t="string" v="3FE46872AFHA82" />
<ModemFirmwareVersion ml="64" rw="R" t="string" v="" />
<EnabledOptions ml="1024" rw="R" t="string" v="" />
<AdditionalHardwareVersion ml="64" rw="R" t="string" v="3FE46330ABAA" />
<AdditionalSoftwareVersion ml="64" rw="R" t="string" v="3FE46872AFHA82" />
<SpecVersion ml="16" rw="R" t="string" v="1.0" />
<ProvisioningCode ml="64" rw="RW" t="string" v="123" />
<UpTime rw="R" t="unsignedInt" v="28" />
<FirstUseDate ml="64" rw="R" t="DateTime" v="0001-01-01T00:00:00Z" />
<X_ASB_COM_NumberOfCpuThreads max="32" min="1" rw="R" t="unsignedInt" v="1" />
<X_ASB_COM_SwBuildTimestamp ml="64" rw="R" t="string" v="" />
<X_ASB_COM_DslPhyDrvVersion ml="64" rw="R" t="string" v="" />
<X_ASB_COM_VoiceServiceVersion ml="64" rw="R" t="string" v="" />
<X_ASB_COM_Chipset ml="64" rw="R" t="string" v="EN7526G" />
<X_ASB_COM_OS ml="64" rw="R" t="string" v="OSGI" />
<X_ASB_COM_OLTVendor ml="64" rw="RW" t="string" v="XXXX" />
<DeviceLog ml="32768" rw="R" t="string" v="" />
<VendorConfigFileNumberOfEntries rw="R" t="unsignedInt" v="0" />
<DeviceType ml="32" rw="RW" t="string" v="4+1 AP" />
<AccessType ml="32" rw="RW" t="string" v="GPON" />
<X_CT-COM_MACAddress ml="32" rw="RW" t="string" v="94:FE:9D:CD:F7:80" />
<X_CT-COM_CardKey ml="20" rw="RW" t="string" v="" />
<X_CT-COM_InterfaceVersion ml="20" rw="R" t="string" v="2271-2013.A.1" />
<X_CT-COM_CardInterVersion ml="20" rw="R" t="string" v="2012SX-053.A" />
<X_CT-COM_DeviceType min="1" max="5" rw="R" t="unsignedInt" v="3" />
<X_CT-COM_Card rw="R" t="boolean" v="False" />
<X_CT-COM_CardFlowFlag min="0" max="2" rw="RW" t="unsignedInt" v="0" />
<X_CT-COM_UPLink min="1" max="7" rw="R" t="unsignedInt" v="5" />
<X_CT-COM_Capability ml="256" rw="R" t="string" v="1;0FE+4GE;2;3;0" />
<X_CT-COM_IPForwardModeEnabled rw="RW" t="boolean" v="False" />
<X_CMCC_CustomiseName ml="64" rw="RW" t="string" v="94FE9DCDF780" />
<X_CMCC_CPUClass ml="64" rw="R" t="string" v="EN7526G" />
<X_CMCC_PONUpTime dv="0" rw="R" t="unsignedInt" v="0" />
<X_CU_BatteryStatus ml="16" rw="R" t="string" v="NA" />
<X_CT-COM_TeleComAccount. n="ctcAccount" t="staticObject">
<Enable rw="RW" t="boolean" v="True" />
<UserName ml="64" rw="RW" t="string" v="admin" />
<Password ml="64" rw="RW" t="string" v="justweb" />
</X_CT-COM_TeleComAccount.>
<X_ASB_COM_AfterMaintance. n="AfterMaintance" t="staticObject">
<Active rw="RW" t="boolean" v="True" />
</X_ASB_COM_AfterMaintance.>
<X_ASB_COM_ResetMethod. n="ResetMethod" t="staticObject">
<RemoteResetMethod ml="64" rw="RW" t="string" v="config" />
<LocalResetMethod ml="64" rw="RW" t="string" v="config" />
</X_ASB_COM_ResetMethod.>
<X_ASB_COM_RegisterURL. n="RegisterURL" t="staticObject">
<Enable rw="RW" t="boolean" v="false" />
<RegisterURL ml="256" rw="RW" t="string" v="" />
</X_ASB_COM_RegisterURL.>
<X_ASB_COM_UplinkDownURL. n="UplinkDownURL" t="staticObject">
<Enable rw="RW" t="boolean" v="false" />
<UplinkDownURL ml="256" rw="RW" t="string" v="" />
</X_ASB_COM_UplinkDownURL.>
<X_CT-COM_OUIinSerial. n="OUIinSerial" t="staticObject">
<Enable rw="RW" t="boolean" v="false" />
</X_CT-COM_OUIinSerial.>
<X_CT-COM_MiddlewareMgt. n="MiddlewareMgt" t="staticObject">
<Tr069Enable max="2" min="0" rw="RW" t="unsignedInt" v="1" />
<MiddlewareURL ml="256" rw="RW" t="string" v="0.0.0.0:0" />
</X_CT-COM_MiddlewareMgt.>
<X_CT-COM_PortalManagement. n="PortalManagement" t="staticObject">
<Enable rw="RW" t="boolean" v="false" />
<PortalUrl-Computer ml="256" rw="RW" t="string" v="http://192.168.1.1/" />
<PortalUrl-STB ml="256" rw="RW" t="string" v="http://192.168.1.1/" />
<PortalUrl-Phone ml="256" rw="RW" t="string" v="http://192.168.1.1/" />
<X_ASB_COM_PortalPort dv="80" rw="RW" t="unsignedInt" v="80" />
</X_CT-COM_PortalManagement.>
<X_CT-COM_Syslog. n="Syslog" t="staticObject">
<Enable rw="RW" t="boolean" v="true" />
<Level rw="RW" t="unsignedInt" v="3" />
<StorageMode ml="64" rw="RW" t="string" v="flash" />
<LogPath ml="256" rw="RW" t="string" v="/var/log/messages" />
<LogFileNum min="1" max="99" rw="RW" t="unsignedInt" v="5" />
<LogSize min="1" max="24080" rw="RW" t="unsignedInt" v="512" />
<ServerIPAddress ml="32" rw="RW" t="string" v="192.168.1.1" />
<ServerPortNumber max="65535" min="0" rw="RW" t="unsignedInt" v="514" />
</X_CT-COM_Syslog.>
<VendorConfigFile.1. n="VendorConfigFile" t="dynamicObject">
<Name dv="" ml="64" rw="R" t="string" v="" />
<Version dv="" ml="16" rw="R" t="string" v="" />
<Date ml="64" dv="" rw="R" t="DateTime" v="" />
<Description dv="" ml="256" rw="R" t="string" v="" />
</VendorConfigFile.1.>
<X_CT-COM_ALGAbility. n="ALGAbility" t="staticObject">
<H323Enable rw="RW" t="boolean" v="true" />
<SIPEnable rw="RW" t="boolean" v="false" />
<RTSPEnable rw="RW" t="boolean" v="true" />
<L2TPEnable rw="RW" t="boolean" v="true" />
<IPSECEnable rw="RW" t="boolean" v="true" />
<FTPEnable rw="RW" t="boolean" v="true" />
<TFTPEnable rw="RW" t="boolean" v="true" />
<PPTPEnable rw="RW" t="boolean" v="true" />
</X_CT-COM_ALGAbility.>
<X_CT-COM_UPNP. n="CtUpnp" t="staticObject">
<Enable rw="RW" t="boolean" v="True" />
<LoggingLevel ml="64" rw="RW" t="string" v="Error" va="LoggingLevelValues" />
<LoggingDestination ml="64" rw="RW" t="string" v="StandardError" va="LoggingDestinationValues" />
</X_CT-COM_UPNP.>
<X_CT-COM_IPProtocolVersion. n="CtIpProCfg" t="staticObject">
<Mode max="3" min="1" rw="RW" t="unsignedInt" v="1" />
</X_CT-COM_IPProtocolVersion.>
<X_CT-COM_ReConnect. n="CT_ReConnect" t="staticObject">
<Enable rw="RW" t="boolean" v="true" />
</X_CT-COM_ReConnect.>
<X_CT-COM_Restore. n="CtUsbRestore" t="staticObject">
<Enable rw="RW" t="boolean" v="false" />
<PartionInfo ml="256" rw="RW" t="string" v="usb1_1" />
</X_CT-COM_Restore.>
<X_CT-COM_ServiceManage. n="CT_ServiceManage" t="staticObject">
<FtpEnable rw="RW" t="boolean" v="False" />
<FtpLanAccessEnable rw="RW" t="boolean" v="False" />
<FtpWanAccessEnable rw="RW" t="boolean" v="False" />
<FtpService rw="RW" t="boolean" v="False" />
<FtpPort max="65535" min="0" rw="RW" t="int" v="21" />
<FtpEnable0 rw="RW" t="boolean" v="True" />
<FtpUserName ml="64" rw="RW" t="string" v="ftpadmin" />
<FtpPassword ml="128" rw="RW" t="string" v="ftpadmin" />
<FtpEnable1 rw="RW" t="boolean" v="False" />
<FtpUserName1 ml="64" rw="RW" t="string" v="f1" />
<FtpPassword1 ml="128" rw="RW" t="string" v="ftpadmin1" />
<FtpEnable2 rw="RW" t="boolean" v="False" />
<FtpUserName2 ml="64" rw="RW" t="string" v="f2" />
<FtpPassword2 ml="128" rw="RW" t="string" v="ftpadmin2" />
<FtpEnable3 rw="RW" t="boolean" v="False" />
<FtpUserName3 ml="64" rw="RW" t="string" v="ftpadmin3" />
<FtpPassword3 ml="128" rw="RW" t="string" v="ftpadmin3" />
<FtpEnable4 rw="RW" t="boolean" v="False" />
<FtpUserName4 ml="64" rw="RW" t="string" v="ftpadmin4" />
<FtpPassword4 ml="128" rw="RW" t="string" v="ftpadmin4" />
<FtpEnable5 rw="RW" t="boolean" v="False" />
<FtpUserName5 ml="64" rw="RW" t="string" v="ftpadmin5" />
<FtpPassword5 ml="128" rw="RW" t="string" v="ftpadmin5" />
<SambaEnable rw="RW" t="boolean" v="False" />
<SambaLanAccessEnable rw="RW" t="boolean" v="False" />
<SambaWanAccessEnable rw="RW" t="boolean" v="False" />
<SambaService rw="RW" t="boolean" v="False" />
<SambaPort max="65535" min="0" rw="RW" t="int" v="139" />
<SambaEnable0 rw="RW" t="boolean" v="False" />
<SambaUserName ml="64" rw="RW" t="string" v="samba" />
<SambaPassword ml="128" rw="RW" t="string" v="samba" />
<SambaEnable1 rw="RW" t="boolean" v="False" />
<SambaUserName1 ml="64" rw="RW" t="string" v="samba1" />
<SambaPassword1 ml="128" rw="RW" t="string" v="samba1" />
<SambaEnable2 rw="RW" t="boolean" v="False" />
<SambaUserName2 ml="64" rw="RW" t="string" v="samba2" />
<SambaPassword2 ml="128" rw="RW" t="string" v="samba2" />
<SambaEnable3 rw="RW" t="boolean" v="False" />
<SambaUserName3 ml="64" rw="RW" t="string" v="samba3" />
<SambaPassword3 ml="128" rw="RW" t="string" v="samba3" />
<SambaEnable4 rw="RW" t="boolean" v="False" />
<SambaUserName4 ml="64" rw="RW" t="string" v="samba4" />
<SambaPassword4 ml="128" rw="RW" t="string" v="samba4" />
<SambaEnable5 rw="RW" t="boolean" v="False" />
<SambaUserName5 ml="64" rw="RW" t="string" v="samba5" />
<SambaPassword5 ml="128" rw="RW" t="string" v="samba5" />
<TelnetEnable rw="RW" t="boolean" v="False" />
<TelnetLanAccessEnable rw="RW" t="boolean" v="False" />
<TelnetWanAccessEnable rw="RW" t="boolean" v="False" />
<TelnetUserName ml="64" rw="RW" t="string" v="admin" />
<TelnetTr069AccessEnable rw="RW" t="boolean" v="False" />
<TelnetPassword ml="128" rw="RW" t="string" v="admin" />
<TelnetPort max="65535" min="0" rw="RW" t="int" v="23" />
<FactoryTelnetEnable rw="RW" t="boolean" v="True" />
</X_CT-COM_ServiceManage.>
<X_CT-COM_Alarm. n="CtAlarm" t="staticObject">
<Enable rw="RW" t="boolean" v="False" />
<AlarmNumberOfEntries rw="R" t="unsignedInt" v="0" />
<AlarmNumber dv="" ml="256" rw="R" t="string" v="104001,104114,104151" />
<AlarmConfig.1. n="CtAlarmConfig" t="dynamicObject">
<ParaList dv="" ml="256" rw="RW" t="string" v="" />
<Limit-Max dv="" ml="64" rw="RW" t="string" v="" />
<Limit-Min dv="" ml="64" rw="RW" t="string" v="" />
<TimeList dv="" ml="64" rw="RW" t="string" v="" />
<Mode dv="1" max="3" min="1" rw="RW" t="unsignedInt" v="1" />
</AlarmConfig.1.>
</X_CT-COM_Alarm.>
<X_CT-COM_Monitor. n="CtMonitor" t="staticObject">
<Enable rw="RW" t="boolean" v="false" />
<MonitorNumberOfEntries rw="R" t="unsignedInt" v="1" />
<MonitorConfig.1. n="CtMonitorConfig" t="dynamicObject">
<ParaList dv="" ml="256" rw="RW" t="string" v="" />
<TimeList dv="0" ml="64" rw="RW" t="string" v="0" />
</MonitorConfig.1.>
</X_CT-COM_Monitor.>
<X_CT-COM_Ping. n="CtPing" t="staticObject">
<Enable rw="RW" t="boolean" v="false" />
<PingNumberOfEntries rw="R" t="unsignedInt" v="3" />
<PingConfig.1. n="CtPingConfig" t="dynamicObject">
<DiagnosticsState ml="32" rw="RW" t="string" v="None" va="IpPingDiagStateValues" />
<Interface ml="256" rw="RW" t="string" v="" />
<Host ml="256" rw="RW" t="string" v="0.0.0.0" />
<NumberOfRepetitions max="4294967295" min="0" rw="RW" t="unsignedInt" v="" />
<Timeout max="4294967295" min="0" rw="RW" t="unsignedInt" v="" />
<DataBlockSize max="65535" min="0" rw="RW" t="unsignedInt" v="" />
<DSCP max="63" min="0" rw="RW" t="unsignedInt" v="" />
<Interval max="65535" min="1" rw="RW" t="unsignedInt" v="1" />
<Stop max="65535" min="0" rw="RW" t="unsignedInt" v="0" />
</PingConfig.1.>
</X_CT-COM_Ping.>
<X_CT-COM_BehaviorAnalysis. n="CtBhAnalysis" t="staticObject">
<Enable rw="RW" t="boolean" v="false" />
<Periodic rw="RW" t="int" v="-1" />
<URL ml="256" rw="RW" t="string" v="" />
<Username ml="32" rw="RW" t="string" v="" />
<Password ml="32" rw="RW" t="string" v="" />
<CompressPassword ml="32" rw="RW" t="string" v="" />
<FlowExportPeriodic rw="RW" t="int" v="-1" />
<ClassificationNumberOfEntries rw="R" t="unsignedInt" v="" />
<ApplicationNumberOfEntries rw="R" t="unsignedInt" v="" />
<FlowNumberOfEntries rw="R" t="unsignedInt" v="" />
<BasicInf. n="CtBhBaiscInf" t="staticObject">
<DevCtrlEnable rw="RW" t="boolean" v="true" />
<FlowStatEnable rw="RW" t="boolean" v="true" />
<PacketStatEnable rw="RW" t="boolean" v="true" />
</BasicInf.>
<Classification.1. n="CtBhClass" t="dynamicObject" status="deleted">
<Enable rw="RW" t="boolean" v="false" />
<ClassInterface dv="" ml="256" rw="RW" t="string" v="" />
<Protocol dv=" " ml="16" rw="RW" t="string" v="" />
<ProtocolExclude dv="false" rw="RW" t="boolean" v="false" />
<SearchEngines dv=" " ml="128" rw="RW" t="string" v="" />
<ParticularKey dv=" " ml="32" rw="RW" t="string" v="" />
<DestIP dv="0.0.0.0" ml="32" rw="RW" t="string" v="0.0.0.0" />
<DestMask dv="255.255.255.255" ml="32" rw="RW" t="string" v="255.255.255.255" />
<DestIPExclude dv="false" rw="RW" t="boolean" v="false" />
<SourceIP dv="0.0.0.0" ml="32" rw="RW" t="string" v="0.0.0.0" />
<SourceMask dv="255.255.255.255" ml="32" rw="RW" t="string" v="255.255.255.255" />
<SourceIPExclude dv="false" rw="RW" t="boolean" v="false" />
<DestPort dv="-1 " max="2147483647" min="-1" rw="RW" t="int" v="-1 " />
<DestPortRangeMax dv="-1 " max="2147483647" min="-1" rw="RW" t="int" v="-1 " />
<DestPortExclude dv="false" rw="RW" t="boolean" v="false" />
<SourcePort dv="-1 " max="2147483647" min="-1" rw="RW" t="int" v="-1 " />
<SourcePortRangeMax dv="-1 " max="2147483647" min="-1" rw="RW" t="int" v="-1 " />
<SourcePortExclude dv="false" rw="RW" t="boolean" v="false" />
<OtherExpression dv=" " ml="256" rw="RW" t="string" v="" />
<ApplicationPath dv=" " ml="256" rw="RW" t="string" v="" />
<FlowPath dv=" " ml="256" rw="RW" t="string" v="" />
</Classification.1.>
<Application.1. n="CtBhApp" t="dynamicObject" status="deleted">
<AppName dv="" ml="32" rw="RW" t="string" v="" />
<AppEnable rw="RW" t="boolean" v="false" />
</Application.1.>
<Flow.1. n="CtBhFlow" t="dynamicObject" status="deleted">
<FlowName dv="" ml="16" rw="RW" t="string" v="" />
<FlowEnable dv="false" rw="RW" t="boolean" v="false" />
<BytesReceived dv="0" rw="R" t="unsignedInt" v="0" />
<BytesSent dv="0" rw="R" t="unsignedInt" v="0" />
</Flow.1.>
</X_CT-COM_BehaviorAnalysis.>
<X_CT-COM_NetworkPerformance. n="CtNetPerf" t="staticObject">
<DnsQueryDiagnostics. n="CtDnsDiag" t="staticObject">
<Enable rw="RW" t="boolean" v="false" />
<Interval max="65535" min="1" rw="RW" t="unsignedInt" v="" />
<Interface ml="256" rw="RW" t="string" v="" />
<DNSServerIP ml="32" rw="RW" t="string" v="" />
<DNSServerPort rw="RW" t="unsignedInt" v="" />
<DomainName ml="64" rw="RW" t="string" v="" />
<NumberofRepetitions max="100" min="1" rw="RW" t="unsignedInt" v="5" />
<Timethreshold max="65535" min="1" rw="RW" t="unsignedInt" v="180" />
</DnsQueryDiagnostics.>
<HttpGetDiagnostics. n="CtHttpDiag" t="staticObject">
<Enable rw="RW" t="boolean" v="false" />
<Interval max="65535" min="1" rw="RW" t="unsignedInt" v="" />
<Interface ml="256" rw="RW" t="string" v="" />
<HttpServerURL ml="256" rw="RW" t="string" v="" />
<httpServerPort rw="RW" t="unsignedInt" v="80" />
<NumberofRepetitions max="100" min="1" rw="RW" t="unsignedInt" v="5" />
<Timethreshold max="65535" min="1" rw="RW" t="unsignedInt" v="10000" />
</HttpGetDiagnostics.>
<TCPConnectionDiagnostics. n="CtTcpDiag" t="staticObject">
<Enable rw="RW" t="boolean" v="false" />
<Interval max="65535" min="1" rw="RW" t="unsignedInt" v="" />
<Interface ml="256" rw="RW" t="string" v="" />
<IP ml="32" rw="RW" t="string" v="" />
<Port rw="RW" t="unsignedInt" v="" />
<NumberofRepetitions max="100" min="1" rw="RW" t="unsignedInt" v="5" />
<Timethreshold max="65535" min="1" rw="RW" t="unsignedInt" v="10000" />
</TCPConnectionDiagnostics.>
</X_CT-COM_NetworkPerformance.>
<X_CT-COM_ServiceAccessInfo. n="CtServiceAccInfo" t="staticObject">
<BANDAccess ml="64" rw="RW" t="string" v="" />
<IPTVAccess ml="64" rw="RW" t="string" v="" />
<VOIPAccess ml="64" rw="RW" t="string" v="" />
</X_CT-COM_ServiceAccessInfo.>
<X_CT-COM_VoIPWANStatus. n="CtVoIPWAN" t="staticObject">
<Status. n="CtVoIPWANStatus" t="staticObject">
<Line.1. n="CtVoIPWANLineStatus" t="dynamicObject">
<Status rw="R" t="unsignedInt" v="0" />
</Line.1.>
<Line.2. n="CtVoIPWANLineStatus" t="dynamicObject">
<Status rw="R" t="unsignedInt" v="0" />
</Line.2.>
</Status.>
</X_CT-COM_VoIPWANStatus.>
<X_CT-COM_RegStatistics. n="CtRegStatistics" t="staticObject">
<OltRegTime dv="0" rw="RW" t="unsignedInt" v="0" />
<ITMSRegTime dv="0" rw="RW" t="unsignedInt" v="0" />
<ITMSServiceTime dv="0" rw="RW" t="unsignedInt" v="0" />
</X_CT-COM_RegStatistics.>
<X_ASB_COM_PppBridgeAccount. n="AsbPppBridgeAccount" t="staticObject">
<ConnectionStatus dv="Unconfigured" ml="32" rw="RW" t="string" v="Unconfigured" va="wanPppConnectionStatusValues" />
<UserName ml="64" rw="RW" t="string" v="" />
<Password ml="64" rw="RW" t="string" v="" />
</X_ASB_COM_PppBridgeAccount.>
<X_CT-COM_MonitorCollector. n="CtMonitorCollector" t="staticObject">
<Enable dv="false" rw="RW" t="boolean" v="false" />
<ServerUrl dv="" ml="128" rw="RW" t="string" v="" />
<TftpPort dv="69" rw="RW" t="unsignedInt" v="6169" />
<MonitorNumberOfEntries dv="0" rw="R" t="unsignedInt" v="0" />
<MonitorConfig.1. n="CtMonCollectorConfig" t="dynamicObject" status="">
<ParaList dv="" ml="4096" rw="RW" t="string" v="InternetGatewayDevice.WANDevice.1.X_CT-COM_GponInterfaceConfig.Status,InternetGatewayDevice.WANDevice.1.X_CT-COM_GponInterfaceConfig.TXPower,InternetGatewayDevice.WANDevice.1.X_CT-COM_GponInterfaceConfig.RXPower,InternetGatewayDevice.WANDevice.1.X_CT-COM_GponInterfaceConfig.TransceiverTemperature,InternetGatewayDevice.WANDevice.1.X_CT-COM_GponInterfaceConfig.SupplyVottage,InternetGatewayDevice.WANDevice.1.X_CT-COM_GponInterfaceConfig.BiasCurrent,InternetGatewayDevice.Services.VoiceService.1.VoiceProfile.1.Line.1.Enable,InternetGatewayDevice.Services.VoiceService.1.VoiceProfile.1.Line.1.Status,InternetGatewayDevice.Services.VoiceService.1.VoiceProfile.1.Line.1.X_CT-COM_LastRegisterError.Reason,InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANPPPConnection.1.ConnectionStatus,InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANPPPConnection.1.LastConnectionError,InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANPPPConnection.1.X_CT-COM_IPv6ConnStatus,InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANPPPConnection.1.LastConnectionErrorCode" />
<TimeList dv="1" ml="16" rw="RW" t="string" v="15" />
</MonitorConfig.1.>
</X_CT-COM_MonitorCollector.>
<X_ALU-COM_CPUMEMMonitor. n="cpuMemMonitor" t="staticObject">
<Enable rw="RW" t="boolean" v="false" />
<cpu rw="RW" t="unsignedInt" v="2" />
<cycle rw="RW" t="unsignedInt" v="0" />
<samplingtime rw="RW" t="unsignedInt" v="60" />
<interval rw="RW" t="unsignedInt" v="60" />
</X_ALU-COM_CPUMEMMonitor.>
<X_CT-COM_Qoe. n="CtQoE" t="staticObject">
<Enable dv="false" rw="RW" t="boolean" v="False" />
<TestDownloadUrl dv="" ml="64" rw="RW" t="string" v="" />
<TestDownloadStatus dv="" ml="64" rw="RW" t="string" v="" />
<MonitorStatus dv="" ml="64" rw="RW" t="string" v="" />
</X_CT-COM_Qoe.>
<X_CT-COM_Cardmanage. n="CtCardmanage" t="staticObject">
<CardNo dv="" ml="18" rw="R" t="string" v="" />
<status dv="0" rw="R" t="unsignedInt" v="0" />
<CardStatus dv="true" min="0" max="3" rw="RW" t="boolean" v="false" />
<X_ASB_COM_CardStatus dv="true" min="0" max="3" rw="RW" t="boolean" v="false" />
</X_CT-COM_Cardmanage.>
<X_CMCC_LedControl. n="CMCCLedControl" t="staticObject">
<Switch dv="true" rw="RW" t="boolean" v="true" />
</X_CMCC_LedControl.>
<MemoryStatus. n="MemoryStatus" t="staticObject">
<Total dv="0" rw="R" t="unsignedInt" v="0" />
<Free dv="0" rw="R" t="unsignedInt" v="0" />
</MemoryStatus.>
<ProcessStatus. n="ProcessStatus" t="staticObject">
<CPUUsage dv="0" rw="R" t="unsignedInt" v="0" />
</ProcessStatus.>
</DeviceInfo.>
<X_CT-COM_ProxyDevice. n="CtProxyDevice" t="staticObject">
<DeviceListNumberOfEntries dv="0" rw="R" t="unsignedInt" v="0" />
<ServiceProfile. n="CtProxyServiceProfile" t="staticObject">
<ConfigProfileNumberOfEntries dv="0" rw="R" t="unsignedInt" v="0" />
<X_CT-COM_RMSConfigOver dv="0" max="1" min="0" rw="RW" t="unsignedInt" v="0" />
<X_CT-COM_ConfigurationMode dv="0" max="1" min="0" rw="RW" t="unsignedInt" v="0" />
<ConfigProfile.1. n="CtProxyConfigProfile" t="dynamicObject" status="deleted">
<Rule dv="" ml="512" rw="RW" t="string" v="" />
<ConfigurationPath dv="" ml="256" rw="RW" t="string" v="" />
<ProvisioningCode dv="" ml="64" rw="RW" t="string" v="" />
</ConfigProfile.1.>
<ConfigTemplate. n="CtProxyConfigTemplate" t="staticObject">
<X_CT-COM_AP_InternetNumberOfEntries dv="0" rw="R" t="unsignedInt" v="0" />
<X_CT-COM_AP_IPTVNumberOfEntries dv="0" rw="R" t="unsignedInt" v="0" />
<X_CT-COM_AP_VoIPNumberOfEntries dv="0" rw="R" t="unsignedInt" v="0" />
<X_CT-COM_STB_InternetNumberOfEntries dv="0" rw="R" t="unsignedInt" v="0" />
<X_CT-COM_STB_IPTVNumberOfEntries dv="0" rw="R" t="unsignedInt" v="0" />
<X_CT-COM_STB_VOIPNumberOfEntries dv="0" rw="R" t="unsignedInt" v="0" />
<X_CT-COM_Screen4_IPTVNumberOfEntries dv="0" rw="R" t="unsignedInt" v="0" />
<X_CT-COM_Screen4_InternetNumberOfEntries dv="0" rw="R" t="unsignedInt" v="0" />
<X_CT-COM_Screen4_VoIPNumberOfEntries dv="0" rw="R" t="unsignedInt" v="0" />
<X_CT-COM_HomeCenter_InternetNumberOfEntries dv="0" rw="R" t="unsignedInt" v="0" />
<X_CT-COM_HomeCenter_NASNumberOfEntries dv="0" rw="R" t="unsignedInt" v="0" />
<X_CT-COM_HomeCenter_IPTVNumberOfEntries dv="0" rw="R" t="unsignedInt" v="0" />
<X_CT-COM_HomeCenter_VoIPNumberOfEntries dv="0" rw="R" t="unsignedInt" v="0" />
</ConfigTemplate.>
</ServiceProfile.>
<SoftwareProfile. n="ProxySoftProfile" t="staticObject">
<X_CT-COM_RMSConfigOver dv="0" max="1" min="0" rw="RW" t="unsignedInt" v="0" />
<FileProfileNumberOfEntrie dv="0" rw="R" t="unsignedInt" v="0" />
<FileProfile.1. n="CtProxySoftFileProfile" t="dynamicObject" status="deleted">
<Rule dv="" ml="256" rw="RW" t="string" v="" />
<FileType dv="" ml="64" rw="RW" t="string" v="" />
<URL dv="" ml="256" rw="RW" t="string" v="" />
<SoftwareVersion dv="" ml="64" rw="RW" t="string" v="" />
<HardwareVersion dv="" ml="64" rw="RW" t="string" v="" />
<Channel dv="0" max="4095" min="-1" rw="RW" t="int" v="0" />
<Username dv="" ml="256" rw="RW" t="string" v="" />
<Password dv="" ml="256" rw="RW" t="string" v="" />
<TimeWindowListNumberOfEntries dv="0" rw="R" t="unsignedInt" v="0" />
<TimeWindowList.1. n="CtProxyTimeWindowList" t="dynamicObject" status="deleted">
<WindowStart dv="0" rw="RW" t="unsignedInt" v="0" />
<WindowEnd dv="0" rw="RW" t="unsignedInt" v="0" />
<WindowMode dv="" ml="64" rw="RW" t="string" v="" />
<UserMessage dv="" ml="256" rw="RW" t="string" v="" />
<MaxRetries dv="0" rw="RW" t="int" v="0" />
</TimeWindowList.1.>
</FileProfile.1.>
</SoftwareProfile.>
<DeviceList.1. n="CtProxyDevList" t="dynamicObject" status="deleted">
<IsOnLine rw="RW" t="boolean" v="true" />
<AttachedPort dv="LAN_Port1" ml="32" rw="R" t="string" v="LAN_Port1" va="AttachedPortValues" />
<DeviceInfo. n="CtProxyDeviceInfo" t="staticObject">
<FriendlyName dv="" ml="64" rw="RW" t="string" v="" />
<DeviceType dv="" ml="64" rw="R" t="string" v="" />
<ProvisioningCode dv="" ml="64" rw="RW" t="string" v="" />
<SoftwareVersion dv="" ml="64" rw="R" t="string" v="" />
<SoftwareDescription dv="" ml="64" rw="R" t="string" v="" />
<UpTime dv="0" rw="RW" t="unsignedInt" v="0" />
<PhysicalDevice. n="CtProxyPhyDev" t="staticObject">
<HardwareVersion dv="" ml="64" rw="R" t="string" v="" />
<DeviceID. n="CtProxyPhyDevID" t="staticObject">
<ManufacturerOUI dv="" ml="8" rw="R" t="string" v="" />
<ProductClass dv="" ml="64" rw="R" t="string" v="" />
<SerialNumber dv="" ml="64" rw="R" t="string" v="" />
</DeviceID.>
</PhysicalDevice.>
</DeviceInfo.>
<Monitoring. n="CtProxyMonitoring" t="staticObject">
<OperatingSystem. n="CtProxyMonOperatingSys" t="staticObject">
<CurrentTime dv="" ml="64" rw="R" t="dateTime" v="" />
<CPUUsage dv="0" min="0" max="100" rw="R" t="unsignedInt" v="0" />
<MemoryUsage dv="0" min="0" max="100" rw="R" t="unsignedInt" v="0" />
</OperatingSystem.>
</Monitoring.>
<ApplyMode. n="CtProxyApplyMode" t="staticObject">
<Mode dv="At Any Time" ml="64" rw="RW" t="string" v="At Any Time" />
<UserMessage ml="256" rw="RW" t="string" v="" />
</ApplyMode.>
<ServiceObject. n="CtProxySerivceObj" t="staticObject">
<WLANConfigurationNumberOfEntries rw="R" t="unsignedInt" v="0" />
<WLANConfiguration.1. n="CtProxyWlanConf" t="dynamicObject" status="">
<Enable dv="false" rw="RW" t="boolean" v="true" />
<ChannelsInUse dv="" ml="1024" rw="RW" t="string" v="" />
<Channel dv="0" rw="RW" min="0" max="255" t="unsignedInt" v="1" />
<SSID dv="None" ml="32" rw="RW" t="string" v="COMMON-7WAD" />
<BeaconType dv="" ml="128" rw="RW" t="string" v="WPA" />
<Standard dv="a" ml="128" rw="R" t="string" v="a" />
<WEPKeyIndex dv="0" rw="RW" t="unsignedInt" v="0" />
<WEPEncryptionLevel dv="40-bit" ml="64" rw="RW" t="string" v="40-bit" />
<BasicAuthenticationMode dv="" ml="31" rw="RW" t="string" v="SharedKey" />
<WPAEncryptionModes dv="" ml="31" rw="RW" t="string" v="AESEncryption" />
<TotalBytesSent dv="0" rw="RW" t="unsignedInt" v="0" />
<TotalBytesReceived dv="0" rw="RW" t="unsignedInt" v="0" />
<TotalPacketsSent dv="0" rw="RW" t="unsignedInt" v="0" />
<TotalPacketsReceived dv="0" rw="RW" t="unsignedInt" v="0" />
<TotalAssociations dv="0" rw="RW" t="unsignedInt" v="0" />
<X_CT-COM_SSIDHide dv="false" rw="RW" t="boolean" v="false" />
<X_CT-COM_RFBand dv="0" rw="RW" t="unsignedInt" v="0" />
<VLAN dv="0" rw="RW" t="int" v="0" />
<X_CT-COM_ChannelWidth dv="0" rw="RW" t="unsignedInt" v="0" />
<X_CT-COM_GuardInterval dv="0" rw="RW" t="unsignedInt" v="0" />
<X_CT-COM_RetryTimeout dv="20" rw="RW" t="unsignedInt" v="20" />
<X_CT-COM_Powerlevel dv="1" min="1" max="5" rw="RW" t="unsignedInt" v="1" />
<X_CT-COM_PowerValue dv="0" rw="RW" t="unsignedInt" v="0" />
<X_CT-COM_APModuleEnable dv="true" rw="RW" t="boolean" v="true" />
<X_CT-COM_WPSKeyWord dv="128" min="0" max="128" rw="RW" t="unsignedInt" v="128" />
<AssociatedDevice.1. n="CtProxyWlanAssDev" t="dynamicObject" status="deleted">
<AssociatedDeviceMACAddress dv="" ml="32" rw="R" t="string" v="" />
<AssociatedDeviceIPAddress dv="" ml="64" rw="R" t="string" v="" />
<AssociatedDeviceAuthenticationState dv="false" rw="R" t="boolean" v="false" />
</AssociatedDevice.1.>
<WEPKey.1. n="CtProxyWlanWEPKey" t="dynamicObject" status="">
<WepKey dv="" ml="128" rw="RW" t="string" v="" />
</WEPKey.1.>
<PreSharedKey.1. n="CtProxyWlanPSKey" t="dynamicObject" status="">
<PreSharedKey dv="" ml="64" rw="RW" t="string" v="70fa6a820d" />
<KeyPassphrase dv="" ml="63" rw="RW" t="string" v="" />
<AssociatedDeviceMACAddress dv="" ml="32" rw="RW" t="string" v="" />
</PreSharedKey.1.>
</WLANConfiguration.1.>
<Iptv.1. n="CtProxyIptv" t="dynamicObject" status="deleted">
<EPGURL dv="" ml="256" rw="RW" t="string" v="" />
<UserName dv="" ml="128" rw="RW" t="string" v="" />
<PassWord dv="" ml="128" rw="RW" t="string" v="" />
<VLAN dv="0" rw="Rw" t="int" v="0" />
</Iptv.1.>
<CloudStorage.1. n="CtProxyCloudStorage" t="dynamicObject" status="deleted">
<AuthURL dv="" ml="256" rw="Rw" t="string" v="" />
<UserName dv="" ml="64" rw="RW" t="string" v="" />
<PassWord dv="" ml="64" rw="RW" t="string" v="" />
<VLAN dv="0" rw="Rw" t="int" v="0" />
</CloudStorage.1.>
<VOIP.1. n="CtProxyVoip" t="dynamicObject" status="deleted">
<BAC dv="" ml="256" rw="Rw" t="string" v="" />
<BAC_Standby dv="" ml="256" rw="Rw" t="string" v="" />
<UserName dv="" ml="64" rw="RW" t="string" v="" />
<PassWord dv="" ml="64" rw="RW" t="string" v="" />
<PORT dv="" ml="16" rw="RW" t="string" v="" />
<VoipNumber dv="" ml="32" rw="RW" t="string" v="" />
<IMS dv="" ml="256" rw="RW" t="string" v="" />
<VLAN dv="0" rw="Rw" t="int" v="0" />
</VOIP.1.>
</ServiceObject.>
<ActionList. n="CtProxyAction" t="staticObject">
<BMS. n="CtProxyBMS" t="staticObject">
<Reboot. n="CtProxyActReboot" t="staticObject">
<InvokeAction dv="false" rw="RW" t="boolean" v="false" />
<RebootStatus dv="" ml="16" rw="R" t="string" v="" />
</Reboot.>
<BaselineReset. n="CtProxyBaselineReset" t="staticObject">
<InvokeAction dv="false" rw="RW" t="boolean" v="false" />
</BaselineReset.>
<GetDeviceStatus. n="CtProxyGetDevStatus" t="staticObject">
<InvokeAction dv="false" rw="RW" t="boolean" v="false" />
<DeviceStatus dv="" ml="16" rw="R" t="string" v="" />
</GetDeviceStatus.>
<X_CT-COM_Download. n="CtProxyDownload" t="staticObject">
<InvokeAction dv="false" rw="RW" t="boolean" v="false" />
<FileType dv="" ml="64" rw="RW" t="string" v="" />
<URL dv="" ml="256" rw="RW" t="string" v="" />
<SoftwareVersion dv="" ml="64" rw="RW" t="string" v="" />
<HardwareVersion dv="" ml="64" rw="RW" t="string" v="" />
<Channel dv="0" max="4095" min="-1" rw="RW" t="int" v="0" />
<TimeWindow dv="" ml="1024" rw="RW" t="string" v="" />
<Username dv="" ml="256" rw="RW" t="string" v="" />
<Password dv="" ml="256" rw="RW" t="string" v="" />
<DownloadStatus dv="0" rw="RW" t="unsignedInt" v="0" />
<OperationID dv="0" rw="RW" t="unsignedInt" v="0" />
</X_CT-COM_Download.>
<X_CT-COM_GetDownloadStatus. n="CtProxyGetDownloadStaus" t="staticObject">
<InvokeAction dv="false" rw="RW" t="boolean" v="false" />
<OperationStatus dv="" ml="256" rw="RW" t="string" v="" />
</X_CT-COM_GetDownloadStatus.>
</BMS.>
</ActionList.>
</DeviceList.1.>
</X_CT-COM_ProxyDevice.>
<X_ASB_COM_SyslogCfg. n="SyslogCfg" t="staticObject">
<Status ml="64" rw="RW" t="string" v="Disabled" va="enabledDisabledStatusValues" />
<Option ml="64" rw="RW" t="string" v="localbuffer" va="syslogDestinationValues" />
<LocalDisplayLevel ml="32" rw="RW" t="string" v="Error" va="syslogLevelValues" />
<LocalLogLevel ml="32" rw="RW" t="string" v="Debug" va="syslogLevelValues" />
<RemoteLogLevel ml="32" rw="RW" t="string" v="Debug" va="syslogLevelValues" />
<ServerIPAddress ml="32" rw="RW" t="string" v="0.0.0.0" />
<ServerPortNumber max="65535" min="0" rw="RW" t="unsignedInt" v="514" />
</X_ASB_COM_SyslogCfg.>
<X_ASB_COM_LoginCfg. n="LoginCfg" t="staticObject">
<AdminUserName ml="64" rw="RW" t="string" v="admin" />
<AdminPassword ml="64" rw="RW" t="string" v="admin" />
<AdminPasswordHash ml="64" rw="RW" t="string" v="" />
<SupportUserName ml="64" rw="R" t="string" v="support" />
<SupportPassword ml="64" rw="RW" t="string" v="support" />
<SupportPasswordHash ml="64" rw="RW" t="string" v="" />
<UserUserName ml="64" rw="R" t="string" v="user" />
<UserPassword ml="64" rw="RW" t="string" v="user" />
<UserPasswordHash ml="64" rw="RW" t="string" v="" />
</X_ASB_COM_LoginCfg.>
<X_Authentication. n="Authentication" t="staticObject">
<HelpInfo ml="128" rw="RW" t="string" v="" />
<Account. n="Account" t="staticObject">
<Enable rw="RW" t="boolean" v="True" />
<Priority max="10" min="1" rw="RW" t="unsignedInt" v="2" />
<UserName ml="64" rw="RW" t="string" v="LECTURA" />
<Password ml="64" rw="RW" t="string" v="12345" />
</Account.>
<WebAccount. n="WebAccount" t="staticObject">
<Enable rw="RW" t="boolean" v="True" />
<Priority max="10" min="1" rw="RW" t="unsignedInt" v="1" />
<UserName ml="64" rw="RW" t="string" v="superadmin" />
<Password ml="64" rw="RW" t="string" v="12345" />
<PresetPassword ml="64" rw="R" t="string" v="12345" />
</WebAccount.>
<X_ASB_COM_BDAccount. n="BDAccount" t="staticObject">
<Enable rw="RW" t="boolean" v="True" />
<Priority max="10" min="1" rw="RW" t="unsignedInt" v="3" />
<UserName ml="64" rw="RW" t="string" v="asbuser" />
<Password ml="64" rw="RW" t="string" v="AK47&M16" />
</X_ASB_COM_BDAccount.>
</X_Authentication.>
<X_ASB_COM_AppCfg. n="AppCfg" t="staticObject">
<HttpdCfg. n="HttpdCfg" t="staticObject">
<NetworkAccess ml="32" rw="RW" t="string" v="LAN" va="NetAccessCfgValues" />
<LoggingLevel ml="32" rw="RW" t="string" v="Error" va="LoggingLevelValues" />
<LoggingDestination ml="32" rw="RW" t="string" v="StandardError" va="LoggingDestinationValues" />
<QuickSetupEnabled rw="RW" t="boolean" v="true" />
</HttpdCfg.>
<Tr69cCfg. n="Tr69cCfg" t="staticObject">
<LoggingLevel ml="32" rw="RW" t="string" v="Error" va="LoggingLevelValues" />
<LoggingDestination ml="32" rw="RW" t="string" v="StandardError" va="LoggingDestinationValues" />
<LoggingSOAP rw="RW" t="boolean" v="false" />
<ConnectionRequestAuthentication rw="RW" t="boolean" v="true" />
</Tr69cCfg.>
<Tr64cCfg. n="Tr64cCfg" t="staticObject">
<NetworkAccess ml="32" rw="RW" t="string" v="LAN" va="NetAccessCfgValues" />
<LoggingLevel ml="32" rw="RW" t="string" v="Error" va="LoggingLevelValues" />
<LoggingDestination ml="32" rw="RW" t="string" v="StandardError" va="LoggingDestinationValues" />
</Tr64cCfg.>
<SshdCfg. n="SshdCfg" t="staticObject">
<NetworkAccess ml="32" rw="RW" t="string" v="LAN or WAN" va="NetAccessCfgValues" />
<LoggingLevel ml="32" rw="RW" t="string" v="Error" va="LoggingLevelValues" />
<LoggingDestination ml="32" rw="RW" t="string" v="StandardError" va="LoggingDestinationValues" />
</SshdCfg.>
<TelnetdCfg. n="TelnetdCfg" t="staticObject">
<NetworkAccess ml="32" rw="RW" t="string" v="LAN" va="NetAccessCfgValues" />
<LoggingLevel ml="32" rw="RW" t="string" v="Error" va="LoggingLevelValues" />
<LoggingDestination ml="32" rw="RW" t="string" v="StandardError" va="LoggingDestinationValues" />
</TelnetdCfg.>
<ConsoledCfg. n="ConsoledCfg" t="staticObject">
<LoggingLevel ml="32" rw="RW" t="string" v="Error" va="LoggingLevelValues" />
<LoggingDestination ml="32" rw="RW" t="string" v="StandardError" va="LoggingDestinationValues" />
</ConsoledCfg.>
<SnmpdCfg. n="SnmpdCfg" t="staticObject">
<NetworkAccess ml="32" rw="RW" t="string" v="Disabled" va="NetAccessCfgValues" />
<LoggingLevel ml="32" rw="RW" t="string" v="Error" va="LoggingLevelValues" />
<LoggingDestination ml="32" rw="RW" t="string" v="StandardError" va="LoggingDestinationValues" />
</SnmpdCfg.>
<FtpdCfg. n="FtpdCfg" t="staticObject">
<NetworkAccess ml="32" rw="RW" t="string" v="Disabled" va="NetAccessCfgValues" />
<LoggingLevel ml="32" rw="RW" t="string" v="Error" va="LoggingLevelValues" />
<LoggingDestination ml="32" rw="RW" t="string" v="StandardError" va="LoggingDestinationValues" />
</FtpdCfg.>
<TftpdCfg. n="TftpdCfg" t="staticObject">
<NetworkAccess ml="32" rw="RW" t="string" v="LAN" va="NetAccessCfgValues" />
<LoggingLevel ml="32" rw="RW" t="string" v="Error" va="LoggingLevelValues" />
<LoggingDestination ml="32" rw="RW" t="string" v="StandardError" va="LoggingDestinationValues" />
</TftpdCfg.>
<PppdCfg. n="PppdCfg" t="staticObject">
<LoggingLevel ml="32" rw="RW" t="string" v="Error" va="LoggingLevelValues" />
<LoggingDestination ml="32" rw="RW" t="string" v="StandardError" va="LoggingDestinationValues" />
</PppdCfg.>
<IcmpCfg. n="IcmpCfg" t="staticObject">
<NetworkAccess ml="32" rw="RW" t="string" v="LAN" va="NetAccessCfgValues" />
</IcmpCfg.>
<UpnpCfg. n="UpnpCfg" t="staticObject">
<Enable rw="RW" t="boolean" v="true" />
<LoggingLevel ml="32" rw="RW" t="string" v="Error" va="LoggingLevelValues" />
<LoggingDestination ml="32" rw="RW" t="string" v="StandardError" va="LoggingDestinationValues" />
</UpnpCfg.>
<DnsProxyCfg. n="DnsProxyCfg" t="staticObject">
<Enable rw="RW" t="boolean" v="true" />
<DeviceDomainName ml="64" rw="RW" t="string" v="Home" />
<DeviceHostName ml="64" rw="RW" t="string" v="Broadcom" />
<LoggingLevel ml="32" rw="RW" t="string" v="Error" va="LoggingLevelValues" />
<LoggingDestination ml="32" rw="RW" t="string" v="StandardError" va="LoggingDestinationValues" />
<X_ASB_STATIC_DNS. n="X_ASB_STATIC_DNS" t="dynamicObject">