summaryrefslogtreecommitdiffstats
path: root/Bachelor/CCNA4/en_CCNA4_v30/elabs/Engine/Router 1760/cmd_enable.txt
blob: 4f1efe678dbfd6d5c6f99995707051216ebfeeab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
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
enableC.addSC("access-enable", "Create a temporary Access-List entry");
enableC.addSC("access-profile", "Apply user-profile to interface");
enableC.addSC("access-template", "Create a temporary Access-List entry");
enableC.addSC("archive", "manage archive files");
enableC.addSC("cd", "Change current directory");
enableC.addSC("clear", "Reset functions");
	enableC.clear.addSC("access-list", "Clear access list statistical information");
	enableC.clear.addSC("access-template", "Access-template");
	enableC.clear.addSC("arp-cache", "Clear the entire ARP cache");
	enableC.clear.addSC("bgp", "Clear BGP connections");
	enableC.clear.addSC("bridge", "Reset bridge forwarding cache");
	enableC.clear.addSC("cdp", "Reset cdp information");
	enableC.clear.addSC("counters", "Clear counters on one or all interfaces");
	enableC.clear.addSC("dialer", "Clear dialer statistics");
	enableC.clear.addSC("interface", "Clear the hardware logic on an interface");
	enableC.clear.addSC("ip", "IP");
		enableC.clear.ip.addSC("ospf", "OSPF clear commands");
		enableC.clear.ip.addSC("route", "Delete route table entries");
enableC.addSC("clock", "Manage the system clock");
	enableC.clock.addSC("set", "Set the time and date");
		enableC.clock.set.addSC("hh:mm:ss", "Current Time");
enableC.addSC("configure", "Enter configuration mode");
	enableC.configure.addSC("terminal", "Configure from the terminal");
enableC.addSC("connect", "Open a terminal connection");
	enableC.copy.addSC("nvram:", "Copy from nvram: file system");
	enableC.copy.addSC("running-config", "Copy from current system configuration");
		enableC.copy["running-config"].addSC("startup-config", "Copy to startup configuration");
	enableC.copy.addSC("startup-config", "Copy from startup configuration");
		enableC.copy["startup-config"].addSC("running-config", "Update (merge with) current system configuration");
		leC.copy.addSC("system:", "Copy from system: file system");
	enableC.copy.addSC("tftp:", "Copy from tftp: file system");
	enableC.copy.addSC("xmodem:", "Copy from xmodem: file system");
	enableC.copy.addSC("ymodem:", "Copy from ymodem: file system");
enableC.addSC("debug", "Debugging functions (see also 'undebug')");
    enableC.debug.addSC("aaa", "AAA Authentication, Authorization and Accounting");
  	enableC.debug.addSC("access-expression", "Boolean access expression");
  	enableC.debug.addSC("adjacency", "adjacency");
  	enableC.debug.addSC("all", "Enable all debugging");
  	enableC.debug.addSC("alps", "ALPS debug information");
  	enableC.debug.addSC("apollo", "Apollo information");
  	enableC.debug.addSC("apple", "Appletalk information");
  	enableC.debug.addSC("arap", "Appletalk Remote Access");
  	enableC.debug.addSC("arp", "IP ARP and HP Probe transactions");
  	enableC.debug.addSC("aspp", "ASPP information");
  	enableC.debug.addSC("async", "Async interface information");
  	enableC.debug.addSC("backup", "Backup events");
  	enableC.debug.addSC("bri-interface", "bri network interface events");
  	enableC.debug.addSC("bsc", "BSC information");
  	enableC.debug.addSC("bstun", "BSTUN information");
  	enableC.debug.addSC("call", "Call Information");
  	enableC.debug.addSC("call-mgmt", "Call Management");
  	enableC.debug.addSC("callback", "Callback activity");
  	enableC.debug.addSC("cca", "CCA activity");
  	enableC.debug.addSC("ccfrf11", "CCFRF11 information");
  	enableC.debug.addSC("cch323", "CCH323 information");
  	enableC.debug.addSC("ccsip", "CCSIP information");
  	enableC.debug.addSC("ccswvoice", "ccswvoice information");
  	enableC.debug.addSC("cdapi", "CDAPI information");
  	enableC.debug.addSC("cdp", "CDP information");
  	enableC.debug.addSC("ces-conn", "Connection Manager CES Client Info");
  	enableC.debug.addSC("chat", "Chat scripts activity");
  	enableC.debug.addSC("clns", "CLNS information");
  	enableC.debug.addSC("cls", "CLS Information");
  	enableC.debug.addSC("cns", "CNS Debugging");
  	enableC.debug.addSC("compress", "COMPRESS traffic");
  	enableC.debug.addSC("condition", "Condition");
  	enableC.debug.addSC("confmodem", "Modem configuration database");
  	enableC.debug.addSC("conn", "Connection Manager information");
  	enableC.debug.addSC("cops", "COPS");
  	enableC.debug.addSC("cpp", "Cpp information");
  	enableC.debug.addSC("crypto", "Cryptographic subsystem");
  		enableC.debug.crypto.addSC("ber", "decode ASN.1 BER data");
  		enableC.debug.crypto.addSC("engine", "Crypto Engine Debug");
  		enableC.debug.crypto.addSC("ipsec", "IPSEC processing");
  		enableC.debug.crypto.addSC("isakmp", "ISAKMP Key Management");
  		enableC.debug.crypto.addSC("pki", "PKI Client");
  		enableC.debug.crypto.addSC("verbose", "verbose decode");
  	enableC.debug.addSC("ctunnel", "Generic CTunnel Interface");
  	enableC.debug.addSC("custom-queue", "Custom output queueing");
  	enableC.debug.addSC("decnet", "DECnet information");
  	enableC.debug.addSC("dhcp", "DHCP client activity");
  	enableC.debug.addSC("dialer", "Dial on Demand");
  		enableC.debug.dhcp.addSC("detail", "DHCP packet content");
  	enableC.debug.addSC("dlsw", "Data Link Switching (DLSw) events");
  	enableC.debug.addSC("dnsix", "Dnsix information");
  	enableC.debug.addSC("domain", "Domain Name System");
		enableC.debug.domain.addSC("replies", "DNS replies only");

  	enableC.debug.addSC("drip", "DRiP debug information");
  	enableC.debug.addSC("dspu", "DSPU Information");
  	enableC.debug.addSC("dss", "Debug DSS");
  	enableC.debug.addSC("dxi", "atm-dxi information");
		enableC.debug.dxi.addSC("events", "Important atm-dxi events");
		enableC.debug.dxi.addSC("packet", "ATM DXI packets");

	enableC.addSC("eigrp",               "EIGRP Protocol information");
 	   enableC.debug.eigrp.addSC("fsm",        "EIGRP Dual Finite State Machine events/actions");
 	   enableC.debug.eigrp.addSC("neighbors",  "EIGRP neighbors");
 	   enableC.debug.eigrp.addSC("packets",    "EIGRP packets");
	   enableC.debug.eigrp.addSC("transmit",   "EIGRP transmission events");
  	enableC.debug.addSC("entry", "Incoming queue entries");
  	enableC.debug.addSC("ethernet-interface", "Ethernet network interface events");
  	enableC.debug.addSC("fastethernet", "Fast Ethernet interface information");
  	enableC.debug.addSC("fax", "Fax");
  	enableC.debug.addSC("frame-relay", "Frame Relay");
  	enableC.debug.addSC("fras", "FRAS Debug");
  	enableC.debug.addSC("fras-host", "FRAS Host Debug");
  	enableC.debug.addSC("funi", "FUNI interface packets");
  	enableC.debug.addSC("gssapi", "GSSAPI debugs");
  	enableC.debug.addSC("h225", "H.225 Library Debugging");
  	enableC.debug.addSC("h245", "H.245 Library Debugging");
  	enableC.debug.addSC("interface", "interface");
  	enableC.debug.addSC("ip", "IP information");
  		enableC.debug.ip.addSC("bgp", "BGP information");
  		enableC.debug.ip.addSC("cache", "IP cache operations");
  		enableC.debug.ip.addSC("casa", "Casa debugging");
  		enableC.debug.ip.addSC("cef", "IP CEF operations");
  		enableC.debug.ip.addSC("cgmp", "CGMP protocol activity");
  		enableC.debug.ip.addSC("dhcp", "Dynamic Host Configuration Protocol");
  		enableC.debug.ip.addSC("drp", "Director response protocol");
  		enableC.debug.ip.addSC("dvmrp", "DVMRP protocol activity");
  		enableC.debug.ip.addSC("egp", "EGP information");
  		enableC.debug.ip.addSC("eigrp", "IP-EIGRP information");
  		enableC.debug.ip.addSC("error", "IP error debugging");
  		enableC.debug.ip.addSC("flow", "IP Flow switching operations");
  		enableC.debug.ip.addSC("ftp", "FTP dialogue");
  		enableC.debug.ip.addSC("html", "HTML connections");
  		enableC.debug.ip.addSC("http", "HTTP connections");
  		enableC.debug.ip.addSC("icmp", "ICMP transactions");
  		enableC.debug.ip.addSC("igmp", "IGMP protocol activity");
  		enableC.debug.ip.addSC("igrp", "IGRP information");
  		enableC.debug.ip.addSC("interface", "IP interface configuration changes");
  		enableC.debug.ip.addSC("mbgp", "MBGP information");
  		enableC.debug.ip.addSC("mcache", "IP multicast cache operations");
  		enableC.debug.ip.addSC("mhbeat", "IP multicast heartbeat monitoring");
  		enableC.debug.ip.addSC("mobile", "IP Mobility");
  		enableC.debug.ip.addSC("mpacket", "IP multicast packet debugging");
  		enableC.debug.ip.addSC("mrm", "IP Multicast Routing Monitor");
  		enableC.debug.ip.addSC("mrouting", "IP multicast routing table activity");
  		enableC.debug.ip.addSC("msdp", "Multicast Source Discovery Protocol (MSDP)");
  		enableC.debug.ip.addSC("mtag", "IP multicast tagswitching activity");
  		enableC.debug.ip.addSC("nat", "NAT events");
  		enableC.debug.ip.addSC("nbar", "StILE - traffic classification Engine");
  		enableC.debug.ip.addSC("ospf", "OSPF information");
  			enableC.debug.ip.ospf.addSC("adj", "OSPF adjacency events");
  			enableC.debug.ip.ospf.addSC("database-timer", "OSPF database timer");
  			enableC.debug.ip.ospf.addSC("events", "OSPF events");
  			enableC.debug.ip.ospf.addSC("flood", "OSPF flooding");
  			enableC.debug.ip.ospf.addSC("hello", "OSPF hello events");
  			enableC.debug.ip.ospf.addSC("lsa-generation", "OSPF lsa generation");
  			enableC.debug.ip.ospf.addSC("mpls", "OSPF MPLS");
  			enableC.debug.ip.ospf.addSC("packet", "OSPF packets");
  			enableC.debug.ip.ospf.addSC("retransmission", "OSPF retransmission events");
  			enableC.debug.ip.ospf.addSC("spf", "OSPF spf");
  			enableC.debug.ip.ospf.addSC("tree", "OSPF database tree");
  		enableC.debug.ip.addSC("packet", "General IP debugging and IPSO security transactions");
  		enableC.debug.ip.addSC("peer", "IP peer address activity");
  		enableC.debug.ip.addSC("pgm", "PGM Reliable Transport Protocol");
  		enableC.debug.ip.addSC("pim", "PIM protocol activity");
  		enableC.debug.ip.addSC("policy", "Policy routing");
  		enableC.debug.ip.addSC("rgmp", "RGMP protocol activity");
  		enableC.debug.ip.addSC("rip", "RIP protocol transactions");
  			enableC.debug.ip.rip.addSC("database", "RIP database events");
  			enableC.debug.ip.rip.addSC("events", "RIP protocol events");
  			enableC.debug.ip.rip.addSC("trigger", "RIP trigger extension");
  		enableC.debug.ip.addSC("routing", "Routing table events");
  			enableC.debug.ip.routing.addSC("<1-199>", "Access list");
  			enableC.debug.ip.routing.addSC("<1300-2699>", "Access list (expanded range)");
  			enableC.debug.ip.routing.addSC("static", "IP Static routing");
  				enableC.debug.ip.routing.static.addSC("detail", "IP Static routing detail");
  				enableC.debug.ip.routing.static.addSC("route", "IP Static routing route");
  					enableC.debug.ip.routing.static.route.addSC("A.B.C.D", "Destination prefix");
  						enableC.debug.ip.routing.static.route["A.B.C.D"].addSC("A.B.C.D", "Destination prefix mask");
  				enableC.debug.ip.routing.static.addSC("summary", "IP Static routing control summary");
  				enableC.debug.ip.routing.static.addSC("time", "IP Static routing time spent");
  		enableC.debug.ip.addSC("rsvp", "RSVP protocol activity");
  		enableC.debug.ip.addSC("rtp", "RTP information");
  		enableC.debug.ip.addSC("sd", "Session Directory (SD)");
  		enableC.debug.ip.addSC("security", "IP security options");
  		enableC.debug.ip.addSC("slb", "SLB debug information");
  		enableC.debug.ip.addSC("socket", "Socket event");
  		enableC.debug.ip.addSC("ssh", "Incoming ssh connections");
  		enableC.debug.ip.addSC("tcp", "TCP information");
  		enableC.debug.ip.addSC("tempacl", "IP temporary ACL");
  		enableC.debug.ip.addSC("trigger-authentication", "Trigger authentication");
  		enableC.debug.ip.addSC("udp", "UDP based transactions");
  		enableC.debug.ip.addSC("urd", "URL RenDezvous (URD)");
  		enableC.debug.ip.addSC("wccp", "WCCP information");
  	enableC.debug.addSC("ipx", "Novell/IPX information");
  	enableC.debug.addSC("isdn", "ISDN information");
  	enableC.debug.addSC("isis", "IS-IS Information");
  	enableC.debug.addSC("kerberos", "KERBEROS authentication and authorization");
  	enableC.debug.addSC("lane", "LAN Emulation");
  	enableC.debug.addSC("lapb", "LAPB protocol transactions");
  	enableC.debug.addSC("lapb-ta", "LAPB Terminal Adapter information");
  	enableC.debug.addSC("lat", "LAT Information");
  	enableC.debug.addSC("ldap", "LDAP debug commands");
  	enableC.debug.addSC("lex", "LAN Extender protocol");
  	enableC.debug.addSC("list", "Set interface or/and access list for the next debug command");
  	enableC.debug.addSC("llc2", "LLC2 type II Information");
  	enableC.debug.addSC("lnm", "Lan Network Manager information");
  	enableC.debug.addSC("lnx", "generic qllc/llc2 conversion activity");
  	enableC.debug.addSC("local-ack", "Local ACKnowledgement information");
  	enableC.debug.addSC("management", "Management applications debugging");
  	enableC.debug.addSC("mdss", "MDSS information");
  	enableC.debug.addSC("mgcp", "Media Gateway Control Protocol");
  	enableC.debug.addSC("mls", "mls debugger information");
  	enableC.debug.addSC("modem", "Modem control/process activation");
  	enableC.debug.addSC("mop", "DECnet MOP server events");
  	enableC.debug.addSC("mpls", "MPLS debug");
  	enableC.debug.addSC("mpoa", "MPOA debug options");
  	enableC.debug.addSC("nbf", "NetBIOS information");
  	enableC.debug.addSC("ncia", "Native Client Interface Architecture (NCIA) events");
  	enableC.debug.addSC("netbios-name-cache", "NetBIOS name cache tracing");
  	enableC.debug.addSC("nhrp", "NHRP protocol");
  	enableC.debug.addSC("ntp", "NTP information");
  	enableC.debug.addSC("nvram", "Debug NVRAM behavior");
  	enableC.debug.addSC("packet", "Log unknown packets");
  	enableC.debug.addSC("pad", "X25 PAD protocol");
  	enableC.debug.addSC("ppp", "PPP (Point to Point Protocol) information");
  		enableC.debug.ppp.addSC("authentication", "CHAP and PAP authentication");
  		enableC.debug.ppp.addSC("bap", "BAP protocol transactions");
  		enableC.debug.ppp.addSC("cbcp", "Callback Control Protocol negotiation");
  		enableC.debug.ppp.addSC("compression", "PPP compression");
  		enableC.debug.ppp.addSC("error", "Protocol errors and error statistics");
  		enableC.debug.ppp.addSC("mppe", "MPPE Events");
  		enableC.debug.ppp.addSC("multilink", "Multilink activity");
  		enableC.debug.ppp.addSC("negotiation", "Protocol parameter negotiation");
  		enableC.debug.ppp.addSC("packet", "Low-level PPP packet dump");
  		enableC.debug.ppp.addSC("tasks", "PPP background tasks");
  	enableC.debug.addSC("printer", "LPD printer protocol");
  	enableC.debug.addSC("priority", "Priority output queueing");
  	enableC.debug.addSC("probe", "HP Probe Proxy Requests");
  	enableC.debug.addSC("qdm", "QoS Device Manager");
  	enableC.debug.addSC("qllc", "qllc debug information");
  	enableC.debug.addSC("radius", "RADIUS protocol");
  	enableC.debug.addSC("ras", "H.323 RAS Library");
  	enableC.debug.addSC("rif", "RIF cache transactions");
  	enableC.debug.addSC("rscmon", "Resource Monitor");
  	enableC.debug.addSC("rtpspi", "RTP Service Provider Interface.");
  	enableC.debug.addSC("rtr", "RTR Monitor Information");
  	enableC.debug.addSC("sdlc", "SDLC information");
  	enableC.debug.addSC("sdllc", "SDLLC media translation");
  	enableC.debug.addSC("serial", "Serial interface information");
  	enableC.debug.addSC("sgbp", "SGBP debugging");
  	enableC.debug.addSC("sgcp", "Simple Gateway Control Protocol");
  	enableC.debug.addSC("smf", "Software MAC filter");
  	enableC.debug.addSC("smrp", "SMRP information");
  	enableC.debug.addSC("sna", "SNA Information");
  	enableC.debug.addSC("snapshot", "Snapshot activity");
  	enableC.debug.addSC("snmp", "SNMP information");
  	enableC.debug.addSC("source", "Source bridging information");
  	enableC.debug.addSC("spanning-tree", "Spanning tree debugging");
  	enableC.debug.addSC("srcp", "Simple Resource Coordination Protocol");
  	enableC.debug.addSC("ssl", "SSL Debug command");
  	enableC.debug.addSC("standby", "Hot standby protocol");
  	enableC.debug.addSC("stun", "STUN information");
  	enableC.debug.addSC("tacacs", "TACACS authentication and authorization");
  	enableC.debug.addSC("tag-switching", "Tag Switching (obsolete use \"debug mpls ...\")");
  	enableC.debug.addSC("tarp", "TARP information");
  	enableC.debug.addSC("tbridge", "Transparent Bridging");
  	enableC.debug.addSC("tccs", "Transparent CCS information");
  	enableC.debug.addSC("tdm", "TDM connection information");
  	enableC.debug.addSC("telnet", "Incoming telnet connections");
  	enableC.debug.addSC("template", "Template activity");
  	enableC.debug.addSC("tftp", "TFTP debugging");
  	enableC.debug.addSC("tgrm", "Trunk Group Resource Manager info");
  	enableC.debug.addSC("token", "Token Ring information");
  	enableC.debug.addSC("translate", "Protocol translation events");
  	enableC.debug.addSC("translation", "translation rule information");
  	enableC.debug.addSC("tsp", "Telephony Service information");
  	enableC.debug.addSC("tunnel", "Generic Tunnel Interface");
  	enableC.debug.addSC("udptn", "UDPtn async data transport");
  	enableC.debug.addSC("v120", "V120 information");
  	enableC.debug.addSC("vines", "VINES information");
  	enableC.debug.addSC("vlan", "vLAN information");
  	enableC.debug.addSC("voice", "VOICE information");
  	enableC.debug.addSC("voip", "VOIP information");
  	enableC.debug.addSC("vpdn", "VPDN information");
  	enableC.debug.addSC("vpm", "Voice Port Module SPI information");
  	enableC.debug.addSC("vprofile", "Virtual Profile information");
  	enableC.debug.addSC("vtemplate", "Virtual Template information");
  	enableC.debug.addSC("vtsp", "Voice Telephony Call Control information");
  	enableC.debug.addSC("x25", "X.25, CMNS and XOT information");
  	enableC.debug.addSC("x28", "X28 mode");
  	enableC.debug.addSC("xcctsp", "External Call Control TSP information");
  	enableC.debug.addSC("xns", "XNS information");
	enableC.debug.addSC("xremote", "XREMOTE");

enableC.addSC("delete", "Delete a file");
	enableC["delete"].addSC("nvram:", "File to be deleted");
enableC.addSC("dir", "List files on a filesystem");
enableC.addSC("disable", "Turn off privileged commands");
enableC.addSC("disconnect", "Disconnect an existing network connection");
enableC.addSC("enable", "Turn on privileged commands");
enableC.addSC("erase", "Erase a filesystem");
enableC.addSC("exit", "Exit from the EXEC");
enableC.addSC("help", "Description of the interactive help system");
enableC.addSC("isdn", "Run an ISDN EXEC command on a BRI interface");
enableC.addSC("lock", "Lock the terminal");
enableC.addSC("login", "Log in as a particular user");
enableC.addSC("logout", "Exit from the EXEC");
enableC.addSC("modemui", "Start a modem-like user interface");
enableC.addSC("monitor", "Monitoring different system events");
enableC.addSC("more", "Display the contents of a file");
enableC.addSC("mrinfo", "Request neighbor and version information from a multicast router");
enableC.addSC("mrm", "IP Multicast Routing Monitor Test");
enableC.addSC("mstat", "Show statistics after multiple multicast traceroutes");
enableC.addSC("no", "Disable debugging functions");
	enableC.no.addSC("debug", "Disable debugging functions (see also 'undebug')");
		enableC.no.debug.addSC("aaa", "AAA Authentication, Authorization and Accounting");
		enableC.no.debug.addSC("all", "Enable all debugging");
		enableC.no.debug.addSC("arp", "IP ARP and HP Probe transactions");
		enableC.no.debug.addSC("async", "Async interface information");
		enableC.no.debug.addSC("bgp", "BGP information");
		enableC.no.debug.addSC("cdp", "CDP information");
		enableC.no.debug.addSC("confmodem", "Modem configuration database");
		enableC.no.debug.addSC("custom-queue", "Custom output queueing");
		enableC.no.debug.addSC("dhcp", "DHCP client activity");
		enableC.no.debug.addSC("dialer", "Dial on Demand");
		enableC.no.debug.addSC("dnsix", "Dnsix information");
		enableC.no.debug.addSC("eigrp", "EIGRP Protocol information");
		enableC.no.debug.addSC("fastethernet", "Fast Ethernet interface information");
		enableC.no.debug.addSC("frame-relay", "Frame Relay");
		enableC.no.debug.addSC("interface", "interface");
		enableC.no.debug.addSC("ip", "IP information");
		enableC.no.debug.addSC("nvram", "Debug NVRAM behavior");
		enableC.no.debug.addSC("ppp", "PPP (Point to Point Protocol) information");
		enableC.no.debug.addSC("priority", "Priority output queueing");
		enableC.no.debug.addSC("qdm", "QoS Device Manager");
		enableC.no.debug.addSC("radius", "RADIUS protocol");
		enableC.no.debug.addSC("tacacs", "TACACS authentication and authorization");
		enableC.no.debug.addSC("telnet", "Incoming telnet connections");
		enableC.no.debug.addSC("vpdn", "VPDN information");
		enableC.no.debug.addSC("vpn", "VPN information");
		enableC.no.debug.addSC("vprofile", "Virtual Profile information");
		enableC.no.debug.addSC("vtemplate", "Virtual Template information");
enableC.addSC("pad", "Open a X.29 PAD connection");
enableC.addSC("ping", "Send echo messages");
	enableC.ping.addSC("WORD", "Ping destination address or hostname");
	enableC.ping.addSC("ip", "IP echo");
		enableC.ping.ip.addSC("WORD", "Ping destination address or hostname");
enableC.addSC("ppp", "Start IETF Point-to-Point Protocol (PPP)");
	enableC.ppp.addSC("negotiate", "Use PPP negotiated IP address");
enableC.addSC("pwd", "Display current working directory");
enableC.addSC("reload", "Halt and perform a cold restart");
enableC.addSC("rename", "Rename a file");
enableC.addSC("restart", "Restart Connection");
enableC.addSC("resume", "Resume an active network connection");
enableC.addSC("rlogin", "Open an rlogin connection");
enableC.addSC("setup", "Run the SETUP command facility");
enableC.addSC("show", "Show running system information");
	enableC.show.addSC("aaa", "Show AAA values");
		enableC.show.aaa.addSC("attributes", "Show attributes supported by AAA subsystem");
		enableC.show.aaa.addSC("method-lists", "Show method lists defined in the AAA subsystem");
	enableC.show.addSC("access-expression", "List access expression");
	enableC.show.addSC("access-lists", "List access lists");
		enableC.show["access-lists"].addSC("<1-2699>", "ACL number");
		enableC.show["access-lists"].addSC("WORD", "ACL name");
		enableC.show["access-lists"].addSC("rate-limit", "Show rate-limit access lists");
			enableC.show["access-lists"]["rate-limit"].addSC("<1-299>", "Rate-limit ACL number");
	enableC.show.addSC("accounting", "Accounting data for active sessions");
	enableC.show.addSC("adjacency", "Adjacent nodes");
	enableC.show.addSC("aliases", "Display alias commands");
	enableC.show.addSC("arp", "ARP table");
	enableC.show.addSC("async", "Information on terminal lines used as router interfaces");
	enableC.show.addSC("backup", "Backup status");
	enableC.show.addSC("bgp", "BGP information");
		enableC.show.bgp.addSC("community", "Display routes matching the communities");
		enableC.show.bgp.addSC("neighbors", "Detailed information on TCP and BGP neighbor connections");
	enableC.show.addSC("buffers", "Buffer pool statistics");
	enableC.show.addSC("c1700", "Show c1700 information");
	enableC.show.addSC("cdapi", "CDAPI information");
	enableC.show.addSC("cdp", "CDP information");
		enableC.show.cdp.addSC("entry", "Information for specific neighbor entry");
			enableC.show.cdp.entry.addSC("*", "all CDP neighbor entries");
				enableC.show.cdp.entry["*"].addSC("protocol", "Protocol information");
				enableC.show.cdp.entry["*"].addSC("version", "Version information");
					enableC.show.cdp.entry["*"].version.addSC("protocol", "Protocol information");
			enableC.show.cdp.entry.addSC("WORD", "Name of CDP neighbor entry");
				enableC.show.cdp.entry.WORD.addSC("protocol", "Protocol information");
				enableC.show.cdp.entry.WORD.addSC("version", "Version information");
					enableC.show.cdp.entry.WORD.version.addSC("protocol", "Protocol information");
		enableC.show.cdp.addSC("interface", "CDP interface status and configuration");
		enableC.show.cdp.addSC("neighbors", "CDP neighbor entries");
			enableC.show.cdp.neighbors.addSC("detail", "Show detailed information");
	enableC.show.addSC("compress", "Show compression statistics");
		enableC.show.compress.addSC("detail-ccp", "additional ccp state info");
	enableC.show.addSC("configuration", "Contents of Non-Volatile memory");
	enableC.show.addSC("connection", "Show Connection");
	enableC.show.addSC("dhcp", "Dynamic Host Configuration Protocol status");
		enableC.show.dhcp.addSC("lease", "Show DHCP Addresses leased from a server");
			enableC.show.dhcp.lease.addSC("interface", "Show DHCP information on one interface");
				enableC.show.dhcp.lease.interface.addSC("Async", "Async interface");
					enableC.show.dhcp.lease.interface.Async.addSC("<1-5>", "Async interface number");
				enableC.show.dhcp.lease.interface.addSC("Virtual-Template", "Virtual Template interface");
					enableC.show.dhcp.lease.interface["Virtual-Template"].addSC("<1-200>", "Virtual-Template interface number");
		enableC.show.dhcp.addSC("server", "Show DHCP Servers we know about");
	enableC.show.addSC("diag", "Show diagnostic information for port adapters/modules");
		enableC.show.diag.addSC("<0-3>", "Slot number");
	enableC.show.addSC("dialer", "Dialer parameters and statistics");
	enableC.show.addSC("frame-relay", "Frame-Relay information");
		enableC.show["frame-relay"].addSC("map", "Frame-Relay map table");
		enableC.show["frame-relay"].addSC("pvc", "show frame relay pvc statistics");
	enableC.show.addSC("hosts", "IP domain-name, lookup style, nameservers, and host table");
	enableC.show.addSC("interfaces", "Interface status and configuration");
		enableC.show.interfaces.addSC("Async", "Async interface");
			enableC.show.interfaces.Async.addSC("<1-5>", "Async interface number");
			enableC.show.interfaces.Dialer.addSC("<0-255>", "Dialer interface number");
		enableC.show.interfaces.addSC("FastEthernet", "FastEthernet IEEE 802.3");
			enableC.show.interfaces.FastEthernet.addSC("<0-0>", "FastEthernet interface number");
		enableC.show.interfaces.addSC("Loopback", "Loopback interface");
			enableC.show.interfaces.Loopback.addSC("<0-2147483647>", "Loopback interface number");
		enableC.show.interfaces.addSC("Null", "Null interface");
			enableC.show.interfaces.Null.addSC("<0-0>", "Null interface number");
		enableC.show.interfaces.addSC("Serial", "Serial");
			enableC.show.interfaces.Serial.addSC("<0-1>", "Serial interface number");
		enableC.show.interfaces.addSC("Tunnel", "Tunnel interface");
		enableC.show.addSC("ip", "IP information");
		enableC.show.ip.addSC("access-lists", "List IP access lists");
			enableC.show.ip["access-lists"].addSC("<1-199>", "Access list number");
			enableC.show.ip["access-lists"].addSC("<1300-2699>", "Access list number (expanded range)");
			enableC.show.ip["access-lists"].addSC("WORD", "Access list name");
		enableC.show.ip.addSC("arp", "IP ARP table");
		enableC.show.ip.addSC("bgp", "BGP information");
		enableC.show.ip.addSC("dhcp", "Show items in the DHCP database");
		enableC.show.ip.addSC("dvmrp", "DVMRP information");
		enableC.show.ip.addSC("interface", "IP interface status and configuration");
		enableC.show.ip.addSC("mroute", "IP multicast routing table");
			enableC.show.ip.mroute.addSC("Loopback", "Loopback interface");
			enableC.show.ip.mroute.addSC("MFR", "Multilink Frame Relay bundle interface");
			enableC.show.ip.mroute.addSC("active", "Active multicast sources");
			enableC.show.ip.mroute.addSC("count", "Route and packet count data");
			enableC.show.ip.mroute.addSC("pruned", "Pruned routes");
			enableC.show.ip.mroute.addSC("static", "Static multicast routes");
			enableC.show.ip.mroute.addSC("summary", "Provide abbreviated display");
			enableC.show.ip.msdp.addSC("summary", "MSDP Peer Summary");
		enableC.show.ip.addSC("mtag", "IP Multicast Tagswitching TIB");
		enableC.show.ip.addSC("nat", "IP NAT information");
			enableC.show.ip.nat.addSC("statistics", "Translation statistics");
			enableC.show.ip.nat.addSC("translations", "Translation entries");
				enableC.show.ip.nat.translations.addSC("verbose", "Show extra information");
		enableC.show.ip.addSC("nbar", "Network-Based Application Recognition");
		enableC.show.ip.addSC("nhrp", "NHRP information");
		enableC.show.ip.addSC("ospf", "OSPF information");
				enableC.show.ip.ospf.interface.addSC("Async", "Async interface");
					enableC.show.ip.ospf.interface.Async.addSC("<1-129>", "Async interface number");
				enableC.show.ip.ospf.interface.addSC("BRI", "ISDN Basic Rate Interface");
					enableC.show.ip.ospf.interface.BRI.addSC("<0-6>", "BRI interface number");
				enableC.show.ip.ospf.interface.addSC("BVI", "Bridge-Group Virtual Interface");
					enableC.show.ip.ospf.interface.BVI.addSC("<1-255>", "BVI interface number");
				enableC.show.ip.ospf.interface.addSC("CTunnel", "CTunnel interface");
					enableC.show.ip.ospf.interface.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
				enableC.show.ip.ospf.interface.addSC("Dialer", "Dialer interface");
					enableC.show.ip.ospf.interface.Dialer.addSC("<0-799>", "Dialer interface number");
				enableC.show.ip.ospf.interface.addSC("Ethernet", "IEEE 802.3");
					enableC.show.ip.ospf.interface.Ethernet.addSC("<0-6>", "Ethernet interface number");
				enableC.show.ip.ospf.interface.addSC("Lex", "Lex interface");
					enableC.show.ip.ospf.interface.Lex.addSC("<0-2147483647>", "Lex interface number");
				enableC.show.ip.ospf.interface.addSC("Loopback", "Loopback interface");
					enableC.show.ip.ospf.interface.Loopback.addSC("<0-2147483647>", "Loopback interface number");
				enableC.show.ip.ospf.interface.addSC("Multilink", "Multilink-group interface");
					enableC.show.ip.ospf.interface.Multilink.addSC("<1-2147483647>", "Multilink interface number");
				enableC.show.ip.ospf.interface.addSC("Null", "Null interface");
					enableC.show.ip.ospf.interface.Null.addSC("<0-0>", "Null interface number");
				enableC.show.ip.ospf.interface.addSC("Serial", "Serial");
					enableC.show.ip.ospf.interface.Serial.addSC("<0-6>", "Serial interface number");
				enableC.show.ip.ospf.interface.addSC("Tunnel", "Tunnel interface");
					enableC.show.ip.ospf.interface.Tunnel.addSC("<0-2147483647>", "Tunnel interface number");
				enableC.show.ip.ospf.interface.addSC("Vif", "PGM Multicast Host interface");
					enableC.show.ip.ospf.interface.Vif.addSC("<1-1>", "Vif interface number");
				enableC.show.ip.ospf.interface.addSC("Virtual-Template", "Virtual Template interface");
					enableC.show.ip.ospf.interface["Virtual-Template"].addSC("<1-25>", "Virtual-Template interface number");
				enableC.show.ip.ospf.interface.addSC("Virtual-TokenRing", "Virtual TokenRing");
					enableC.show.ip.ospf.interface["Virtual-TokenRing"].addSC("<0-2147483647>", "Virtual-TokenRing interface number");
			enableC.show.ip.ospf.addSC("mpls", "MPLS related information");
				enableC.show.ip.ospf.mpls.addSC("traffic-eng", "Traffic Engineering information");
					enableC.show.ip.ospf.mpls["traffic-eng"].addSC("fragment", "MPLS fragment information");
					enableC.show.ip.ospf.mpls["traffic-eng"].addSC("link", "MPLS link information");
			enableC.show.ip.ospf.addSC("neighbor", "Neighbor list");
				enableC.show.ip.ospf.neighbor.addSC("Async", "Async interface");
					enableC.show.ip.ospf.neighbor.Async.addSC("<1-129>", "Async interface number");
				enableC.show.ip.ospf.neighbor.addSC("BRI", "ISDN Basic Rate Interface");
					enableC.show.ip.ospf.neighbor.BRI.addSC("<0-6>", "BRI interface number");
					enableC.show.ip.ospf.neighbor.BRI.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.BRI.Async.addSC("<1-129>", "Async interface number");
				enableC.show.ip.ospf.neighbor.addSC("BVI", "Bridge-Group Virtual Interface");
					enableC.show.ip.ospf.neighbor.BVI.addSC("<1-255>", "BVI interface number");
					enableC.show.ip.ospf.neighbor.BVI.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.BVI.Async.addSC("<1-129>", "Async interface number");
					enableC.show.ip.ospf.neighbor.BVI.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.BVI.BRI.addSC("<0-6>", "BRI interface number");
				enableC.show.ip.ospf.neighbor.addSC("CTunnel", "CTunnel interface");
					enableC.show.ip.ospf.neighbor.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
					enableC.show.ip.ospf.neighbor.CTunnel.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.CTunnel.Async.addSC("<1-129>", "Async interface number");
					enableC.show.ip.ospf.neighbor.CTunnel.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.CTunnel.BRI.addSC("<0-6>", "BRI interface number");
					enableC.show.ip.ospf.neighbor.CTunnel.addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.CTunnel.BVI.addSC("<1-255>", "BVI interface number");
				enableC.show.ip.ospf.neighbor.addSC("Dialer", "Dialer interface");
					enableC.show.ip.ospf.neighbor.Dialer.addSC("<0-799>", "Dialer interface number");
					enableC.show.ip.ospf.neighbor.Dialer.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.Dialer.Async.addSC("<1-129>", "Async interface number");
					enableC.show.ip.ospf.neighbor.Dialer.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.Dialer.BRI.addSC("<0-6>", "BRI interface number");
					enableC.show.ip.ospf.neighbor.Dialer.addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.Dialer.BVI.addSC("<1-255>", "BVI interface number");
					enableC.show.ip.ospf.neighbor.Dialer.addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor.Dialer.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
				enableC.show.ip.ospf.neighbor.addSC("Ethernet", "IEEE 802.3");
					enableC.show.ip.ospf.neighbor.Ethernet.addSC("<0-6>", "Ethernet interface number");
					enableC.show.ip.ospf.neighbor.Ethernet.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.Ethernet.Async.addSC("<1-129>", "Async interface number");
					enableC.show.ip.ospf.neighbor.Ethernet.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.Ethernet.BRI.addSC("<0-6>", "BRI interface number");
					enableC.show.ip.ospf.neighbor.Ethernet.addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.Ethernet.BVI.addSC("<1-255>", "BVI interface number");
					enableC.show.ip.ospf.neighbor.Ethernet.addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor.Ethernet.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
					enableC.show.ip.ospf.neighbor.Ethernet.addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor.Ethernet.Dialer.addSC("<0-799>", "Dialer interface number");
				enableC.show.ip.ospf.neighbor.addSC("Hostname or A.B.C.D", "Neighbor ID");
					enableC.show.ip.ospf.neighbor["Hostname or A.B.C.D"].addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor["Hostname or A.B.C.D"].Async.addSC("<1-129>", "Async interface number");
					enableC.show.ip.ospf.neighbor["Hostname or A.B.C.D"].addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor["Hostname or A.B.C.D"].BRI.addSC("<0-6>", "BRI interface number");
					enableC.show.ip.ospf.neighbor["Hostname or A.B.C.D"].addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor["Hostname or A.B.C.D"].BVI.addSC("<1-255>", "BVI interface number");
					enableC.show.ip.ospf.neighbor["Hostname or A.B.C.D"].addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor["Hostname or A.B.C.D"].CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
					enableC.show.ip.ospf.neighbor["Hostname or A.B.C.D"].addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor["Hostname or A.B.C.D"].Dialer.addSC("<0-799>", "Dialer interface number");
					enableC.show.ip.ospf.neighbor["Hostname or A.B.C.D"].addSC("Ethernet", "IEEE 802.3");
						enableC.show.ip.ospf.neighbor["Hostname or A.B.C.D"].Ethernet.addSC("<0-6>", "Ethernet interface number");
				enableC.show.ip.ospf.neighbor.addSC("Lex", "Lex interface");
					enableC.show.ip.ospf.neighbor.Lex.addSC("<0-2147483647>", "Lex interface number");
					enableC.show.ip.ospf.neighbor.Lex.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.Lex.Async.addSC("<1-129>", "Async interface number");
					enableC.show.ip.ospf.neighbor.Lex.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.Lex.BRI.addSC("<0-6>", "BRI interface number");
					enableC.show.ip.ospf.neighbor.Lex.addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.Lex.BVI.addSC("<1-255>", "BVI interface number");
					enableC.show.ip.ospf.neighbor.Lex.addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor.Lex.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
					enableC.show.ip.ospf.neighbor.Lex.addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor.Lex.Dialer.addSC("<0-799>", "Dialer interface number");
					enableC.show.ip.ospf.neighbor.Lex.addSC("Ethernet", "IEEE 802.3");
						enableC.show.ip.ospf.neighbor.Lex.Ethernet.addSC("<0-6>", "Ethernet interface number");
				enableC.show.ip.ospf.neighbor.addSC("Loopback", "Loopback interface");
					enableC.show.ip.ospf.neighbor.Loopback.addSC("<0-2147483647>", "Loopback interface number");
						enableC.show.ip.ospf.neighbor.Loopback["<0-2147483647>"].addSC("Hostname or A.B.C.D", "Neighbor ID");
					enableC.show.ip.ospf.neighbor.Loopback.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.Loopback.Async.addSC("<1-129>", "Async interface number");
					enableC.show.ip.ospf.neighbor.Loopback.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.Loopback.BRI.addSC("<0-6>", "BRI interface number");
					enableC.show.ip.ospf.neighbor.Loopback.addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.Loopback.BVI.addSC("<1-255>", "BVI interface number");
					enableC.show.ip.ospf.neighbor.Loopback.addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor.Loopback.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
					enableC.show.ip.ospf.neighbor.Loopback.addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor.Loopback.Dialer.addSC("<0-799>", "Dialer interface number");
					enableC.show.ip.ospf.neighbor.Loopback.addSC("Ethernet", "IEEE 802.3");
						enableC.show.ip.ospf.neighbor.Loopback.Ethernet.addSC("<0-6>", "Ethernet interface number");
					enableC.show.ip.ospf.neighbor.Loopback.addSC("Lex", "Lex interface");
						enableC.show.ip.ospf.neighbor.Loopback.Lex.addSC("<0-2147483647>", "Lex interface number");
				enableC.show.ip.ospf.neighbor.addSC("Multilink", "Multilink-group interface");
					enableC.show.ip.ospf.neighbor.Multilink.addSC("<1-2147483647>", "Multilink interface number");
					enableC.show.ip.ospf.neighbor.Multilink.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.Multilink.Async.addSC("<1-129>", "Async interface number");
					enableC.show.ip.ospf.neighbor.Multilink.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.Multilink.BRI.addSC("<0-6>", "BRI interface number");
					enableC.show.ip.ospf.neighbor.Multilink.addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.Multilink.BVI.addSC("<1-255>", "BVI interface number");
					enableC.show.ip.ospf.neighbor.Multilink.addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor.Multilink.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
					enableC.show.ip.ospf.neighbor.Multilink.addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor.Multilink.Dialer.addSC("<0-799>", "Dialer interface number");
					enableC.show.ip.ospf.neighbor.Multilink.addSC("Ethernet", "IEEE 802.3");
						enableC.show.ip.ospf.neighbor.Multilink.Ethernet.addSC("<0-6>", "Ethernet interface number");
					enableC.show.ip.ospf.neighbor.Multilink.addSC("Lex", "Lex interface");
						enableC.show.ip.ospf.neighbor.Multilink.Lex.addSC("<0-2147483647>", "Lex interface number");
					enableC.show.ip.ospf.neighbor.Multilink.addSC("Loopback", "Loopback interface");
						enableC.show.ip.ospf.neighbor.Multilink.Loopback.addSC("<0-2147483647>", "Loopback interface number");
				enableC.show.ip.ospf.neighbor.addSC("Null", "Null interface");
					enableC.show.ip.ospf.neighbor.Null.addSC("<0-0>", "Null interface number");
						enableC.show.ip.ospf.neighbor.Null["<0-0>"].addSC("Hostname or A.B.C.D", "Neighbor ID");
					enableC.show.ip.ospf.neighbor.Null.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.Null.Async.addSC("<1-129>", "Async interface number");
					enableC.show.ip.ospf.neighbor.Null.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.Null.BRI.addSC("<0-6>", "BRI interface number");
					enableC.show.ip.ospf.neighbor.Null.addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.Null.BVI.addSC("<1-255>", "BVI interface number");
					enableC.show.ip.ospf.neighbor.Null.addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor.Null.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
					enableC.show.ip.ospf.neighbor.Null.addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor.Null.Dialer.addSC("<0-799>", "Dialer interface number");
					enableC.show.ip.ospf.neighbor.Null.addSC("Ethernet", "IEEE 802.3");
						enableC.show.ip.ospf.neighbor.Null.Ethernet.addSC("<0-6>", "Ethernet interface number");
					enableC.show.ip.ospf.neighbor.Null.addSC("Lex", "Lex interface");
						enableC.show.ip.ospf.neighbor.Null.Lex.addSC("<0-2147483647>", "Lex interface number");
					enableC.show.ip.ospf.neighbor.Null.addSC("Loopback", "Loopback interface");
						enableC.show.ip.ospf.neighbor.Null.Loopback.addSC("<0-2147483647>", "Loopback interface number");
					enableC.show.ip.ospf.neighbor.Null.addSC("Multilink", "Multilink-group interface");
						enableC.show.ip.ospf.neighbor.Null.Multilink.addSC("<1-2147483647>", "Multilink interface number");
				enableC.show.ip.ospf.neighbor.addSC("Serial", "Serial");
					enableC.show.ip.ospf.neighbor.Serial.addSC("<0-6>", "Serial interface number");
					enableC.show.ip.ospf.neighbor.Serial.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.Serial.Async.addSC("<1-129>", "Async interface number");
					enableC.show.ip.ospf.neighbor.Serial.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.Serial.BRI.addSC("<0-6>", "BRI interface number");
					enableC.show.ip.ospf.neighbor.Serial.addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.Serial.BVI.addSC("<1-255>", "BVI interface number");
					enableC.show.ip.ospf.neighbor.Serial.addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor.Serial.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
					enableC.show.ip.ospf.neighbor.Serial.addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor.Serial.Dialer.addSC("<0-799>", "Dialer interface number");
					enableC.show.ip.ospf.neighbor.Serial.addSC("Ethernet", "IEEE 802.3");
						enableC.show.ip.ospf.neighbor.Serial.Ethernet.addSC("<0-6>", "Ethernet interface number");
					enableC.show.ip.ospf.neighbor.Serial.addSC("Lex", "Lex interface");
						enableC.show.ip.ospf.neighbor.Serial.Lex.addSC("<0-2147483647>", "Lex interface number");
					enableC.show.ip.ospf.neighbor.Serial.addSC("Loopback", "Loopback interface");
						enableC.show.ip.ospf.neighbor.Serial.Loopback.addSC("<0-2147483647>", "Loopback interface number");
					enableC.show.ip.ospf.neighbor.Serial.addSC("Multilink", "Multilink-group interface");
						enableC.show.ip.ospf.neighbor.Serial.Multilink.addSC("<1-2147483647>", "Multilink interface number");
					enableC.show.ip.ospf.neighbor.Serial.addSC("Null", "Null interface");
						enableC.show.ip.ospf.neighbor.Serial.Null.addSC("<0-0>", "Null interface number");
				enableC.show.ip.ospf.neighbor.addSC("Tunnel", "Tunnel interface");
					enableC.show.ip.ospf.neighbor.Tunnel.addSC("<0-2147483647>", "Tunnel interface number");
					enableC.show.ip.ospf.neighbor.Tunnel.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.Tunnel.Async.addSC("<1-129>", "Async interface number");
					enableC.show.ip.ospf.neighbor.Tunnel.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.Tunnel.BRI.addSC("<0-6>", "BRI interface number");
					enableC.show.ip.ospf.neighbor.Tunnel.addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.Tunnel.BVI.addSC("<1-255>", "BVI interface number");
					enableC.show.ip.ospf.neighbor.Tunnel.addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor.Tunnel.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
					enableC.show.ip.ospf.neighbor.Tunnel.addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor.Tunnel.Dialer.addSC("<0-799>", "Dialer interface number");
					enableC.show.ip.ospf.neighbor.Tunnel.addSC("Ethernet", "IEEE 802.3");
						enableC.show.ip.ospf.neighbor.Tunnel.Ethernet.addSC("<0-6>", "Ethernet interface number");
					enableC.show.ip.ospf.neighbor.Tunnel.addSC("Lex", "Lex interface");
						enableC.show.ip.ospf.neighbor.Tunnel.Lex.addSC("<0-2147483647>", "Lex interface number");
					enableC.show.ip.ospf.neighbor.Tunnel.addSC("Loopback", "Loopback interface");
						enableC.show.ip.ospf.neighbor.Tunnel.Loopback.addSC("<0-2147483647>", "Loopback interface number");
					enableC.show.ip.ospf.neighbor.Tunnel.addSC("Multilink", "Multilink-group interface");
						enableC.show.ip.ospf.neighbor.Tunnel.Multilink.addSC("<1-2147483647>", "Multilink interface number");
					enableC.show.ip.ospf.neighbor.Tunnel.addSC("Null", "Null interface");
						enableC.show.ip.ospf.neighbor.Tunnel.Null.addSC("<0-0>", "Null interface number");
					enableC.show.ip.ospf.neighbor.Tunnel.addSC("Serial", "Serial");
						enableC.show.ip.ospf.neighbor.Tunnel.Serial.addSC("<0-6>", "Serial interface number");
				enableC.show.ip.ospf.neighbor.addSC("Vif", "PGM Multicast Host interface");
					enableC.show.ip.ospf.neighbor.Vif.addSC("<1-1>", "Vif interface number");
					enableC.show.ip.ospf.neighbor.Vif.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.Vif.Async.addSC("<1-129>", "Async interface number");
					enableC.show.ip.ospf.neighbor.Vif.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.Vif.BRI.addSC("<0-6>", "BRI interface number");
					enableC.show.ip.ospf.neighbor.Vif.addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.Vif.BVI.addSC("<1-255>", "BVI interface number");
					enableC.show.ip.ospf.neighbor.Vif.addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor.Vif.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
					enableC.show.ip.ospf.neighbor.Vif.addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor.Vif.Dialer.addSC("<0-799>", "Dialer interface number");
					enableC.show.ip.ospf.neighbor.Vif.addSC("Ethernet", "IEEE 802.3");
						enableC.show.ip.ospf.neighbor.Vif.Ethernet.addSC("<0-6>", "Ethernet interface number");
					enableC.show.ip.ospf.neighbor.Vif.addSC("Lex", "Lex interface");
						enableC.show.ip.ospf.neighbor.Vif.Lex.addSC("<0-2147483647>", "Lex interface number");
					enableC.show.ip.ospf.neighbor.Vif.addSC("Loopback", "Loopback interface");
						enableC.show.ip.ospf.neighbor.Vif.Loopback.addSC("<0-2147483647>", "Loopback interface number");
					enableC.show.ip.ospf.neighbor.Vif.addSC("Multilink", "Multilink-group interface");
						enableC.show.ip.ospf.neighbor.Vif.Multilink.addSC("<1-2147483647>", "Multilink interface number");
					enableC.show.ip.ospf.neighbor.Vif.addSC("Null", "Null interface");
						enableC.show.ip.ospf.neighbor.Vif.Null.addSC("<0-0>", "Null interface number");
					enableC.show.ip.ospf.neighbor.Vif.addSC("Serial", "Serial");
						enableC.show.ip.ospf.neighbor.Vif.Serial.addSC("<0-6>", "Serial interface number");
					enableC.show.ip.ospf.neighbor.Vif.addSC("Tunnel", "Tunnel interface");
						enableC.show.ip.ospf.neighbor.Vif.Tunnel.addSC("<0-2147483647>", "Tunnel interface number");
				enableC.show.ip.ospf.neighbor.addSC("Virtual-Template", "Virtual Template interface");
					enableC.show.ip.ospf.neighbor["Virtual-Template"].addSC("<1-25>", "Virtual-Template interface number");
					enableC.show.ip.ospf.neighbor["Virtual-Template"].addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor["Virtual-Template"].Async.addSC("<1-129>", "Async interface number");
					enableC.show.ip.ospf.neighbor["Virtual-Template"].addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor["Virtual-Template"].BRI.addSC("<0-6>", "BRI interface number");
					enableC.show.ip.ospf.neighbor["Virtual-Template"].addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor["Virtual-Template"].BVI.addSC("<1-255>", "BVI interface number");
					enableC.show.ip.ospf.neighbor["Virtual-Template"].addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor["Virtual-Template"].CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
					enableC.show.ip.ospf.neighbor["Virtual-Template"].addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor["Virtual-Template"].Dialer.addSC("<0-799>", "Dialer interface number");
					enableC.show.ip.ospf.neighbor["Virtual-Template"].addSC("Ethernet", "IEEE 802.3");
						enableC.show.ip.ospf.neighbor["Virtual-Template"].Ethernet.addSC("<0-6>", "Ethernet interface number");
					enableC.show.ip.ospf.neighbor["Virtual-Template"].addSC("Lex", "Lex interface");
						enableC.show.ip.ospf.neighbor["Virtual-Template"].Lex.addSC("<0-2147483647>", "Lex interface number");
					enableC.show.ip.ospf.neighbor["Virtual-Template"].addSC("Loopback", "Loopback interface");
						enableC.show.ip.ospf.neighbor["Virtual-Template"].Loopback.addSC("<0-2147483647>", "Loopback interface number");
					enableC.show.ip.ospf.neighbor["Virtual-Template"].addSC("Multilink", "Multilink-group interface");
						enableC.show.ip.ospf.neighbor["Virtual-Template"].Multilink.addSC("<1-2147483647>", "Multilink interface number");
					enableC.show.ip.ospf.neighbor["Virtual-Template"].addSC("Null", "Null interface");
						enableC.show.ip.ospf.neighbor["Virtual-Template"].Null.addSC("<0-0>", "Null interface number");
					enableC.show.ip.ospf.neighbor["Virtual-Template"].addSC("Serial", "Serial");
						enableC.show.ip.ospf.neighbor["Virtual-Template"].Serial.addSC("<0-6>", "Serial interface number");
					enableC.show.ip.ospf.neighbor["Virtual-Template"].addSC("Tunnel", "Tunnel interface");
						enableC.show.ip.ospf.neighbor["Virtual-Template"].Tunnel.addSC("<0-2147483647>", "Tunnel interface number");
					enableC.show.ip.ospf.neighbor["Virtual-Template"].addSC("Vif", "PGM Multicast Host interface");
						enableC.show.ip.ospf.neighbor["Virtual-Template"].Vif.addSC("<1-1>", "Vif interface number");
				enableC.show.ip.ospf.neighbor.addSC("Virtual-TokenRing", "Virtual TokenRing");
					enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].addSC("<0-2147483647>", "Virtual-TokenRing interface number");
					enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].Async.addSC("<1-129>", "Async interface number");
					enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].BRI.addSC("<0-6>", "BRI interface number");
					enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].BVI.addSC("<1-255>", "BVI interface number");
					enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
					enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].Dialer.addSC("<0-799>", "Dialer interface number");
					enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].addSC("Ethernet", "IEEE 802.3");
						enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].Ethernet.addSC("<0-6>", "Ethernet interface number");
					enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].addSC("Lex", "Lex interface");
						enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].Lex.addSC("<0-2147483647>", "Lex interface number");
					enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].addSC("Loopback", "Loopback interface");
						enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].Loopback.addSC("<0-2147483647>", "Loopback interface number");
					enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].addSC("Multilink", "Multilink-group interface");
						enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].Multilink.addSC("<1-2147483647>", "Multilink interface number");
					enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].addSC("Null", "Null interface");
						enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].Null.addSC("<0-0>", "Null interface number");
					enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].addSC("Serial", "Serial");
						enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].Serial.addSC("<0-6>", "Serial interface number");
					enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].addSC("Tunnel", "Tunnel interface");
						enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].Tunnel.addSC("<0-2147483647>", "Tunnel interface number");
					enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].addSC("Vif", "PGM Multicast Host interface");
						enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].Vif.addSC("<1-1>", "Vif interface number");
					enableC.show.ip.ospf.neighbor["Virtual-TokenRing"].addSC("Virtual-Template", "Virtual Template interface");
						enableC.show.ip.ospf.neighbor["Virtual-TokenRing"]["Virtual-Template"].addSC("<1-25>", "Virtual-Template interface number");
				enableC.show.ip.ospf.neighbor.addSC("detail", "detail of all neighbors");
					enableC.show.ip.ospf.neighbor.detail.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.detail.Async.addSC("<1-129>", "Async interface number");
					enableC.show.ip.ospf.neighbor.detail.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.detail.BRI.addSC("<0-6>", "BRI interface number");
						enableC.show.ip.ospf.neighbor.detail.BRI.addSC("Async", "Async interface");
					enableC.show.ip.ospf.neighbor.detail.addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.detail.BVI.addSC("<1-255>", "BVI interface number");
						enableC.show.ip.ospf.neighbor.detail.BVI.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.detail.BVI.addSC("BRI", "ISDN Basic Rate Interface");
					enableC.show.ip.ospf.neighbor.detail.addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor.detail.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
						enableC.show.ip.ospf.neighbor.detail.CTunnel.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.detail.CTunnel.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.detail.CTunnel.addSC("BVI", "Bridge-Group Virtual Interface");
					enableC.show.ip.ospf.neighbor.detail.addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor.detail.Dialer.addSC("<0-799>", "Dialer interface number");
						enableC.show.ip.ospf.neighbor.detail.Dialer.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.detail.Dialer.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.detail.Dialer.addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.detail.Dialer.addSC("CTunnel", "CTunnel interface");
					enableC.show.ip.ospf.neighbor.detail.addSC("Ethernet", "IEEE 802.3");
						enableC.show.ip.ospf.neighbor.detail.Ethernet.addSC("<0-6>", "Ethernet interface number");
						enableC.show.ip.ospf.neighbor.detail.Ethernet.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.detail.Ethernet.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.detail.Ethernet.addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.detail.Ethernet.addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor.detail.Ethernet.addSC("Dialer", "Dialer interface");
					enableC.show.ip.ospf.neighbor.detail.addSC("Hostname or A.B.C.D", "Neighbor ID");
						enableC.show.ip.ospf.neighbor.detail["Hostname or A.B.C.D"].addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.detail["Hostname or A.B.C.D"].addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.detail["Hostname or A.B.C.D"].addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.detail["Hostname or A.B.C.D"].addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor.detail["Hostname or A.B.C.D"].addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor.detail["Hostname or A.B.C.D"].addSC("Ethernet", "IEEE 802.3");
					enableC.show.ip.ospf.neighbor.detail.addSC("Lex", "Lex interface");
						enableC.show.ip.ospf.neighbor.detail.Lex.addSC("<0-2147483647>", "Lex interface number");
						enableC.show.ip.ospf.neighbor.detail.Lex.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.detail.Lex.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.detail.Lex.addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.detail.Lex.addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor.detail.Lex.addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor.detail.Lex.addSC("Ethernet", "IEEE 802.3");
					enableC.show.ip.ospf.neighbor.detail.addSC("Loopback", "Loopback interface");
						enableC.show.ip.ospf.neighbor.detail.Loopback.addSC("<0-2147483647>", "Loopback interface number");
						enableC.show.ip.ospf.neighbor.detail.Loopback.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.detail.Loopback.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.detail.Loopback.addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.detail.Loopback.addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor.detail.Loopback.addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor.detail.Loopback.addSC("Ethernet", "IEEE 802.3");
						enableC.show.ip.ospf.neighbor.detail.Loopback.addSC("Lex", "Lex interface");
					enableC.show.ip.ospf.neighbor.detail.addSC("Multilink", "Multilink-group interface");
						enableC.show.ip.ospf.neighbor.detail.Multilink.addSC("<1-2147483647>", "Multilink interface number");
						enableC.show.ip.ospf.neighbor.detail.Multilink.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.detail.Multilink.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.detail.Multilink.addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.detail.Multilink.addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor.detail.Multilink.addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor.detail.Multilink.addSC("Ethernet", "IEEE 802.3");
						enableC.show.ip.ospf.neighbor.detail.Multilink.addSC("Lex", "Lex interface");
						enableC.show.ip.ospf.neighbor.detail.Multilink.addSC("Loopback", "Loopback interface");
					enableC.show.ip.ospf.neighbor.detail.addSC("Null", "Null interface");
						enableC.show.ip.ospf.neighbor.detail.Null.addSC("<0-0>", "Null interface number");
						enableC.show.ip.ospf.neighbor.detail.Null.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.detail.Null.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.detail.Null.addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.detail.Null.addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor.detail.Null.addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor.detail.Null.addSC("Ethernet", "IEEE 802.3");
						enableC.show.ip.ospf.neighbor.detail.Null.addSC("Lex", "Lex interface");
						enableC.show.ip.ospf.neighbor.detail.Null.addSC("Loopback", "Loopback interface");
						enableC.show.ip.ospf.neighbor.detail.Null.addSC("Multilink", "Multilink-group interface");
					enableC.show.ip.ospf.neighbor.detail.addSC("Serial", "Serial");
						enableC.show.ip.ospf.neighbor.detail.Serial.addSC("<0-6>", "Serial interface number");
						enableC.show.ip.ospf.neighbor.detail.Serial.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.detail.Serial.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.detail.Serial.addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.detail.Serial.addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor.detail.Serial.addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor.detail.Serial.addSC("Ethernet", "IEEE 802.3");
						enableC.show.ip.ospf.neighbor.detail.Serial.addSC("Lex", "Lex interface");
						enableC.show.ip.ospf.neighbor.detail.Serial.addSC("Loopback", "Loopback interface");
						enableC.show.ip.ospf.neighbor.detail.Serial.addSC("Multilink", "Multilink-group interface");
						enableC.show.ip.ospf.neighbor.detail.Serial.addSC("Null", "Null interface");
					enableC.show.ip.ospf.neighbor.detail.addSC("Tunnel", "Tunnel interface");
						enableC.show.ip.ospf.neighbor.detail.Tunnel.addSC("<0-2147483647>", "Tunnel interface number");
						enableC.show.ip.ospf.neighbor.detail.Tunnel.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.detail.Tunnel.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.detail.Tunnel.addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.detail.Tunnel.addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor.detail.Tunnel.addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor.detail.Tunnel.addSC("Ethernet", "IEEE 802.3");
						enableC.show.ip.ospf.neighbor.detail.Tunnel.addSC("Lex", "Lex interface");
						enableC.show.ip.ospf.neighbor.detail.Tunnel.addSC("Loopback", "Loopback interface");
						enableC.show.ip.ospf.neighbor.detail.Tunnel.addSC("Multilink", "Multilink-group interface");
						enableC.show.ip.ospf.neighbor.detail.Tunnel.addSC("Null", "Null interface");
						enableC.show.ip.ospf.neighbor.detail.Tunnel.addSC("Serial", "Serial");
					enableC.show.ip.ospf.neighbor.detail.addSC("Vif", "PGM Multicast Host interface");
						enableC.show.ip.ospf.neighbor.detail.Vif.addSC("<1-1>", "Vif interface number");
						enableC.show.ip.ospf.neighbor.detail.Vif.addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.detail.Vif.addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.detail.Vif.addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.detail.Vif.addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor.detail.Vif.addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor.detail.Vif.addSC("Ethernet", "IEEE 802.3");
						enableC.show.ip.ospf.neighbor.detail.Vif.addSC("Lex", "Lex interface");
						enableC.show.ip.ospf.neighbor.detail.Vif.addSC("Loopback", "Loopback interface");
						enableC.show.ip.ospf.neighbor.detail.Vif.addSC("Multilink", "Multilink-group interface");
						enableC.show.ip.ospf.neighbor.detail.Vif.addSC("Null", "Null interface");
						enableC.show.ip.ospf.neighbor.detail.Vif.addSC("Serial", "Serial");
						enableC.show.ip.ospf.neighbor.detail.Vif.addSC("Tunnel", "Tunnel interface");
					enableC.show.ip.ospf.neighbor.detail.addSC("Virtual-Template", "Virtual Template interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-Template"].addSC("<1-25>", "Virtual-Template interface number");
						enableC.show.ip.ospf.neighbor.detail["Virtual-Template"].addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-Template"].addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-Template"].addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-Template"].addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-Template"].addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-Template"].addSC("Ethernet", "IEEE 802.3");
						enableC.show.ip.ospf.neighbor.detail["Virtual-Template"].addSC("Lex", "Lex interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-Template"].addSC("Loopback", "Loopback interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-Template"].addSC("Multilink", "Multilink-group interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-Template"].addSC("Null", "Null interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-Template"].addSC("Serial", "Serial");
						enableC.show.ip.ospf.neighbor.detail["Virtual-Template"].addSC("Tunnel", "Tunnel interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-Template"].addSC("Vif", "PGM Multicast Host interface");
					enableC.show.ip.ospf.neighbor.detail.addSC("Virtual-TokenRing", "Virtual TokenRing");
						enableC.show.ip.ospf.neighbor.detail["Virtual-TokenRing"].addSC("<0-2147483647>", "Virtual-TokenRing interface number");
						enableC.show.ip.ospf.neighbor.detail["Virtual-TokenRing"].addSC("Async", "Async interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-TokenRing"].addSC("BRI", "ISDN Basic Rate Interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-TokenRing"].addSC("BVI", "Bridge-Group Virtual Interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-TokenRing"].addSC("CTunnel", "CTunnel interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-TokenRing"].addSC("Dialer", "Dialer interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-TokenRing"].addSC("Ethernet", "IEEE 802.3");
						enableC.show.ip.ospf.neighbor.detail["Virtual-TokenRing"].addSC("Lex", "Lex interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-TokenRing"].addSC("Loopback", "Loopback interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-TokenRing"].addSC("Multilink", "Multilink-group interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-TokenRing"].addSC("Null", "Null interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-TokenRing"].addSC("Serial", "Serial");
						enableC.show.ip.ospf.neighbor.detail["Virtual-TokenRing"].addSC("Tunnel", "Tunnel interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-TokenRing"].addSC("Vif", "PGM Multicast Host interface");
						enableC.show.ip.ospf.neighbor.detail["Virtual-TokenRing"].addSC("Virtual-Template", "Virtual Template interface");
			enableC.show.ip.ospf.addSC("request-list", "Link state request list");
				enableC.show.ip.ospf["request-list"].addSC("A.B.C.D", "neighbor router ID");
				enableC.show.ip.ospf["request-list"].addSC("Async", "Async interface");
					enableC.show.ip.ospf["request-list"].Async.addSC("<1-129>", "Async interface number");
				enableC.show.ip.ospf["request-list"].addSC("BRI", "ISDN Basic Rate Interface");
					enableC.show.ip.ospf["request-list"].BRI.addSC("<0-6>", "BRI interface number");
				enableC.show.ip.ospf["request-list"].addSC("BVI", "Bridge-Group Virtual Interface");
					enableC.show.ip.ospf["request-list"].BVI.addSC("<1-255>", "BVI interface number");
				enableC.show.ip.ospf["request-list"].addSC("CTunnel", "CTunnel interface");
					enableC.show.ip.ospf["request-list"].CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
				enableC.show.ip.ospf["request-list"].addSC("Dialer", "Dialer interface");
					enableC.show.ip.ospf["request-list"].Dialer.addSC("<0-799>", "Dialer interface number");
						enableC.show.ip.ospf["request-list"].Dialer["<0-799>"].addSC("A.B.C.D", "neighbor router ID");
				enableC.show.ip.ospf["request-list"].addSC("Ethernet", "IEEE 802.3");
					enableC.show.ip.ospf["request-list"].Ethernet.addSC("<0-6>", "Ethernet interface number");
				enableC.show.ip.ospf["request-list"].addSC("Lex", "Lex interface");
					enableC.show.ip.ospf["request-list"].Lex.addSC("<0-2147483647>", "Lex interface number");
				enableC.show.ip.ospf["request-list"].addSC("Loopback", "Loopback interface");
					enableC.show.ip.ospf["request-list"].Loopback.addSC("<0-2147483647>", "Loopback interface number");
						enableC.show.ip.ospf["request-list"].Loopback["<0-2147483647>"].addSC("A.B.C.D", "neighbor router ID");
				enableC.show.ip.ospf["request-list"].addSC("Multilink", "Multilink-group interface");
					enableC.show.ip.ospf["request-list"].Multilink.addSC("<1-2147483647>", "Multilink interface number");
				enableC.show.ip.ospf["request-list"].addSC("Null", "Null interface");
					enableC.show.ip.ospf["request-list"].Null.addSC("<0-0>", "Null interface number");
						enableC.show.ip.ospf["request-list"].Null["<0-0>"].addSC("A.B.C.D", "neighbor router ID");
				enableC.show.ip.ospf["request-list"].addSC("Serial", "Serial");
					enableC.show.ip.ospf["request-list"].Serial.addSC("<0-6>", "Serial interface number");
				enableC.show.ip.ospf["request-list"].addSC("Tunnel", "Tunnel interface");
					enableC.show.ip.ospf["request-list"].Tunnel.addSC("<0-2147483647>", "Tunnel interface number");
				enableC.show.ip.ospf["request-list"].addSC("Vif", "PGM Multicast Host interface");
					enableC.show.ip.ospf["request-list"].Vif.addSC("<1-1>", "Vif interface number");
				enableC.show.ip.ospf["request-list"].addSC("Virtual-Template", "Virtual Template interface");
					enableC.show.ip.ospf["request-list"]["Virtual-Template"].addSC("<1-25>", "Virtual-Template interface number");
				enableC.show.ip.ospf["request-list"].addSC("Virtual-TokenRing", "Virtual TokenRing");
					enableC.show.ip.ospf["request-list"]["Virtual-TokenRing"].addSC("<0-2147483647>", "Virtual-TokenRing interface number");
			enableC.show.ip.ospf.addSC("retransmission-list", "Link state retransmission list");
				enableC.show.ip.ospf["retransmission-list"].addSC("A.B.C.D", "neighbor router ID");
				enableC.show.ip.ospf["retransmission-list"].addSC("Async", "Async interface");
					enableC.show.ip.ospf["retransmission-list"].Async.addSC("<1-129>", "Async interface number");
				enableC.show.ip.ospf["retransmission-list"].addSC("BRI", "ISDN Basic Rate Interface");
					enableC.show.ip.ospf["retransmission-list"].BRI.addSC("<0-6>", "BRI interface number");
				enableC.show.ip.ospf["retransmission-list"].addSC("BVI", "Bridge-Group Virtual Interface");
					enableC.show.ip.ospf["retransmission-list"].BVI.addSC("<1-255>", "BVI interface number");
				enableC.show.ip.ospf["retransmission-list"].addSC("CTunnel", "CTunnel interface");
					enableC.show.ip.ospf["retransmission-list"].CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
				enableC.show.ip.ospf["retransmission-list"].addSC("Dialer", "Dialer interface");
					enableC.show.ip.ospf["retransmission-list"].Dialer.addSC("<0-799>", "Dialer interface number");
						enableC.show.ip.ospf["retransmission-list"].Dialer["<0-799>"].addSC("A.B.C.D", "neighbor router ID");
				enableC.show.ip.ospf["retransmission-list"].addSC("Ethernet", "IEEE 802.3");
					enableC.show.ip.ospf["retransmission-list"].Ethernet.addSC("<0-6>", "Ethernet interface number");
				enableC.show.ip.ospf["retransmission-list"].addSC("Lex", "Lex interface");
					enableC.show.ip.ospf["retransmission-list"].Lex.addSC("<0-2147483647>", "Lex interface number");
				enableC.show.ip.ospf["retransmission-list"].addSC("Loopback", "Loopback interface");
					enableC.show.ip.ospf["retransmission-list"].Loopback.addSC("<0-2147483647>", "Loopback interface number");
						enableC.show.ip.ospf["retransmission-list"].Loopback["<0-2147483647>"].addSC("A.B.C.D", "neighbor router ID");
				enableC.show.ip.ospf["retransmission-list"].addSC("Multilink", "Multilink-group interface");
					enableC.show.ip.ospf["retransmission-list"].Multilink.addSC("<1-2147483647>", "Multilink interface number");
				enableC.show.ip.ospf["retransmission-list"].addSC("Null", "Null interface");
					enableC.show.ip.ospf["retransmission-list"].Null.addSC("<0-0>", "Null interface number");
						enableC.show.ip.ospf["retransmission-list"].Null["<0-0>"].addSC("A.B.C.D", "neighbor router ID");
				enableC.show.ip.ospf["retransmission-list"].addSC("Serial", "Serial");
					enableC.show.ip.ospf["retransmission-list"].Serial.addSC("<0-6>", "Serial interface number");
				enableC.show.ip.ospf["retransmission-list"].addSC("Tunnel", "Tunnel interface");
					enableC.show.ip.ospf["retransmission-list"].Tunnel.addSC("<0-2147483647>", "Tunnel interface number");
				enableC.show.ip.ospf["retransmission-list"].addSC("Vif", "PGM Multicast Host interface");
					enableC.show.ip.ospf["retransmission-list"].Vif.addSC("<1-1>", "Vif interface number");
				enableC.show.ip.ospf["retransmission-list"].addSC("Virtual-Template", "Virtual Template interface");
					enableC.show.ip.ospf["retransmission-list"]["Virtual-Template"].addSC("<1-25>", "Virtual-Template interface number");
				enableC.show.ip.ospf["retransmission-list"].addSC("Virtual-TokenRing", "Virtual TokenRing");
					enableC.show.ip.ospf["retransmission-list"]["Virtual-TokenRing"].addSC("<0-2147483647>", "Virtual-TokenRing interface number");
			enableC.show.ip.ospf.addSC("summary-address", "Summary-address redistribution Information");
			enableC.show.ip.ospf.addSC("virtual-links", "Virtual link information");
		enableC.show.ip.addSC("pgm", "PGM Reliable Transport Protocol");
		enableC.show.ip.addSC("protocols", "IP routing protocol process parameters and statistics");
		enableC.show.ip.addSC("rip", "IP RIP show commands");
		enableC.show.ip.addSC("route", "IP routing table");
			enableC.show.ip.route.addSC("bgp", "Border Gateway Protocol (BGP)");
			enableC.show.ip.route.addSC("connected", "Connected");
			enableC.show.ip.route.addSC("eigrp", "Enhanced Interior Gateway Routing Protocol (EIGRP)");
			enableC.show.ip.route.addSC("ospf", "Open Shortest Path First (OSPF)");
			enableC.show.ip.route.addSC("profile", "IP routing table profile");
			enableC.show.ip.route.addSC("rip", "Routing Information Protocol (RIP)");
			enableC.show.ip.route.addSC("static", "Static routes");
			enableC.show.ip.route.addSC("summary", "Summary of all routes");
		enableC.show.ip.addSC("rpf", "Display RPF information for multicast source");
			enableC.show.ip.rpf.addSC("Hostname or A.B.C.D", "IP name or address of multicast source");
				enableC.show.ip.rpf["Hostname or A.B.C.D"].addSC("metric", "Metric");
		enableC.show.ip.addSC("rsvp", "RSVP information");
		enableC.show.ip.addSC("rtp", "RTP/UDP/IP header-compression statistics");
		enableC.show.ip.addSC("sap", "Session Announcement Protocol cache");
		enableC.show.ip.addSC("sockets", "Open IP sockets");
		enableC.show.ip.addSC("tcp", "TCP/IP header-compression statistics");
		enableC.show.ip.addSC("traffic", "IP protocol statistics");
		enableC.show.ip.addSC("vrf", "VPN Routing/Forwarding instance information");
			enableC.show.ip.vrf.addSC("WORD", "VPN Routing/Forwarding instance name");
			enableC.show.ip.vrf.addSC("brief", "Brief VPN Routing/Forwarding instance information");
				enableC.show.ip.vrf.brief.addSC("WORD", "VPN Routing/Forwarding instance name");
			enableC.show.ip.vrf.addSC("detail", "Detailed VPN Routing/Forwarding instance information");
				enableC.show.ip.vrf.detail.addSC("WORD", "VPN Routing/Forwarding instance name");
			enableC.show.ip.vrf.addSC("id", "Show VPN Routing/Forwarding VPN-ID information");
				enableC.show.ip.vrf.id.addSC("WORD", "VPN Routing/Forwarding instance name");
			enableC.show.ip.vrf.addSC("interfaces", "Show VPN Routing/Forwarding interface information");
				enableC.show.ip.vrf.interfaces.addSC("WORD", "VPN Routing/Forwarding instance name");
		enableC.show.ip.addSC("wccp", "WCCP information");
	enableC.show.addSC("ipv6", "IPv6 information");
	enableC.show.addSC("line", "TTY line information");
	enableC.show.addSC("modemcap", "Show Modem Capabilities database");
		enableC.show.modemcap.addSC("WORD", "Modem entry to use");
	enableC.show.addSC("parser", "Display parser information");
	enableC.show.addSC("policy-map", "Show QoS Policy Map");
	enableC.show.addSC("ppp", "PPP parameters and statistics");
		enableC.show.ppp.addSC("multilink", "Multilink PPP bundle information");
		enableC.show.ppp.addSC("queues", "PPP request queues");
	enableC.show.addSC("privilege", "Show current privilege level");
	enableC.show.addSC("processes", "Active process statistics");
		enableC.show.processes.addSC("cpu", "Show CPU use per process");
			enableC.show.processes.cpu.addSC("history", "Show CPU history in graph format");
		enableC.show.processes.addSC("memory", "Show memory use per process");
			enableC.show.processes.memory.addSC("<1-4294967295>", "[pid]");
	enableC.show.addSC("protocols", "Active network routing protocols");
	enableC.show.addSC("qdm", "Show information about QoS Device Manager");
		enableC.show.qdm.addSC("status", "Information and status about currently active QDM web-based clients");
	enableC.show.addSC("queue", "Show queue contents");
	enableC.show.addSC("queueing", "Show queueing configuration");
		enableC.show.queueing.addSC("interface", "");
		enableC.show.queueing.addSC("custom", "custom queueing list configuration");
		enableC.show.queueing.addSC("fair", "fair queueing configuration");
			enableC.show.queueing.fair.addSC("interface", "");
		enableC.show.queueing.addSC("priority", "priority queueing list configuration");
	enableC.show.addSC("reload", "Scheduled reload information");
	enableC.show.addSC("rhosts", "Remote-host+user equivalences");
	enableC.show.addSC("rif", "RIF cache entries");
	enableC.show.addSC("rmon", "rmon statistics");
	enableC.show.addSC("running-config", "Current operating configuration");
	enableC.show.addSC("snapshot", "Snapshot parameters and statistics");
	enableC.show.addSC("snmp", "snmp statistics");
	enableC.show.addSC("sntp", "Simple network time protocol");
	enableC.show.addSC("spanning-tree", "Spanning tree topology");
	enableC.show.addSC("standby", "Hot Standby Router Protocol (HSRP) information");
	enableC.show.addSC("startup-config", "Contents of startup configuration");
	enableC.show.addSC("subsys", "Show subsystem information");
	enableC.show.addSC("tacacs", "Shows tacacs+ server statistics");
	enableC.show.addSC("tcp", "Status of TCP connections");
	enableC.show.addSC("template", "Template information");
		enableC.show.template.addSC("WORD", "Specify template name");
	enableC.show.addSC("terminal", "Display terminal configuration parameters");
	enableC.show.addSC("tgrm", "Trunk Group Resource Mananger info");
	enableC.show.addSC("time-range", "Time range");
	enableC.show.addSC("track", "Tracking information");
	enableC.show.addSC("traffic-shape", "traffic rate shaping configuration");
	enableC.show.addSC("users", "Display information about terminal lines");
	enableC.show.addSC("version", "System hardware and software status");
	enableC.show.addSC("vpdn", "VPDN information");
		enableC.show.vpdn.addSC("domain", "VPDN domain info");
		enableC.show.vpdn.addSC("group", "VPDN group info");
			enableC.show.vpdn.group.addSC("WORD", "Name of VPDN group");
				enableC.show.vpdn.group.WORD.addSC("domain", "Domain session info");
				enableC.show.vpdn.group.WORD.addSC("endpoint", "Endpoint session info");
		enableC.show.vpdn.addSC("history", "History logging");
			enableC.show.vpdn.history.addSC("failure", "Show VPDN User Failure History Table");
				enableC.show.vpdn.history.failure.addSC("WORD", "Name of user");
		enableC.show.vpdn.addSC("multilink", "Multilink VPDN session info");
		enableC.show.vpdn.addSC("session", "Session (call) information");
			enableC.show.vpdn.session.addSC("all", "All session information");
				enableC.show.vpdn.session.state.addSC("username", "Username filter");
					enableC.show.vpdn.session.state.username.addSC("WORD", "Username");
		enableC.show.vpdn.addSC("tunnel", "Tunnel information");
			enableC.show.vpdn.tunnel.addSC("all", "All tunnel information");
	enableC.show.addSC("vtemplate", "Virtual Template interface information");
		enableC.show.vtemplate.addSC("<1-200>", "Virtual Template interface number");
	enableC.show.addSC("whoami", "Info on current tty line");
enableC.addSC("slip", "Start Serial-line IP (SLIP)");
enableC.addSC("squeeze", "Squeeze a filesystem");
enableC.addSC("start-chat", "Start a chat-script on a line");
enableC.addSC("systat", "Display information about terminal lines");
enableC.addSC("telnet", "Open a telnet connection");
	enableC.telnet.addSC("WORD", "IP address or hostname of a remote system");
enableC.addSC("terminal", "Set terminal line parameters");
	enableC.terminal.addSC("txspeed", "Set the transmit speeds");
		enableC.terminal.txspeed.addSC("<0-4294967295>", "Transmit speed");
	enableC.terminal.addSC("width", "Set width of the display terminal");
		enableC.terminal.width.addSC("<0-512>", "Number of characters on a screen line");
enableC.addSC("test", "Test subsystems, memory, and interfaces");
enableC.addSC("traceroute", "Trace route to destination");
	enableC.traceroute.addSC("WORD", "Trace route to destination address or hostname");
	enableC.traceroute.addSC("ip", "IP Trace");
		enableC.traceroute.ip.addSC("WORD", "Trace route to destination address or hostname");
	enableC.traceroute.addSC("ipv6", "IPv6 Trace");
		enableC.traceroute.ipv6.addSC("WORD", "Trace route to destination address or hostname");
	enableC.traceroute.addSC("ipx", "IPX Trace");
		enableC.traceroute.ipx.addSC("WORD", "Trace route to destination address or hostname");
enableC.addSC("tunnel", "Open a tunnel connection");
	enableC.tunnel.addSC("WORD", "Address or hostname of a remote system");
		enableC.tunnel.WORD.addSC("debug", "Enable tunnel debugging output");
enableC.addSC("udptn", "Open an udptn connection");
enableC.addSC("undebug", "Disable debugging functions (see also 'debug')");
	enableC.undebug.addSC("aaa", "AAA Authentication, Authorization and Accounting");
		enableC.undebug.aaa.addSC("accounting", "Accounting");
		enableC.undebug.aaa.addSC("administrative", "Administrative");
		enableC.undebug.aaa.addSC("attr", "AAA Attr Manager");
		enableC.undebug.aaa.addSC("authentication", "Authentication");
		enableC.undebug.aaa.addSC("authorization", "Authorization");
		enableC.undebug.aaa.addSC("db", "AAA DB Manager");
		enableC.undebug.aaa.addSC("id", "AAA Unique Id");
		enableC.undebug.aaa.addSC("ipc", "AAA IPC");
		enableC.undebug.aaa.addSC("per-user", "Per-user attributes");
		enableC.undebug.aaa.addSC("pod", "AAA POD processing");
		enableC.undebug.aaa.addSC("protocol", "AAA protocol processing");
		enableC.undebug.aaa.addSC("subsys", "AAA Subsystem");
	enableC.undebug.addSC("all", "Enable all debugging");
	enableC.undebug.addSC("arp", "IP ARP and HP Probe transactions");
	enableC.undebug.addSC("async", "Async interface information");
		enableC.undebug.async.addSC("async-queue", "Rotary Line Queuing Activity");
		enableC.undebug.async.addSC("framing", "Packet framing");
		enableC.undebug.async.addSC("packet", "Packet I/O");
		enableC.undebug.async.addSC("state", "Interface state changes");
	enableC.undebug.addSC("bgp", "BGP information");
		enableC.undebug.bgp.addSC("dampening", "BGP dampening");
		enableC.undebug.bgp.addSC("events", "BGP events");
		enableC.undebug.bgp.addSC("ipv6", "Address family");
		enableC.undebug.bgp.addSC("keepalives", "BGP keepalives");
		enableC.undebug.bgp.addSC("nsap", "Address family");
		enableC.undebug.bgp.addSC("updates", "BGP updates");
	enableC.undebug.addSC("callback", "Callback activity");
	enableC.undebug.addSC("cdp", "CDP information");
		enableC.undebug.cdp.addSC("adjacency", "CDP neighbor info");
		enableC.undebug.cdp.addSC("events", "CDP events");
		enableC.undebug.cdp.addSC("ip", "CDP ip info");
		enableC.undebug.cdp.addSC("packets", "CDP packet-related information");
	enableC.undebug.addSC("chat", "Chat scripts activity");
		enableC.undebug.chat.addSC("line", "Single TTY line to debug scripts");
	enableC.undebug.addSC("compress", "COMPRESS traffic");
	enableC.undebug.addSC("condition", "Condition");
		enableC.undebug.condition.addSC("<1-1000>", "Condition identifier");
		enableC.undebug.condition.addSC("all", "All conditions");
		enableC.undebug.condition.addSC("called", "called number");
		enableC.undebug.condition.addSC("calling", "calling");
		enableC.undebug.condition.addSC("standby", "interface group");
		enableC.undebug.condition.addSC("username", "username");
	enableC.undebug.addSC("confmodem", "Modem configuration database");
	enableC.undebug.addSC("conn", "Connection Manager information");
	enableC.undebug.addSC("custom-queue", "Custom output queueing");
	enableC.undebug.addSC("dhcp", "DHCP client activity");
		enableC.undebug.dhcp.addSC("detail", "DHCP packet content");
	enableC.undebug.addSC("dialer", "Dial on Demand");
		enableC.undebug.dialer.addSC("events", "Dial on demand events");
		enableC.undebug.dialer.addSC("forwarding", "Dialer forwarding");
		enableC.undebug.dialer.addSC("map", "Dynamic dialer maps");
		enableC.undebug.dialer.addSC("packets", "Dial on demand traffic");
	enableC.undebug.addSC("dnsix", "Dnsix information");
		enableC.undebug.dnsix.addSC("dmdp", "Debug DNSIX/DMDP protocol");
		enableC.undebug.dnsix.addSC("dnssec", "Debug DNSSEC protocol");
		enableC.undebug.dnsix.addSC("nat", "Debug DNSIX/NAT protocol");
	enableC.undebug.addSC("domain", "Domain Name System");
		enableC.undebug.domain.addSC("replies", "DNS replies only");
	enableC.undebug.addSC("dxi", "atm-dxi information");
		enableC.undebug.dxi.addSC("events", "Important atm-dxi events");
		enableC.undebug.dxi.addSC("packet", "ATM DXI packets");
	enableC.undebug.addSC("eigrp", "EIGRP Protocol information");
		enableC.undebug.eigrp.addSC("fsm", "EIGRP Dual Finite State Machine events/actions");
		enableC.undebug.eigrp.addSC("neighbors", "EIGRP neighbors");
		enableC.undebug.eigrp.addSC("packets", "EIGRP packets");
		enableC.undebug.eigrp.addSC("transmit", "EIGRP transmission events");
	enableC.undebug.addSC("entry", "Incoming queue entries");
	enableC.undebug.addSC("ethernet-interface", "Ethernet network interface events");
	enableC.undebug.addSC("fastethernet", "Fast Ethernet interface information");
		enableC.undebug.fastethernet.addSC("events", "Fast Ethernet events");
		enableC.undebug.fastethernet.addSC("packets", "Fast Ethernet packets");
	enableC.undebug.addSC("frame-relay", "Frame Relay");
	enableC.undebug.addSC("interface", "interface");
		enableC.undebug.interface.addSC("Async", "Async interface");
		enableC.undebug.interface.addSC("BVI", "Bridge-Group Virtual Interface");
		enableC.undebug.interface.addSC("CTunnel", "CTunnel interface");
		enableC.undebug.interface.addSC("Dialer", "Dialer interface");
		enableC.undebug.interface.addSC("FastEthernet", "FastEthernet IEEE 802.3");
		enableC.undebug.interface.addSC("Group-Async", "Async Group interface");
		enableC.undebug.interface.addSC("Lex", "Lex interface");
		enableC.undebug.interface.addSC("Loopback", "Loopback interface");
		enableC.undebug.interface.addSC("MFR", "Multilink Frame Relay bundle interface");
		enableC.undebug.interface.addSC("Multilink", "Multilink-group interface");
		enableC.undebug.interface.addSC("Null", "Null interface");
		enableC.undebug.interface.addSC("Serial", "Serial");
		enableC.undebug.interface.addSC("Tunnel", "Tunnel interface");
		enableC.undebug.interface.addSC("Vif", "PGM Multicast Host interface");
		enableC.undebug.interface.addSC("Virtual-Template", "Virtual Template interface");
		enableC.undebug.interface.addSC("Virtual-TokenRing", "Virtual TokenRing");
	enableC.undebug.addSC("ip", "IP information");
		enableC.undebug.ip.addSC("bgp", "BGP information");
		enableC.undebug.ip.addSC("cache", "IP cache operations");
		enableC.undebug.ip.addSC("cef", "IP CEF operations");
		enableC.undebug.ip.addSC("cgmp", "CGMP protocol activity");
		enableC.undebug.ip.addSC("dhcp", "Dynamic Host Configuration Protocol");
		enableC.undebug.ip.addSC("dvmrp", "DVMRP protocol activity");
		enableC.undebug.ip.addSC("eigrp", "IP-EIGRP information");
		enableC.undebug.ip.addSC("error", "IP error debugging");
		enableC.undebug.ip.addSC("flow", "IP Flow switching operations");
		enableC.undebug.ip.addSC("ftp", "FTP dialogue");
		enableC.undebug.ip.addSC("html", "HTML connections");
		enableC.undebug.ip.addSC("http", "HTTP connections");
		enableC.undebug.ip.addSC("icmp", "ICMP transactions");
		enableC.undebug.ip.addSC("igmp", "IGMP protocol activity");
		enableC.undebug.ip.addSC("igrp", "IGRP information");
		enableC.undebug.ip.addSC("interface", "IP interface configuration changes");
		enableC.undebug.ip.addSC("mbgp", "MBGP information");
		enableC.undebug.ip.addSC("mcache", "IP multicast cache operations");
		enableC.undebug.ip.addSC("mhbeat", "IP multicast heartbeat monitoring");
		enableC.undebug.ip.addSC("mpacket", "IP multicast packet debugging");
		enableC.undebug.ip.addSC("mrm", "IP Multicast Routing Monitor");
		enableC.undebug.ip.addSC("mrouting", "IP multicast routing table activity");
		enableC.undebug.ip.addSC("msdp", "Multicast Source Discovery Protocol (MSDP)");
		enableC.undebug.ip.addSC("mtag", "IP multicast tagswitching activity");
		enableC.undebug.ip.addSC("nat", "NAT events");
		enableC.undebug.ip.addSC("nbar", "StILE - traffic classification Engine");
		enableC.undebug.ip.addSC("ospf", "OSPF information");
		enableC.undebug.ip.addSC("packet", "General IP debugging and IPSO security transactions");
		enableC.undebug.ip.addSC("peer", "IP peer address activity");
		enableC.undebug.ip.addSC("pgm", "PGM Reliable Transport Protocol");
		enableC.undebug.ip.addSC("pim", "PIM protocol activity");
		enableC.undebug.ip.addSC("policy", "Policy routing");
		enableC.undebug.ip.addSC("rgmp", "RGMP protocol activity");
		enableC.undebug.ip.addSC("rip", "RIP protocol transactions");
		enableC.undebug.ip.addSC("routing", "Routing table events");
		enableC.undebug.ip.addSC("rsvp", "RSVP protocol activity");
		enableC.undebug.ip.addSC("rtp", "RTP information");
		enableC.undebug.ip.addSC("sd", "Session Directory (SD)");
		enableC.undebug.ip.addSC("security", "IP security options");
		enableC.undebug.ip.addSC("socket", "Socket event");
		enableC.undebug.ip.addSC("tcp", "TCP information");
		enableC.undebug.ip.addSC("tempacl", "IP temporary ACL");
		enableC.undebug.ip.addSC("udp", "UDP based transactions");
		enableC.undebug.ip.addSC("urd", "URL RenDezvous (URD)");
		enableC.undebug.ip.addSC("wccp", "WCCP information");
	enableC.undebug.addSC("ipv6", "IPv6 information");
	enableC.undebug.addSC("lapb", "LAPB protocol transactions");
	enableC.undebug.addSC("list", "Set interface or/and access list for the next debug command");
		enableC.undebug.list.addSC("<0-2699>", "access list");
		enableC.undebug.list.addSC("Async", "Async interface");
		enableC.undebug.list.addSC("BVI", "Bridge-Group Virtual Interface");
		enableC.undebug.list.addSC("CTunnel", "CTunnel interface");
		enableC.undebug.list.addSC("Dialer", "Dialer interface");
		enableC.undebug.list.addSC("FastEthernet", "FastEthernet IEEE 802.3");
		enableC.undebug.list.addSC("Group-Async", "Async Group interface");
		enableC.undebug.list.addSC("Lex", "Lex interface");
		enableC.undebug.list.addSC("Loopback", "Loopback interface");
		enableC.undebug.list.addSC("MFR", "Multilink Frame Relay bundle interface");
		enableC.undebug.list.addSC("Multilink", "Multilink-group interface");
		enableC.undebug.list.addSC("Null", "Null interface");
		enableC.undebug.list.addSC("Serial", "Serial");
		enableC.undebug.list.addSC("Tunnel", "Tunnel interface");
		enableC.undebug.list.addSC("Vif", "PGM Multicast Host interface");
		enableC.undebug.list.addSC("Virtual-Template", "Virtual Template interface");
		enableC.undebug.list.addSC("Virtual-TokenRing", "Virtual TokenRing");
	enableC.undebug.addSC("llc2", "LLC2 type II Information");
	enableC.undebug.addSC("modem", "Modem control/process activation");
	enableC.undebug.addSC("nvram", "Debug NVRAM behavior");
	enableC.undebug.addSC("ppp", "PPP (Point to Point Protocol) information");		enableC.undebug.ppp.addSC("authentication", "CHAP and PAP authentication");
		enableC.undebug.ppp.addSC("bap", "BAP protocol transactions");
		enableC.undebug.ppp.addSC("cbcp", "Callback Control Protocol negotiation");
		enableC.undebug.ppp.addSC("error", "Protocol errors and error statistics");
		enableC.undebug.ppp.addSC("events", "Detailed events");
		enableC.undebug.ppp.addSC("forwarding", "PPP layer 2 forwarding");
		enableC.undebug.ppp.addSC("mppe", "MPPE Events");
		enableC.undebug.ppp.addSC("multilink", "Multilink activity");
		enableC.undebug.ppp.addSC("negotiation", "Protocol parameter negotiation");
		enableC.undebug.ppp.addSC("packet", "Low-level PPP packet dump");
		enableC.undebug.ppp.addSC("tasks", "Event Manager");
	enableC.undebug.addSC("priority", "Priority output queueing");
	enableC.undebug.addSC("qdm", "QoS Device Manager");
	enableC.undebug.addSC("radius", "RADIUS protocol");
		enableC.undebug.radius.addSC("accounting", "RADIUS accounting packets only");
		enableC.undebug.radius.addSC("authentication", "RADIUS authentication packets only");
		enableC.undebug.radius.addSC("brief", "Only I/O transactions are recorded");
		enableC.undebug.radius.addSC("failover", "Packets sent upon fail-over");
		enableC.undebug.radius.addSC("retransmit", "Retransmission of packets");
	enableC.undebug.addSC("rif", "RIF cache transactions");
	enableC.undebug.addSC("rtr", "RTR Monitor Information");
		enableC.undebug.rtr.addSC("error", "Output RTR Error Messages");
		enableC.undebug.rtr.addSC("trace", "Trace RTR");
	enableC.undebug.addSC("serial", "Serial interface information");
		enableC.undebug.serial.addSC("event", "Serial network interface event");
		enableC.undebug.serial.addSC("interface", "Serial interface events");
		enableC.undebug.serial.addSC("m32_dma", "Serial M32 DMA");
		enableC.undebug.serial.addSC("mueslix", "Serial Mueslix");
		enableC.undebug.serial.addSC("packet", "Serial network interface packets");
		enableC.undebug.serial.addSC("revive", "Serial Revive");
	enableC.undebug.addSC("smf", "Software MAC filter");
		enableC.undebug.smf.addSC("updates", "address insertions and deletions");
	enableC.undebug.addSC("snapshot", "Snapshot activity");
	enableC.undebug.addSC("snmp", "SNMP information");
		enableC.undebug.snmp.addSC("headers", "SNMP packet headers");
		enableC.undebug.snmp.addSC("packets", "SNMP packets");
		enableC.undebug.snmp.addSC("timers", "SNMP timer activity");
	enableC.undebug.addSC("sntp", "SNTP information");
		enableC.undebug.sntp.addSC("adjust", "SNTP clock adjustments");
		enableC.undebug.sntp.addSC("packets", "SNTP packets");
		enableC.undebug.sntp.addSC("select", "SNTP clock selection");
	enableC.undebug.addSC("standby", "Hot Standby Router Protocol (HSRP)");
		enableC.undebug.standby.addSC("errors", "HSRP errors");
		enableC.undebug.standby.addSC("events", "HSRP events");
		enableC.undebug.standby.addSC("packets", "HSRP packets");
		enableC.undebug.standby.addSC("terse", "Display limited range of HSRP errors, events and packets");
	enableC.undebug.addSC("tacacs", "TACACS authentication and authorization");
		enableC.undebug.tacacs.addSC("accounting", "TACACS+ protocol accounting");
		enableC.undebug.tacacs.addSC("authentication", "TACACS+ protocol authentication");
		enableC.undebug.tacacs.addSC("authorization", "TACACS+ protocol authorization");
		enableC.undebug.tacacs.addSC("events", "TACACS+ protocol events");
		enableC.undebug.tacacs.addSC("packet", "TACACS+ packets");
	enableC.undebug.addSC("telnet", "Incoming telnet connections");
	enableC.undebug.addSC("template", "Template activity");
	enableC.undebug.addSC("tftp", "TFTP debugging");
		enableC.undebug.tftp.addSC("events", "TFTP events");
		enableC.undebug.tftp.addSC("packets", "TFTP packets");
	enableC.undebug.addSC("tunnel", "Generic Tunnel Interface");
	enableC.undebug.addSC("udptn", "UDPtn async data transport");
	enableC.undebug.addSC("vlan", "vLAN information");
		enableC.undebug.vlan.addSC("packets", "vLAN packet information");
	enableC.undebug.addSC("vpdn", "VPDN information");
		enableC.undebug.vpdn.addSC("call", "VPDN call");
		enableC.undebug.vpdn.addSC("error", "VPDN protocol errors");
		enableC.undebug.vpdn.addSC("event", "VPDN event");
		enableC.undebug.vpdn.addSC("l2tp-sequencing", "L2TP sequencing");
		enableC.undebug.vpdn.addSC("l2x-data", "L2F/L2TP data packets");
		enableC.undebug.vpdn.addSC("l2x-errors", "L2F/L2TP protocol errors");
		enableC.undebug.vpdn.addSC("l2x-events", "L2F/L2TP protocol events");
		enableC.undebug.vpdn.addSC("l2x-packets", "L2F/L2TP control packets");
		enableC.undebug.vpdn.addSC("message", "VPDN inter-process message");
		enableC.undebug.vpdn.addSC("packet", "VPDN packet");
		enableC.undebug.vpdn.addSC("pppoe-data", "PPPoE data packets");
		enableC.undebug.vpdn.addSC("pppoe-errors", "PPPoE protocol errors");
		enableC.undebug.vpdn.addSC("pppoe-events", "PPPoE protocol events");
		enableC.undebug.vpdn.addSC("pppoe-packets", "PPPoE control packets");
	enableC.undebug.addSC("vpn", "VPN information");
		enableC.undebug.vpn.addSC("authorization", "VPN authorization information");
	enableC.undebug.addSC("vprofile", "Virtual Profile information");
		enableC.undebug.vprofile.addSC("packet", "Virtual Profile packet");
		enableC.undebug.vprofile.addSC("subblock", "Virtual Profile subblock");
	enableC.undebug.addSC("vtemplate", "Virtual Template information");

enableC.addSC("verify", "Verify a file");
	enableC.verify.addSC("flash:", "File to be verified");
enableC.addSC("where", "List active connections");
enableC.addSC("write", "Write running configuration to memory, network, or terminal");
	enableC.write.addSC("erase", "Erase NV memory");
	enableC.write.addSC("memory", "Write to NV memory");
	enableC.write.addSC("terminal", "Write to terminal");
enableC.addSC("x28", "Become an X.28 PAD");
enableC.addSC("x3", "Set X.3 parameters on PAD");