summaryrefslogtreecommitdiffstats
path: root/Bachelor/CCNA4/en_CCNA4_v30/elabs/Engine/Router 3640/xcmd_enable2.txt
blob: 086f01a7deb2abd1a052fca19a50a95402985411 (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
		enableC.show.ip.addSC("ospf", "OSPF information");

			enableC.show.ip.ospf.addSC("<1-4294967295>", "Process ID number");

				enableC.show.ip.ospf["<1-4294967295>"].addSC("<0-4294967295>", "OSPF area ID as a decimal number");

				enableC.show.ip.ospf["<1-4294967295>"].addSC("A.B.C.D", "OSPF area ID in IP address format");

			enableC.show.ip.ospf.addSC("border-routers", "Border and Boundary Router Information");

			enableC.show.ip.ospf.addSC("database", "Database summary");

				enableC.show.ip.ospf.database.addSC("adv-router", "Advertising Router link states");

					enableC.show.ip.ospf.database["adv-router"].addSC("A.B.C.D", "Advertising Router (as an IP address)");

				enableC.show.ip.ospf.database.addSC("asbr-summary", "ASBR summary link states");

					enableC.show.ip.ospf.database["asbr-summary"].addSC("A.B.C.D", "Link state ID (as an IP address)");

					enableC.show.ip.ospf.database["asbr-summary"].addSC("adv-router", "Advertising Router link states");

						enableC.show.ip.ospf.database["asbr-summary"]["adv-router"].addSC("A.B.C.D", "Advertising Router (as an IP address)");

					enableC.show.ip.ospf.database["asbr-summary"].addSC("internal", "Internal LSA information");

						enableC.show.ip.ospf.database["asbr-summary"].internal.addSC("adv-router", "Advertising Router link states");

				enableC.show.ip.ospf.database.addSC("database-summary", "Summary of database");

				enableC.show.ip.ospf.database.addSC("external", "External link states");

					enableC.show.ip.ospf.database.external.addSC("A.B.C.D", "Link state ID (as an IP address)");

					enableC.show.ip.ospf.database.external.addSC("adv-router", "Advertising Router link states");

						enableC.show.ip.ospf.database.external["adv-router"].addSC("A.B.C.D", "Advertising Router (as an IP address)");

					enableC.show.ip.ospf.database.external.addSC("internal", "Internal LSA information");

						enableC.show.ip.ospf.database.external.internal.addSC("adv-router", "Advertising Router link states");

				enableC.show.ip.ospf.database.addSC("network", "Network link states");

					enableC.show.ip.ospf.database.network.addSC("A.B.C.D", "Link state ID (as an IP address)");

					enableC.show.ip.ospf.database.network.addSC("adv-router", "Advertising Router link states");

						enableC.show.ip.ospf.database.network["adv-router"].addSC("A.B.C.D", "Advertising Router (as an IP address)");

					enableC.show.ip.ospf.database.network.addSC("internal", "Internal LSA information");

						enableC.show.ip.ospf.database.network.internal.addSC("adv-router", "Advertising Router link states");

				enableC.show.ip.ospf.database.addSC("nssa-external", "NSSA External link states");

					enableC.show.ip.ospf.database["nssa-external"].addSC("A.B.C.D", "Link state ID (as an IP address)");

					enableC.show.ip.ospf.database["nssa-external"].addSC("adv-router", "Advertising Router link states");

						enableC.show.ip.ospf.database["nssa-external"]["adv-router"].addSC("A.B.C.D", "Advertising Router (as an IP address)");

					enableC.show.ip.ospf.database["nssa-external"].addSC("internal", "Internal LSA information");

						enableC.show.ip.ospf.database["nssa-external"].internal.addSC("adv-router", "Advertising Router link states");

				enableC.show.ip.ospf.database.addSC("opaque-area", "Opaque Area link states");

					enableC.show.ip.ospf.database["opaque-area"].addSC("A.B.C.D", "Link state ID (as an IP address)");

					enableC.show.ip.ospf.database["opaque-area"].addSC("adv-router", "Advertising Router link states");

						enableC.show.ip.ospf.database["opaque-area"]["adv-router"].addSC("A.B.C.D", "Advertising Router (as an IP address)");

					enableC.show.ip.ospf.database["opaque-area"].addSC("internal", "Internal LSA information");

						enableC.show.ip.ospf.database["opaque-area"].internal.addSC("adv-router", "Advertising Router link states");

				enableC.show.ip.ospf.database.addSC("opaque-as", "Opaque AS link states");

					enableC.show.ip.ospf.database["opaque-as"].addSC("A.B.C.D", "Link state ID (as an IP address)");

					enableC.show.ip.ospf.database["opaque-as"].addSC("adv-router", "Advertising Router link states");

						enableC.show.ip.ospf.database["opaque-as"]["adv-router"].addSC("A.B.C.D", "Advertising Router (as an IP address)");

					enableC.show.ip.ospf.database["opaque-as"].addSC("internal", "Internal LSA information");

						enableC.show.ip.ospf.database["opaque-as"].internal.addSC("adv-router", "Advertising Router link states");

				enableC.show.ip.ospf.database.addSC("opaque-link", "Opaque Link-Local link states");

					enableC.show.ip.ospf.database["opaque-link"].addSC("A.B.C.D", "Link state ID (as an IP address)");

					enableC.show.ip.ospf.database["opaque-link"].addSC("adv-router", "Advertising Router link states");

						enableC.show.ip.ospf.database["opaque-link"]["adv-router"].addSC("A.B.C.D", "Advertising Router (as an IP address)");

					enableC.show.ip.ospf.database["opaque-link"].addSC("internal", "Internal LSA information");

						enableC.show.ip.ospf.database["opaque-link"].internal.addSC("adv-router", "Advertising Router link states");

				enableC.show.ip.ospf.database.addSC("router", "Router link states");

					enableC.show.ip.ospf.database.router.addSC("A.B.C.D", "Link state ID (as an IP address)");

					enableC.show.ip.ospf.database.router.addSC("adv-router", "Advertising Router link states");

						enableC.show.ip.ospf.database.router["adv-router"].addSC("A.B.C.D", "Advertising Router (as an IP address)");

					enableC.show.ip.ospf.database.router.addSC("internal", "Internal LSA information");

						enableC.show.ip.ospf.database.router.internal.addSC("adv-router", "Advertising Router link states");

				enableC.show.ip.ospf.database.addSC("self-originate", "Self-originated link states");

				enableC.show.ip.ospf.database.addSC("summary", "Network summary link states");

					enableC.show.ip.ospf.database.summary.addSC("A.B.C.D", "Link state ID (as an IP address)");

					enableC.show.ip.ospf.database.summary.addSC("adv-router", "Advertising Router link states");

						enableC.show.ip.ospf.database.summary["adv-router"].addSC("A.B.C.D", "Advertising Router (as an IP address)");

					enableC.show.ip.ospf.database.summary.addSC("internal", "Internal LSA information");

						enableC.show.ip.ospf.database.summary.internal.addSC("adv-router", "Advertising Router link states");

					enableC.show.ip.ospf.database.summary.addSC("self-originate", "Self-originated link states");

			enableC.show.ip.ospf.addSC("flood-list", "Link state flood list");

				enableC.show.ip.ospf["flood-list"].addSC("Async", "Async interface");

					enableC.show.ip.ospf["flood-list"].Async.addSC("<1-129>", "Async interface number");

				enableC.show.ip.ospf["flood-list"].addSC("BRI", "ISDN Basic Rate Interface");

					enableC.show.ip.ospf["flood-list"].BRI.addSC("<0-6>", "BRI interface number");

				enableC.show.ip.ospf["flood-list"].addSC("BVI", "Bridge-Group Virtual Interface");

					enableC.show.ip.ospf["flood-list"].BVI.addSC("<1-255>", "BVI interface number");

				enableC.show.ip.ospf["flood-list"].addSC("CTunnel", "CTunnel interface");

					enableC.show.ip.ospf["flood-list"].CTunnel.addSC("<0-2147483647>", "CTunnel interface number");

				enableC.show.ip.ospf["flood-list"].addSC("Dialer", "Dialer interface");

					enableC.show.ip.ospf["flood-list"].Dialer.addSC("<0-799>", "Dialer interface number");

				enableC.show.ip.ospf["flood-list"].addSC("Ethernet", "IEEE 802.3");

					enableC.show.ip.ospf["flood-list"].Ethernet.addSC("<0-6>", "Ethernet interface number");

				enableC.show.ip.ospf["flood-list"].addSC("Lex", "Lex interface");

					enableC.show.ip.ospf["flood-list"].Lex.addSC("<0-2147483647>", "Lex interface number");

				enableC.show.ip.ospf["flood-list"].addSC("Loopback", "Loopback interface");

					enableC.show.ip.ospf["flood-list"].Loopback.addSC("<0-2147483647>", "Loopback interface number");

				enableC.show.ip.ospf["flood-list"].addSC("Multilink", "Multilink-group interface");

					enableC.show.ip.ospf["flood-list"].Multilink.addSC("<1-2147483647>", "Multilink interface number");

				enableC.show.ip.ospf["flood-list"].addSC("Null", "Null interface");

					enableC.show.ip.ospf["flood-list"].Null.addSC("<0-0>", "Null interface number");

				enableC.show.ip.ospf["flood-list"].addSC("Serial", "Serial");

					enableC.show.ip.ospf["flood-list"].Serial.addSC("<0-6>", "Serial interface number");

				enableC.show.ip.ospf["flood-list"].addSC("Tunnel", "Tunnel interface");

					enableC.show.ip.ospf["flood-list"].Tunnel.addSC("<0-2147483647>", "Tunnel interface number");

				enableC.show.ip.ospf["flood-list"].addSC("Vif", "PGM Multicast Host interface");

					enableC.show.ip.ospf["flood-list"].Vif.addSC("<1-1>", "Vif interface number");

				enableC.show.ip.ospf["flood-list"].addSC("Virtual-Template", "Virtual Template interface");

					enableC.show.ip.ospf["flood-list"]["Virtual-Template"].addSC("<1-25>", "Virtual-Template interface number");

				enableC.show.ip.ospf["flood-list"].addSC("Virtual-TokenRing", "Virtual TokenRing");

					enableC.show.ip.ospf["flood-list"]["Virtual-TokenRing"].addSC("<0-2147483647>", "Virtual-TokenRing interface number");

			enableC.show.ip.ospf.addSC("interface", "Interface 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("pim", "PIM information");

		enableC.show.ip.addSC("policy", "Policy routing");

		enableC.show.ip.addSC("prefix-list", "List IP prefix lists");

		enableC.show.ip.addSC("protocols", "IP routing protocol process parameters and statistics");

			enableC.show.ip.protocols.addSC("summary", "Short form answer");

			enableC.show.ip.protocols.addSC("vrf", "Display protocols for a VPN Routing/Forwarding instance");

				enableC.show.ip.protocols.vrf.addSC("WORD", "VPN Routing/Forwarding instance name");

					enableC.show.ip.protocols.vrf.WORD.addSC("summary", "Short form answer");

		enableC.show.ip.addSC("redirects", "IP redirects");

		enableC.show.ip.addSC("rip", "IP RIP show commands");

		enableC.show.ip.addSC("route", "IP routing table");

			enableC.show.ip.route.addSC("Hostname or A.B.C.D", "Network to display information about or hostname");

				enableC.show.ip.route["Hostname or A.B.C.D"].addSC("A.B.C.D", "Network mask");

				enableC.show.ip.route["Hostname or A.B.C.D"].addSC("longer-prefixes", "Show route matching the specified Network/Mask pair only");

			enableC.show.ip.route.addSC("bgp", "Border Gateway Protocol (BGP)");

				enableC.show.ip.route.bgp.addSC("<1-65535>", "Autonomous system number");

			enableC.show.ip.route.addSC("connected", "Connected");

			enableC.show.ip.route.addSC("egp", "Exterior Gateway Protocol (EGP)");

				enableC.show.ip.route.egp.addSC("<0-65535>", "Remote autonomous system number");

			enableC.show.ip.route.addSC("eigrp", "Enhanced Interior Gateway Routing Protocol (EIGRP)");

				enableC.show.ip.route.eigrp.addSC("<1-65535>", "Autonomous system number");

			enableC.show.ip.route.addSC("igrp", "Interior Gateway Routing Protocol (IGRP)");

				enableC.show.ip.route.igrp.addSC("<1-65535>", "Autonomous system number");

			enableC.show.ip.route.addSC("isis", "ISO IS-IS");

				enableC.show.ip.route.isis.addSC("WORD", "ISO routing area tag");

			enableC.show.ip.route.addSC("list", "IP Access list");

				enableC.show.ip.route.list.addSC("<1-199>", "IP access list number");

				enableC.show.ip.route.list.addSC("WORD", "IP access-list name");

			enableC.show.ip.route.addSC("mobile", "Mobile routes");

			enableC.show.ip.route.addSC("odr", "On Demand stub Routes");

			enableC.show.ip.route.addSC("ospf", "Open Shortest Path First (OSPF)");

				enableC.show.ip.route.ospf.addSC("<1-65535>", "Process ID");

					enableC.show.ip.route.ospf["<1-65535>"].addSC("vrf", "VPN Routing/Forwarding Instance");

						enableC.show.ip.route.ospf["<1-65535>"].vrf.addSC("WORD", "VPN Routing/Forwarding Instance (VRF) name");

			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.route.addSC("supernets-only", "Show supernet entries only");

			enableC.show.ip.route.addSC("vrf", "Display routes from a VPN Routing/Forwarding instance");

				enableC.show.ip.route.vrf.addSC("WORD", "VPN Routing/Forwarding instance name");

					enableC.show.ip.route.vrf.WORD.addSC("Hostname or A.B.C.D", "Network to display information about or hostname");

						enableC.show.ip.route.vrf.WORD["Hostname or A.B.C.D"].addSC("A.B.C.D", "Network mask");

						enableC.show.ip.route.vrf.WORD["Hostname or A.B.C.D"].addSC("longer-prefixes", "Show route matching the specified Network/Mask pair only");

					enableC.show.ip.route.vrf.WORD.addSC("bgp", "Border Gateway Protocol (BGP)");

						enableC.show.ip.route.vrf.WORD.bgp.addSC("<1-65535>", "Autonomous system number");

					enableC.show.ip.route.vrf.WORD.addSC("connected", "Connected");

					enableC.show.ip.route.vrf.WORD.addSC("egp", "Exterior Gateway Protocol (EGP)");

						enableC.show.ip.route.vrf.WORD.egp.addSC("<0-65535>", "Remote autonomous system number");

					enableC.show.ip.route.vrf.WORD.addSC("eigrp", "Enhanced Interior Gateway Routing Protocol (EIGRP)");

						enableC.show.ip.route.vrf.WORD.eigrp.addSC("<1-65535>", "Autonomous system number");

					enableC.show.ip.route.vrf.WORD.addSC("igrp", "Interior Gateway Routing Protocol (IGRP)");

						enableC.show.ip.route.vrf.WORD.igrp.addSC("<1-65535>", "Autonomous system number");

					enableC.show.ip.route.vrf.WORD.addSC("isis", "ISO IS-IS");

						enableC.show.ip.route.vrf.WORD.isis.addSC("WORD", "ISO routing area tag");

					enableC.show.ip.route.vrf.WORD.addSC("list", "IP Access list");

						enableC.show.ip.route.vrf.WORD.list.addSC("<1-199>", "IP access list number");

						enableC.show.ip.route.vrf.WORD.list.addSC("WORD", "IP access-list name");

					enableC.show.ip.route.vrf.WORD.addSC("mobile", "Mobile routes");

					enableC.show.ip.route.vrf.WORD.addSC("odr", "On Demand stub Routes");

					enableC.show.ip.route.vrf.WORD.addSC("ospf", "Open Shortest Path First (OSPF)");

						enableC.show.ip.route.vrf.WORD.ospf.addSC("<1-65535>", "Process ID");

					enableC.show.ip.route.vrf.WORD.addSC("profile", "IP routing table profile");

					enableC.show.ip.route.vrf.WORD.addSC("rip", "Routing Information Protocol (RIP)");

					enableC.show.ip.route.vrf.WORD.addSC("static", "Static routes");

					enableC.show.ip.route.vrf.WORD.addSC("summary", "Summary of all routes");

					enableC.show.ip.route.vrf.WORD.addSC("supernets-only", "Show supernet entries only");

		enableC.show.ip.addSC("rpf", "Display RPF information for multicast source");

		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("slb", "SLB information");

		enableC.show.ip.addSC("sockets", "Open IP sockets");

		enableC.show.ip.addSC("ssh", "Information on SSH");

		enableC.show.ip.addSC("tcp", "TCP/IP header-compression statistics");

		enableC.show.ip.addSC("traffic", "IP protocol statistics");

		enableC.show.ip.addSC("trigger-authentication", "Trigger-authentication host table");

		enableC.show.ip.addSC("vrf", "VPN Routing/Forwarding instance information");

		enableC.show.ip.addSC("wccp", "WCCP information");

	enableC.show.addSC("ipx", "Novell IPX information");

	enableC.show.addSC("isdn", "ISDN information");

	enableC.show.addSC("isis", "IS-IS routing information");

	enableC.show.addSC("kerberos", "Show Kerberos Values");

	enableC.show.addSC("key", "Key information");

	enableC.show.addSC("keymap", "Terminal keyboard mappings");

	enableC.show.addSC("lat", "DEC LAT information");

	enableC.show.addSC("line", "TTY line information");

		enableC.show.line.addSC("<0-134>", "First Line range");

			enableC.show.line["<0-134>"].addSC("<1-134>", "Last Line range");

		enableC.show.line.addSC("async-queue", "Show async-queue");

			enableC.show.line["async-queue"].addSC("<1-99>", "rotary group number");

		enableC.show.line.addSC("aux", "Auxiliary line");

			enableC.show.line.aux.addSC("<0-0>", "First Line range");

		enableC.show.line.addSC("console", "Primary terminal line");

			enableC.show.line.console.addSC("<0-0>", "First Line range");

		enableC.show.line.addSC("summary", "Quick line status summary");

		enableC.show.line.addSC("tty", "Terminal controller");

			enableC.show.line.tty.addSC("<1-128>", "First Line range");

				enableC.show.line.tty["<1-128>"].addSC("<2-128>", "Last Line range");

				enableC.show.line.tty["<1-128>"].addSC("summary", "Quick line status summary");

		enableC.show.line.addSC("vty", "Virtual terminal");

			enableC.show.line.vty.addSC("<0-871>", "First Line range");

				enableC.show.line.vty["<0-871>"].addSC("<1-871>", "Last Line range");

				enableC.show.line.vty["<0-871>"].addSC("summary", "Quick line status summary");

	enableC.show.addSC("llc2", "IBM LLC2 circuit information");

	enableC.show.addSC("lnm", "IBM LAN manager");

	enableC.show.addSC("local-ack", "Local Acknowledgement virtual circuits");

	enableC.show.addSC("location", "Display the system location");

	enableC.show.addSC("logging", "Show the contents of logging buffers");

		enableC.show.logging.addSC("history", "Show the contents of syslog history table");

	enableC.show.addSC("management", "Display the management applications");

	enableC.show.addSC("memory", "Memory statistics");

	enableC.show.addSC("mgcp", "Display Media Gateway Control Protocol information");

	enableC.show.addSC("mls", "multilayer switching information");

	enableC.show.addSC("modemcap", "Show Modem Capabilities database");

	enableC.show.addSC("mpls", "MPLS information");

	enableC.show.addSC("mpoa", "MPOA show commands");

	enableC.show.addSC("nbf", "NBF (NetBEUI) information");

	enableC.show.addSC("ncia", "Native Client Interface Architecture");

	enableC.show.addSC("netbios-cache", "NetBIOS name cache contents");

	enableC.show.addSC("node", "Show known LAT nodes");

	enableC.show.addSC("ntp", "Network time protocol");

	enableC.show.addSC("num-exp", "Number Expansion (Speed Dial) information");

	enableC.show.addSC("parser", "Display parser information");

	enableC.show.addSC("pas", "Port Adaptor Information");

	enableC.show.addSC("pci", "PCI Information");

	enableC.show.addSC("policy-map", "Show QoS Policy Map");

		enableC.show["policy-map"].addSC("WORD", "policy-map name");

			enableC.show["policy-map"].WORD.addSC("class", "Show Qos Policy actions for a indvidual class");

				enableC.show["policy-map"].WORD.class.addSC("WORD", "class-map name");

		enableC.show["policy-map"].addSC("interface", "Show Qos Policy Interface");

			enableC.show["policy-map"].interface.addSC("Async", "Async interface");

				enableC.show["policy-map"].interface.Async.addSC("<1-129>", "Async interface number");

			enableC.show["policy-map"].interface.addSC("BRI", "ISDN Basic Rate Interface");

				enableC.show["policy-map"].interface.BRI.addSC("<0-6>", "BRI interface number");

			enableC.show["policy-map"].interface.addSC("BVI", "Bridge-Group Virtual Interface");

				enableC.show["policy-map"].interface.BVI.addSC("<1-255>", "BVI interface number");

			enableC.show["policy-map"].interface.addSC("CTunnel", "CTunnel interface");

				enableC.show["policy-map"].interface.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");

			enableC.show["policy-map"].interface.addSC("Dialer", "Dialer interface");

				enableC.show["policy-map"].interface.Dialer.addSC("<0-799>", "Dialer interface number");

			enableC.show["policy-map"].interface.addSC("Ethernet", "IEEE 802.3");

				enableC.show["policy-map"].interface.Ethernet.addSC("<0-6>", "Ethernet interface number");

			enableC.show["policy-map"].interface.addSC("Group-Async", "Async Group interface");

				enableC.show["policy-map"].interface["Group-Async"].addSC("<0-129>", "Group-Async interface number");

			enableC.show["policy-map"].interface.addSC("Lex", "Lex interface");

				enableC.show["policy-map"].interface.Lex.addSC("<0-2147483647>", "Lex interface number");

			enableC.show["policy-map"].interface.addSC("Loopback", "Loopback interface");

				enableC.show["policy-map"].interface.Loopback.addSC("<0-2147483647>", "Loopback interface number");

			enableC.show["policy-map"].interface.addSC("Multilink", "Multilink-group interface");

				enableC.show["policy-map"].interface.Multilink.addSC("<1-2147483647>", "Multilink interface number");

			enableC.show["policy-map"].interface.addSC("Null", "Null interface");

				enableC.show["policy-map"].interface.Null.addSC("<0-0>", "Null interface number");

			enableC.show["policy-map"].interface.addSC("Serial", "Serial");

				enableC.show["policy-map"].interface.Serial.addSC("<0-6>", "Serial interface number");

			enableC.show["policy-map"].interface.addSC("Tunnel", "Tunnel interface");

				enableC.show["policy-map"].interface.Tunnel.addSC("<0-2147483647>", "Tunnel interface number");

			enableC.show["policy-map"].interface.addSC("Vif", "PGM Multicast Host interface");

				enableC.show["policy-map"].interface.Vif.addSC("<1-1>", "Vif interface number");

			enableC.show["policy-map"].interface.addSC("Virtual-Template", "Virtual Template interface");

				enableC.show["policy-map"].interface["Virtual-Template"].addSC("<1-25>", "Virtual-Template interface number");

			enableC.show["policy-map"].interface.addSC("Virtual-TokenRing", "Virtual TokenRing");

				enableC.show["policy-map"].interface["Virtual-TokenRing"].addSC("<0-2147483647>", "Virtual-TokenRing interface number");

			enableC.show["policy-map"].interface.addSC("input", "Input policy");

				enableC.show["policy-map"].interface.input.addSC("class", "Show statistics for a indvidual class");

					enableC.show["policy-map"].interface.input.class.addSC("WORD", "class-map name");

			enableC.show["policy-map"].interface.addSC("output", "Output policy");

				enableC.show["policy-map"].interface.output.addSC("class", "Show statistics for a indvidual class");

					enableC.show["policy-map"].interface.output.class.addSC("WORD", "class-map name");

	enableC.show.addSC("ppp", "PPP parameters and statistics");

	enableC.show.addSC("printers", "Show LPD printer information");

	enableC.show.addSC("privilege", "Show current privilege level");

	enableC.show.addSC("processes", "Active process statistics");

	enableC.show.addSC("protocols", "Active network routing protocols");

	enableC.show.addSC("qdm", "Show information about QoS Device Manager");

	enableC.show.addSC("qllc", "Display qllc-llc2 and qllc-sdlc conversion information");

	enableC.show.addSC("queue", "Show queue contents");

	enableC.show.addSC("queueing", "Show queueing configuration");

	enableC.show.addSC("radius", "Shows radius information");

	enableC.show.addSC("random-detect-group", "display random-detetct group");

	enableC.show.addSC("registry", "Function registry information");

	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("route-map", "route-map information");

	enableC.show.addSC("rtpspi", "RTP Service Provider Interface");

	enableC.show.addSC("rtr", "Response Time Reporter (RTR)");

	enableC.show.addSC("running-config", "Current operating configuration");

		enableC.show["running-config"].addSC("interface", "Show interface configuration");

			enableC.show["running-config"].interface.addSC("Async", "Async interface");

				enableC.show["running-config"].interface.Async.addSC("<1-129>", "Async interface number");

			enableC.show["running-config"].interface.addSC("BRI", "ISDN Basic Rate Interface");

				enableC.show["running-config"].interface.BRI.addSC("<0-6>", "BRI interface number");

			enableC.show["running-config"].interface.addSC("BVI", "Bridge-Group Virtual Interface");

				enableC.show["running-config"].interface.BVI.addSC("<1-255>", "BVI interface number");

			enableC.show["running-config"].interface.addSC("CTunnel", "CTunnel interface");

				enableC.show["running-config"].interface.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");

			enableC.show["running-config"].interface.addSC("Dialer", "Dialer interface");

				enableC.show["running-config"].interface.Dialer.addSC("<0-799>", "Dialer interface number");

			enableC.show["running-config"].interface.addSC("Ethernet", "IEEE 802.3");

				enableC.show["running-config"].interface.Ethernet.addSC("<0-6>", "Ethernet interface number");

			enableC.show["running-config"].interface.addSC("Group-Async", "Async Group interface");

				enableC.show["running-config"].interface["Group-Async"].addSC("<0-129>", "Group-Async interface number");

			enableC.show["running-config"].interface.addSC("Lex", "Lex interface");

				enableC.show["running-config"].interface.Lex.addSC("<0-2147483647>", "Lex interface number");

			enableC.show["running-config"].interface.addSC("Loopback", "Loopback interface");

				enableC.show["running-config"].interface.Loopback.addSC("<0-2147483647>", "Loopback interface number");

			enableC.show["running-config"].interface.addSC("Multilink", "Multilink-group interface");

				enableC.show["running-config"].interface.Multilink.addSC("<1-2147483647>", "Multilink interface number");

			enableC.show["running-config"].interface.addSC("Null", "Null interface");

				enableC.show["running-config"].interface.Null.addSC("<0-0>", "Null interface number");

			enableC.show["running-config"].interface.addSC("Serial", "Serial");

				enableC.show["running-config"].interface.Serial.addSC("<0-6>", "Serial interface number");

			enableC.show["running-config"].interface.addSC("Tunnel", "Tunnel interface");

				enableC.show["running-config"].interface.Tunnel.addSC("<0-2147483647>", "Tunnel interface number");

			enableC.show["running-config"].interface.addSC("Vif", "PGM Multicast Host interface");

				enableC.show["running-config"].interface.Vif.addSC("<1-1>", "Vif interface number");

			enableC.show["running-config"].interface.addSC("Virtual-Template", "Virtual Template interface");

				enableC.show["running-config"].interface["Virtual-Template"].addSC("<1-25>", "Virtual-Template interface number");

			enableC.show["running-config"].interface.addSC("Virtual-TokenRing", "Virtual TokenRing");

				enableC.show["running-config"].interface["Virtual-TokenRing"].addSC("<0-2147483647>", "Virtual-TokenRing interface number");

		enableC.show["running-config"].addSC("map-class", "Show map class information");

			enableC.show["running-config"]["map-class"].addSC("atm", "ATM map class information");

				enableC.show["running-config"]["map-class"].atm.addSC("WORD", "map class name");

			enableC.show["running-config"]["map-class"].addSC("dialer", "Dialer map class information");

				enableC.show["running-config"]["map-class"].dialer.addSC("WORD", "map class name");

			enableC.show["running-config"]["map-class"].addSC("frame-relay", "Frame Relay map class information");

				enableC.show["running-config"]["map-class"]["frame-relay"].addSC("WORD", "map class name");



	enableC.show.addSC("sdllc", "Display sdlc - llc2 conversion information");

	enableC.show.addSC("services", "LAT learned services");

	enableC.show.addSC("sessions", "Information about Telnet connections");

	enableC.show.addSC("settlement", "Show status of settlement");

	enableC.show.addSC("sgbp", "SGBP group information");

	enableC.show.addSC("sgcp", "Display Simple Gateway Control Protocol information");

	enableC.show.addSC("sip-ua", "Show SIP User Agent");

	enableC.show.addSC("slot0:", "display information about slot0: file system");

	enableC.show.addSC("slot1:", "display information about slot1: file system");

	enableC.show.addSC("smds", "SMDS information");

	enableC.show.addSC("smf", "Software MAC filter");

	enableC.show.addSC("smrp", "Simple Multicast Routing Protocol (SMRP) information");

	enableC.show.addSC("sna", "Display SNA host information");

	enableC.show.addSC("snapshot", "Snapshot parameters and statistics");

	enableC.show.addSC("snmp", "snmp statistics");

	enableC.show.addSC("source-bridge", "Source-bridge parameters and statistics");

	enableC.show.addSC("spanning-tree", "Spanning tree topology");

	enableC.show.addSC("srcp", "Display SRCP Protocol information");

	enableC.show.addSC("ssh", "Status of SSH server connections");

	enableC.show.addSC("ssl", "Show SSL command");

	enableC.show.addSC("stacks", "Process stack utilization");

	enableC.show.addSC("standby", "Hot Standby Router Protocol (HSRP) information");

	enableC.show.addSC("startup-config", "Contents of startup configuration");

	enableC.show.addSC("stun", "STUN status and configuration");

	enableC.show.addSC("subscriber-policy", "Subscriber policy");

	enableC.show.addSC("subsys", "Show subsystem information");

	enableC.show.addSC("tacacs", "Shows tacacs+ server statistics");

	enableC.show.addSC("tag-switching", "Tag Switching information (obsolete use \"show mpls ...\")");

	enableC.show.addSC("tarp", "TARP information");

	enableC.show.addSC("tcp", "Status of TCP connections");

	enableC.show.addSC("tech-support", "Show system information for Tech-Support");

	enableC.show.addSC("template", "Template information");

	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("tn3270", "TN3270 settings");

	enableC.show.addSC("traffic-shape", "traffic rate shaping configuration");

		enableC.show["traffic-shape"].addSC("Async", "Async interface");

		enableC.show["traffic-shape"].addSC("BRI", "ISDN Basic Rate Interface");

		enableC.show["traffic-shape"].addSC("BVI", "Bridge-Group Virtual Interface");

		enableC.show["traffic-shape"].addSC("CTunnel", "CTunnel interface");

		enableC.show["traffic-shape"].addSC("Dialer", "Dialer interface");

		enableC.show["traffic-shape"].addSC("Ethernet", "IEEE 802.3");

		enableC.show["traffic-shape"].addSC("Lex", "Lex interface");

		enableC.show["traffic-shape"].addSC("Loopback", "Loopback interface");

		enableC.show["traffic-shape"].addSC("Multilink", "Multilink-group interface");

		enableC.show["traffic-shape"].addSC("Null", "Null interface");

		enableC.show["traffic-shape"].addSC("Serial", "Serial");

		enableC.show["traffic-shape"].addSC("Tunnel", "Tunnel interface");

		enableC.show["traffic-shape"].addSC("Vif", "PGM Multicast Host interface");

		enableC.show["traffic-shape"].addSC("Virtual-Template", "Virtual Template interface");

		enableC.show["traffic-shape"].addSC("Virtual-TokenRing", "Virtual TokenRing");

		enableC.show["traffic-shape"].addSC("queue", "Show shaping queue contents");

		enableC.show["traffic-shape"].addSC("statistics", "traffic rate shaping statistics");

			enableC.show["traffic-shape"].statistics.addSC("Async", "Async interface");

				enableC.show["traffic-shape"].statistics.Async.addSC("<1-129>", "Async interface number");

			enableC.show["traffic-shape"].statistics.addSC("BRI", "ISDN Basic Rate Interface");

				enableC.show["traffic-shape"].statistics.BRI.addSC("<0-6>", "BRI interface number");

			enableC.show["traffic-shape"].statistics.addSC("BVI", "Bridge-Group Virtual Interface");

				enableC.show["traffic-shape"].statistics.BVI.addSC("<1-255>", "BVI interface number");

			enableC.show["traffic-shape"].statistics.addSC("CTunnel", "CTunnel interface");

				enableC.show["traffic-shape"].statistics.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");

			enableC.show["traffic-shape"].statistics.addSC("Dialer", "Dialer interface");

				enableC.show["traffic-shape"].statistics.Dialer.addSC("<0-799>", "Dialer interface number");

			enableC.show["traffic-shape"].statistics.addSC("Ethernet", "IEEE 802.3");

				enableC.show["traffic-shape"].statistics.Ethernet.addSC("<0-6>", "Ethernet interface number");

			enableC.show["traffic-shape"].statistics.addSC("Lex", "Lex interface");

				enableC.show["traffic-shape"].statistics.Lex.addSC("<0-2147483647>", "Lex interface number");

			enableC.show["traffic-shape"].statistics.addSC("Loopback", "Loopback interface");

				enableC.show["traffic-shape"].statistics.Loopback.addSC("<0-2147483647>", "Loopback interface number");

			enableC.show["traffic-shape"].statistics.addSC("Multilink", "Multilink-group interface");

				enableC.show["traffic-shape"].statistics.Multilink.addSC("<1-2147483647>", "Multilink interface number");

			enableC.show["traffic-shape"].statistics.addSC("Null", "Null interface");

				enableC.show["traffic-shape"].statistics.Null.addSC("<0-0>", "Null interface number");

			enableC.show["traffic-shape"].statistics.addSC("Serial", "Serial");

				enableC.show["traffic-shape"].statistics.Serial.addSC("<0-6>", "Serial interface number");

			enableC.show["traffic-shape"].statistics.addSC("Tunnel", "Tunnel interface");

				enableC.show["traffic-shape"].statistics.Tunnel.addSC("<0-2147483647>", "Tunnel interface number");

			enableC.show["traffic-shape"].statistics.addSC("Vif", "PGM Multicast Host interface");

				enableC.show["traffic-shape"].statistics.Vif.addSC("<1-1>", "Vif interface number");

			enableC.show["traffic-shape"].statistics.addSC("Virtual-Template", "Virtual Template interface");

				enableC.show["traffic-shape"].statistics["Virtual-Template"].addSC("<1-25>", "Virtual-Template interface number");

			enableC.show["traffic-shape"].statistics.addSC("Virtual-TokenRing", "Virtual TokenRing");

				enableC.show["traffic-shape"].statistics["Virtual-TokenRing"].addSC("<0-2147483647>", "Virtual-TokenRing interface number");

	enableC.show.addSC("translate", "Protocol translation information");

	enableC.show.addSC("translation-rule", "Show translation rule table");

	enableC.show.addSC("ttycap", "Terminal capability tables");

	enableC.show.addSC("users", "Display information about terminal lines");

	enableC.show.addSC("vc-group", "Show VC Group");

	enableC.show.addSC("version", "System hardware and software status");

	enableC.show.addSC("vines", "VINES information");

	enableC.show.addSC("vlans", "Virtual LANs Information");

	enableC.show.addSC("voice", "Voice port configuration & stats");

	enableC.show.addSC("vpdn", "VPDN information");

	enableC.show.addSC("vtemplate", "Virtual Template interface information");

	enableC.show.addSC("whoami", "Info on current tty line");

	enableC.show.addSC("x25", "X.25 information");

	enableC.show.addSC("x29", "X.29 information");

	enableC.show.addSC("xns", "XNS information");

	enableC.show.addSC("xremote", "XRemote statistics");

enableC.addSC("slip", "Start Serial-line IP (SLIP)");

enableC.addSC("squeeze", "Squeeze a filesystem");

	enableC.squeeze.addSC("/nolog", "Squeeze without squeeze logs");

	enableC.squeeze.addSC("/quiet", "Squeeze without progress update");

	enableC.squeeze.addSC("flash:", "Filesystem to be squeezed");

	enableC.squeeze.addSC("slot0:", "Filesystem to be squeezed");

	enableC.squeeze.addSC("slot1:", "Filesystem to be squeezed");

enableC.addSC("ssh", "Open a secure shell client connection");

	enableC.ssh.addSC("-c", "Select encryption algorithm");

	enableC.ssh.addSC("-l", "Log in using this user name");

	enableC.ssh.addSC("-o", "Specify options");

	enableC.ssh.addSC("-p", "Connect to this port");

	enableC.ssh.addSC("WORD", "IP address or hostname of a remote system");

enableC.addSC("start-chat", "Start a chat-script on a line");

	enableC["start-chat"].addSC("WORD", "Chat Script name or regular expression");

enableC.addSC("systat", "Display information about terminal lines");

	enableC.systat.addSC("all", "Include information about inactive ports");

enableC.addSC("tarp", "TARP (Target ID Resolution Protocol) commands");

	enableC.tarp.addSC("query", "Obtain host's Target ID (TID) using its NSAP");

	enableC.tarp.addSC("resolve", "Resolve a TARP Target ID (TID)");

enableC.addSC("tclquit", "Quit Tool Comand Language  shell");

enableC.addSC("tclsh", "Tool Comand Language a shell");

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("autohangup", "Automatically hangup when last connection closes");

	enableC.terminal.addSC("autoselect", "Set line to autoselect");

	enableC.terminal.addSC("data-character-bits", "Size of characters being handled");

	enableC.terminal.addSC("databits", "Set number of data bits per character");

	enableC.terminal.addSC("default", "Set a command to its defaults");

	enableC.terminal.addSC("dispatch-character", "Define the dispatch character");

	enableC.terminal.addSC("dispatch-timeout", "Set the dispatch timer");

	enableC.terminal.addSC("domain-lookup", "Enable domain lookups in show commands");

	enableC.terminal.addSC("download", "Put line into 'download' mode");

	enableC.terminal.addSC("editing", "Enable command line editing");

	enableC.terminal.addSC("escape-character", "Change the current line's escape character");

	enableC.terminal.addSC("exec-character-bits", "Size of characters to the command exec");

	enableC.terminal.addSC("flowcontrol", "Set the flow control");

	enableC.terminal.addSC("full-help", "Provide help to unprivileged user");

	enableC.terminal.addSC("help", "Description of the interactive help system");

	enableC.terminal.addSC("history", "Enable and control the command history function");

	enableC.terminal.addSC("hold-character", "Define the hold character");

	enableC.terminal.addSC("international", "Enable international 8-bit character support");

	enableC.terminal.addSC("ip", "IP options");

	enableC.terminal.addSC("keymap-type", "Specify a keymap entry to use");

	enableC.terminal.addSC("lat", "DEC Local Area Transport (LAT) protocol-specific configuration");

//	enableC.terminal.addSC("length", "Set number of lines on a screen");

	enableC.terminal.addSC("monitor", "Copy debug output to the current terminal line");

	enableC.terminal.addSC("no", "Negate a command or set its defaults");

	enableC.terminal.addSC("notify", "Inform users of output from concurrent sessions");

	enableC.terminal.addSC("padding", "Set padding for a specified output character");

	enableC.terminal.addSC("parity", "Set terminal parity");

	enableC.terminal.addSC("rxspeed", "Set the receive speed");

	enableC.terminal.addSC("special-character-bits", "Size of the escape (and other special) characters");

	enableC.terminal.addSC("speed", "Set the transmit and receive speeds");

	enableC.terminal.addSC("start-character", "Define the start character");

	enableC.terminal.addSC("stop-character", "Define the stop character");

	enableC.terminal.addSC("stopbits", "Set async line stop bits");

	enableC.terminal.addSC("telnet", "Telnet protocol-specific configuration");

	enableC.terminal.addSC("terminal-type", "Set the terminal type");

	enableC.terminal.addSC("transport", "Define transport protocols for line");

	enableC.terminal.addSC("txspeed", "Set the transmit speeds");

	enableC.terminal.addSC("width", "Set width of the display terminal");

*/

/*enableC.addSC("test", "Test subsystems, memory, and interfaces");

	enableC.test.addSC("aaa", "AAA Authentication, Authorization and Accounting");

	enableC.test.addSC("interfaces", "Network interfaces");

	enableC.test.addSC("memory", "Non-volatile and/or multibus memory");

	enableC.test.addSC("pas", "Port Adaptor Tests");

	enableC.test.addSC("sgbp", "");

	enableC.test.addSC("pasvc", "PPP over ATM SVC Test Driver");

	enableC.test.addSC("pppoe", "");

	enableC.test.addSC("appletalk", "APPLETALK diagnostic code");

	enableC.test.addSC("call", "Call test commands");

	enableC.test.addSC("crypto", "Test crypto functions");

	enableC.test.addSC("dsp", "Test DSP functions");

	enableC.test.addSC("eigrp", "IPX EIGRP test commands");

	enableC.test.addSC("gssapi", "GSSAPI test code");

	enableC.test.addSC("ifs", "IFS TEST code");

	enableC.test.addSC("ipmobile", "IP Mobility Test commands");

	enableC.test.addSC("playout", "set playout delay configuration");

	enableC.test.addSC("port", "Diagnose voice ports by forcing conditions");

	enableC.test.addSC("spanning-tree", "Spanning Tree Subsystem");

	enableC.test.addSC("ssl", "SSL Test");

	enableC.test.addSC("tone", "TONE");

	enableC.test.addSC("tpu", "TPU test system");

	enableC.test.addSC("translation-rule", "Test translation rule table");

	enableC.test.addSC("vines", "VINES diagnostic code");

	enableC.test.addSC("voice", "Test voice");

*/

enableC.addSC("tn3270", "Open a tn3270 connection");

	enableC.tn3270.addSC("WORD", "IP address or hostname of a remote system");

enableC.addSC("traceroute", "Trace route to destination");

	enableC.traceroute.addSC("WORD", "Trace route to destination address or hostname");

	enableC.traceroute.addSC("appletalk", "AppleTalk Trace");

		enableC.traceroute.appletalk.addSC("WORD", "Trace route to destination address or hostname");

	enableC.traceroute.addSC("clns", "ISO CLNS Trace");

		enableC.traceroute.clns.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("ipx", "IPX Trace");

		enableC.traceroute.ipx.addSC("WORD", "Trace route to destination address or hostname");

	enableC.traceroute.addSC("oldvines", "Vines Trace (Cisco)");

		enableC.traceroute.oldvines.addSC("WORD", "Trace route to destination address or hostname");

	enableC.traceroute.addSC("vines", "Vines Trace (Banyan)");

		enableC.traceroute.vines.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.addSC("udptn", "Open an udptn connection");

	enableC.udptn.addSC("WORD", "IP address or hostname of a remote system");

enableC.addSC("undebug", "Disable debugging functions (see also 'debug')");

	enableC.undebug.addSC("aaa", "AAA Authentication, Authorization and Accounting");

	enableC.undebug.addSC("access-expression", "Boolean access expression");

	enableC.undebug.addSC("adjacency", "adjacency");

	enableC.undebug.addSC("all", "Enable all debugging");

//	enableC.undebug.addSC("alps", "ALPS debug information");

//	enableC.undebug.addSC("apollo", "Apollo information");

	enableC.undebug.addSC("apple", "Appletalk information");

	enableC.undebug.addSC("arap", "Appletalk Remote Access");

	enableC.undebug.addSC("arp", "IP ARP and HP Probe transactions");

//	enableC.undebug.addSC("aspp", "ASPP information");

	enableC.undebug.addSC("async", "Async interface information");

	enableC.undebug.addSC("backup", "Backup events");

	enableC.undebug.addSC("bri-interface", "bri network interface events");

//	enableC.undebug.addSC("bsc", "BSC information");

//	enableC.undebug.addSC("bstun", "BSTUN information");

//	enableC.undebug.addSC("call", "Call Information");

	enableC.undebug.addSC("call-mgmt", "Call Management");

	enableC.undebug.addSC("callback", "Callback activity");

//	enableC.undebug.addSC("cca", "CCA activity");

//	enableC.undebug.addSC("ccfrf11", "CCFRF11 information");

//	enableC.undebug.addSC("cch323", "CCH323 information");

//	enableC.undebug.addSC("ccsip", "CCSIP information");

//	enableC.undebug.addSC("ccswvoice", "ccswvoice information");

//	enableC.undebug.addSC("cdapi", "CDAPI information");

	enableC.undebug.addSC("cdp", "CDP information");

//	enableC.undebug.addSC("ces-conn", "Connection Manager CES Client Info");

	enableC.undebug.addSC("chat", "Chat scripts activity");

	enableC.undebug.addSC("clns", "CLNS information");

	enableC.undebug.addSC("cls", "CLS Information");

	enableC.undebug.addSC("cns", "CNS Debugging");

	enableC.undebug.addSC("compress", "COMPRESS traffic");

//	enableC.undebug.addSC("condition", "Condition");

	enableC.undebug.addSC("confmodem", "Modem configuration database");

	enableC.undebug.addSC("conn", "Connection Manager information");

	enableC.undebug.addSC("cops", "COPS");

//	enableC.undebug.addSC("cpp", "Cpp information");

	enableC.undebug.addSC("crypto", "Cryptographic subsystem");

	enableC.undebug.addSC("ctunnel", "Generic CTunnel Interface");

	enableC.undebug.addSC("custom-queue", "Custom output queueing");

//	enableC.undebug.addSC("decnet", "DECnet information");

	enableC.undebug.addSC("dhcp", "DHCP client activity");

	enableC.undebug.addSC("dialer", "Dial on Demand");

	enableC.undebug.addSC("dlsw", "Data Link Switching (DLSw) events");

	enableC.undebug.addSC("dnsix", "Dnsix information");

	enableC.undebug.addSC("domain", "Domain Name System");

//	enableC.undebug.addSC("drip", "DRiP debug information");

//	enableC.undebug.addSC("dspu", "DSPU Information");

//	enableC.undebug.addSC("dss", "Debug DSS");

	enableC.undebug.addSC("dxi", "atm-dxi information");

	enableC.undebug.addSC("eigrp", "EIGRP Protocol information");

	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.addSC("fax", "Fax");

	enableC.undebug.addSC("frame-relay", "Frame Relay");

//	enableC.undebug.addSC("fras", "FRAS Debug");

//	enableC.undebug.addSC("fras-host", "FRAS Host Debug");

//	enableC.undebug.addSC("funi", "FUNI interface packets");

//	enableC.undebug.addSC("gssapi", "GSSAPI debugs");

	enableC.undebug.addSC("h225", "H.225 Library Debugging");

	enableC.undebug.addSC("h245", "H.245 Library Debugging");

	enableC.undebug.addSC("interface", "interface");

	enableC.undebug.addSC("ip", "IP information");

	enableC.undebug.addSC("ipx", "Novell/IPX information");

	enableC.undebug.addSC("isdn", "ISDN information");

	enableC.undebug.addSC("isis", "IS-IS Information");

	enableC.undebug.addSC("kerberos", "KERBEROS authentication and authorization");

	enableC.undebug.addSC("lane", "LAN Emulation");

	enableC.undebug.addSC("lapb", "LAPB protocol transactions");

	enableC.undebug.addSC("lapb-ta", "LAPB Terminal Adapter information");

	enableC.undebug.addSC("lat", "LAT Information");

	enableC.undebug.addSC("ldap", "LDAP debug commands");

	enableC.undebug.addSC("lex", "LAN Extender protocol");

	enableC.undebug.addSC("list", "Set interface or/and access list for the next debug command");

	enableC.undebug.addSC("llc2", "LLC2 type II Information");

	enableC.undebug.addSC("lnm", "Lan Network Manager information");

	enableC.undebug.addSC("lnx", "generic qllc/llc2 conversion activity");

	enableC.undebug.addSC("local-ack", "Local ACKnowledgement information");

	enableC.undebug.addSC("management", "Management applications debugging");

//	enableC.undebug.addSC("mdss", "MDSS information");

	enableC.undebug.addSC("mgcp", "Media Gateway Control Protocol");

	enableC.undebug.addSC("mls", "mls debugger information");

	enableC.undebug.addSC("modem", "Modem control/process activation");

	enableC.undebug.addSC("mop", "DECnet MOP server events");

	enableC.undebug.addSC("mpls", "MPLS debug");

//	enableC.undebug.addSC("mpoa", "MPOA debug options");

	enableC.undebug.addSC("nbf", "NetBIOS information");

	enableC.undebug.addSC("ncia", "Native Client Interface Architecture (NCIA) events");

	enableC.undebug.addSC("netbios-name-cache", "NetBIOS name cache tracing");

	enableC.undebug.addSC("nhrp", "NHRP protocol");

	enableC.undebug.addSC("ntp", "NTP information");

	enableC.undebug.addSC("nvram", "Debug NVRAM behavior");

	enableC.undebug.addSC("packet", "Log unknown packets");

	enableC.undebug.addSC("pad", "X25 PAD protocol");

	enableC.undebug.addSC("ppp", "PPP (Point to Point Protocol) information");

	enableC.undebug.addSC("printer", "LPD printer protocol");

	enableC.undebug.addSC("priority", "Priority output queueing");

	enableC.undebug.addSC("probe", "HP Probe Proxy Requests");

	enableC.undebug.addSC("qdm", "QoS Device Manager");

	enableC.undebug.addSC("qllc", "qllc debug information");

	enableC.undebug.addSC("radius", "RADIUS protocol");

	enableC.undebug.addSC("ras", "H.323 RAS Library");

//	enableC.undebug.addSC("rif", "RIF cache transactions");

	enableC.undebug.addSC("rscmon", "Resource Monitor");

//	enableC.undebug.addSC("rtpspi", "RTP Service Provider Interface.");

	enableC.undebug.addSC("rtr", "RTR Monitor Information");

	enableC.undebug.addSC("sdlc", "SDLC information");

	enableC.undebug.addSC("sdllc", "SDLLC media translation");

	enableC.undebug.addSC("serial", "Serial interface information");

//	enableC.undebug.addSC("sgbp", "SGBP debugging");

	enableC.undebug.addSC("sgcp", "Simple Gateway Control Protocol");

	enableC.undebug.addSC("smf", "Software MAC filter");

//	enableC.undebug.addSC("smrp", "SMRP information");

	enableC.undebug.addSC("sna", "SNA Information");

	enableC.undebug.addSC("snapshot", "Snapshot activity");

	enableC.undebug.addSC("snmp", "SNMP information");

	enableC.undebug.addSC("source", "Source bridging information");

	enableC.undebug.addSC("spanning-tree", "Spanning tree debugging");

//	enableC.undebug.addSC("srcp", "Simple Resource Coordination Protocol");

	enableC.undebug.addSC("ssl", "SSL Debug command");

	enableC.undebug.addSC("standby", "Hot standby protocol");

//	enableC.undebug.addSC("stun", "STUN information");

	enableC.undebug.addSC("tacacs", "TACACS authentication and authorization");

	enableC.undebug.addSC("tag-switching", "Tag Switching (obsolete use \"debug mpls ...\")");

	enableC.undebug.addSC("tarp", "TARP information");

	enableC.undebug.addSC("tbridge", "Transparent Bridging");

	enableC.undebug.addSC("tccs", "Transparent CCS information");

	enableC.undebug.addSC("tdm", "TDM connection information");

	enableC.undebug.addSC("telnet", "Incoming telnet connections");

	enableC.undebug.addSC("template", "Template activity");

	enableC.undebug.addSC("tftp", "TFTP debugging");

	enableC.undebug.addSC("tgrm", "Trunk Group Resource Manager info");

//	enableC.undebug.addSC("token", "Token Ring information");

	enableC.undebug.addSC("translate", "Protocol translation events");

	enableC.undebug.addSC("translation", "translation rule information");

	enableC.undebug.addSC("tsp", "Telephony Service information");

	enableC.undebug.addSC("tunnel", "Generic Tunnel Interface");

//	enableC.undebug.addSC("udptn", "UDPtn async data transport");

	enableC.undebug.addSC("v120", "V120 information");

	enableC.undebug.addSC("vines", "VINES information");

	enableC.undebug.addSC("vlan", "vLAN information");

	enableC.undebug.addSC("voice", "VOICE information");

	enableC.undebug.addSC("voip", "VOIP information");

	enableC.undebug.addSC("vpdn", "VPDN information");

	enableC.undebug.addSC("vpm", "Voice Port Module SPI information");

	enableC.undebug.addSC("vprofile", "Virtual Profile information");

	enableC.undebug.addSC("vtemplate", "Virtual Template information");

	enableC.undebug.addSC("vtsp", "Voice Telephony Call Control information");

	enableC.undebug.addSC("x25", "X.25, CMNS and XOT information");

	enableC.undebug.addSC("x28", "X28 mode");

	enableC.undebug.addSC("xcctsp", "External Call Control TSP information");

	enableC.undebug.addSC("xns", "XNS information");

	enableC.undebug.addSC("xremote", "XREMOTE");

enableC.addSC("verify", "Verify a file");

	enableC.verify.addSC("flash:", "File to be verified");

	enableC.verify.addSC("slot0:", "File to be verified");

	enableC.verify.addSC("slot1:", "File to be verified");

enableC.addSC("where", "List active connections");

enableC.addSC("which-route", "Do OSI route table lookup and display results");

	enableC["which-route"].addSC("XX.XXXX. ... .XXX.XX", "Lookup route to OSI destination address or host name");

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("network", "Write to network TFTP server");

	enableC.write.addSC("terminal", "Write to terminal");

enableC.addSC("x28", "Become an X.28 PAD");

	enableC.x28.addSC("debug", "Turn on Debug Messages for X28 Mode");

	enableC.x28.addSC("dns", "Enable DNS based mnemonic address resolution");

	enableC.x28.addSC("escape", "Set the string to escape from X28 PAD mode");

	enableC.x28.addSC("noescape", "Never exit x28 mode (use with caution)");

	enableC.x28.addSC("nuicud", "All calls with NUI, are normal charge with the NUI placed in Call User Data");

	enableC.x28.addSC("profile", "Use a defined X.3 Profile");

	enableC.x28.addSC("reverse", "All calls default to reverse charge");

	enableC.x28.addSC("verbose", "Turn on Verbose Messages for X28 Mode");

enableC.addSC("x3", "Set X.3 parameters on PAD");

	enableC.x3.addSC("<0-22>:<0-255>", "X.3 PAD parameters and values");

enableC.addSC("xremote", "Enter XRemote mode");

	enableC.xremote.addSC("lat", "Start up a LAT session");

	enableC.xremote.addSC("xdm", "Start up a XDM session");