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
|
enableC.addSC("access-enable", "Create a temporary Access-List entry");
enableC["access-enable"].addSC("host", "Enable a specific host only");
enableC["access-enable"].addSC("timeout", "Maximum idle time to expire this entry");
enableC.addSC("access-profile", "Apply user-profile to interface");
enableC["access-profile"].addSC("ignore-sanity-checks", "Ignore all sanity check errors. Use with care");
enableC["access-profile"].addSC("merge", "Merge old and new per-user profiles, removing only access-lists");
enableC["access-profile"].addSC("replace", "Remove old per-user config, replace with new config");
enableC.addSC("access-template", "Create a temporary Access-List entry");
enableC["access-template"].addSC("<100-199>", "IP extended access list");
enableC["access-template"].addSC("<2000-2699>", "IP extended access list (expanded range)");
enableC["access-template"].addSC("WORD", "Access-list name");
enableC.addSC("alps", "ALPS exec commands");
enableC.alps.addSC("update-circuits", "Send ALPS circuit-update for all circuits");
enableC.addSC("archive", "manage archive files");
enableC.archive.addSC("tar", "List or extract files in a tar image");
enableC.addSC("audio-prompt", "load ivr prompt");
enableC["audio-prompt"].addSC("load", "load IVR audio-prompt");
enableC.addSC("bfe", "For manual emergency modes setting");
enableC.bfe.addSC("enter", "Enter Emergency mode");
enableC.bfe.addSC("leave", "Leave Emergency mode");
enableC.addSC("call", "Load IVR call application");
enableC.call.addSC("application", "Load IVR call application");
enableC.call.addSC("language", "Load IVR call language");
enableC.addSC("cd", "Change current directory");
enableC.cd.addSC("flash:", "Directory name");
enableC.cd.addSC("lex:", "Directory name");
enableC.cd.addSC("null:", "Directory name");
enableC.cd.addSC("nvram:", "Directory name");
enableC.cd.addSC("slot0:", "Directory name");
enableC.cd.addSC("slot1:", "Directory name");
enableC.cd.addSC("system:", "Directory name");
enableC.cd.addSC("xmodem:", "Directory name");
enableC.cd.addSC("ymodem:", "Directory name");
enableC.addSC("clear", "Reset functions");
enableC.clear.addSC("access-list", "Clear access list statistical information");
enableC.clear.addSC("access-template", "Access-template");
enableC.clear.addSC("adjacency", "Adjacent nodes");
enableC.clear.addSC("alps", "Clear Alps");
enableC.clear.addSC("appletalk", "Reset AppleTalk information");
enableC.clear.addSC("arp-cache", "Clear the entire ARP cache");
enableC.clear.addSC("bridge", "Reset bridge forwarding cache");
enableC.clear.addSC("bsc", "Clear counters in <show bsc> command");
enableC.clear.addSC("bstun", "Clear counters displayed in show bstun");
enableC.clear.addSC("call", "Call");
enableC.clear.addSC("cdp", "Reset cdp information");
enableC.clear.addSC("clns", "CLNS");
enableC.clear.addSC("controller", "Clear controller");
enableC.clear.addSC("counters", "Clear counters on one or all interfaces");
enableC.clear.addSC("crypto", "Encryption subsystem");
enableC.clear.addSC("decnet", "Reset DECnet information");
enableC.clear.addSC("dialer", "Clear dialer statistics");
enableC.clear.addSC("dlsw", "Data Link Switching (DLSw)");
enableC.clear.addSC("drip", "Clear drip");
enableC.clear.addSC("frame-relay", "Clear Frame Relay information");
enableC.clear.addSC("funi", "FUNI information");
enableC.clear.addSC("h323", "Clear H.323 items");
enableC.clear.addSC("host", "Delete host table entries");
enableC.clear.addSC("interface", "Clear the hardware logic on an interface");
enableC.clear.addSC("ip", "IP");
enableC.clear.ip.addSC("access-list", "Clear access list statistical information");
enableC.clear.ip.addSC("access-template", "Access-template");
enableC.clear.ip.addSC("accounting", "Clear IP accounting database");
enableC.clear.ip.addSC("all", "Clear all mobility bindings");
enableC.clear.ip.addSC("bgp", "Clear BGP connections");
enableC.clear.ip.addSC("cache", "Delete cache table entries");
enableC.clear.ip.addSC("casa", "Clear casa information");
enableC.clear.ip.addSC("cef", "Cisco Express Forwarding info");
enableC.clear.ip.addSC("cgmp", "Cisco Group Management Protocol (CGMP)");
enableC.clear.ip.addSC("dhcp", "Delete items from the DHCP database");
enableC.clear.ip.addSC("drp", "Clear director responder counters");
enableC.clear.ip.addSC("dvmrp", "DVMRP");
enableC.clear.ip.addSC("eigrp", "Clear IP-EIGRP");
enableC.clear.ip.addSC("flow", "Clear flow information");
enableC.clear.ip.addSC("igmp", "IGMP clear commands");
enableC.clear.ip.addSC("mobile", "IP Mobility");
enableC.clear.ip.addSC("mrm", "IP Multicast Routing Monitor clear commands");
enableC.clear.ip.addSC("mroute", "Delete multicast route table entries");
enableC.clear.ip.addSC("msdp", "Multicast Source Discovery Protocol (MSDP)");
enableC.clear.ip.addSC("mtag", "Clear multicast TIB entries");
enableC.clear.ip.addSC("nat", "Clear NAT");
enableC.clear.ip.nat.addSC("statistics", "Clear translation statistics");
enableC.clear.ip.nat.addSC("translation", "Clear dynamic translation");
enableC.clear.ip.nat.translation.addSC("*", "Delete all dynamic translations");
enableC.clear.ip.nat.translation.addSC("inside", "Inside addresses (and ports)");
enableC.clear.ip.nat.translation.addSC("outside", "Outside addresses (and ports)");
enableC.clear.ip.nat.translation.addSC("tcp", "Transmission Control Protocol");
enableC.clear.ip.nat.translation.addSC("udp", "User Datagram Protocol");
enableC.clear.ip.addSC("nhrp", "NHRP cache");
enableC.clear.ip.addSC("ospf", "OSPF clear commands");
enableC.clear.ip.addSC("pgm", "PGM Reliable Transport Protocol");
enableC.clear.ip.addSC("pim", "PIM");
enableC.clear.ip.addSC("prefix-list", "Prefix-list");
enableC.clear.ip.addSC("redirect", "Redirect cache");
enableC.clear.ip.addSC("route", "Delete route table entries");
enableC.clear.ip.route.addSC("*", "Delete all routes");
enableC.clear.ip.route.addSC("A.B.C.D", "Destination network route to delete");
enableC.clear.ip.route.addSC("vrf", "Clear routes for a VPN Routing/Forwarding instance");
enableC.clear.ip.addSC("rsvp", "RSVP");
enableC.clear.ip.addSC("rtp", "RTP/UDP/IP header-compression statistics");
enableC.clear.ip.addSC("sap", "Session Announcement Protocol cache");
enableC.clear.ip.addSC("slb", "Clear SLB information");
enableC.clear.ip.addSC("tcp", "TCP/UDP/IP header-compression statistics");
enableC.clear.ip.addSC("trigger-authentication", "Clear trigger-authentication host table");
enableC.clear.ip.addSC("wccp", "Reset wccp information");
enableC.clear.addSC("ipx", "Reset Novell/IPX information");
enableC.clear.addSC("isis", "Clear IS-IS data structures");
enableC.clear.addSC("kerberos", "Clear Kerberos Values");
enableC.clear.addSC("lane", "lane");
enableC.clear.addSC("line", "Reset a terminal line");
enableC.clear.addSC("logging", "Clear logging buffer");
enableC.clear.addSC("memory", "Memory counters");
enableC.clear.addSC("mgcp", "clear Media Gateway Control Protocol");
enableC.clear.addSC("mpoa", "MPOA clear commands");
enableC.clear.addSC("ncia", "Native Client Interface Architecture (NCIA)");
enableC.clear.addSC("netbios-cache", "Clear the entire NetBIOS name cache");
enableC.clear.addSC("parser", "Clear parser data");
enableC.clear.addSC("radius", "Clears radius server information");
enableC.clear.addSC("rif-cache", "Clear the entire RIF cache");
enableC.clear.addSC("sgcp", "clear Simple Gateway Control Protocol");
enableC.clear.addSC("smrp", "Simple Multicast Routing Protocol (SMRP) statistics");
enableC.clear.addSC("snapshot", "Clear Snapshot timers");
enableC.clear.addSC("source-bridge", "Clear counters displayed in \"show source-bridge\"");
enableC.clear.addSC("tag-switching", "Reset tag switching information");
enableC.clear.addSC("tarp", "Reset tarp information");
enableC.clear.addSC("tcp", "Clear a TCP connection or statistics");
enableC.clear.addSC("vines", "VINES neighbor and routing table entries");
enableC.clear.addSC("vlan", "Clear vLAN statistical information");
enableC.clear.addSC("vpdn", "Clear a VPDN entity");
enableC.clear.addSC("x25", "Clear X.25 circuits");
enableC.clear.addSC("xns", "Reset XNS information");
enableC.clear.addSC("xot", "Clear an XOT (X.25-Over-TCP) VC");
enableC.addSC("clock", "Manage the system clock");
enableC.clock.addSC("set", "Set the time and date");
enableC.addSC("configure", "Enter configuration mode");
enableC.configure.addSC("memory", "Configure from NV memory");
enableC.configure.addSC("network", "Configure from a TFTP network host");
enableC.configure.addSC("overwrite-network", "Overwrite NV memory from TFTP network host");
enableC.configure.addSC("terminal", "Configure from the terminal");
enableC.addSC("connect", "Open a terminal connection");
enableC.connect.addSC("WORD", "IP address or hostname of a remote system");
enableC.addSC("copy", "Copy from one file to another");
enableC.copy.addSC("flash:", "Copy from flash: file system");
enableC.copy.addSC("ftp:", "Copy from ftp: file system");
enableC.copy.addSC("null:", "Copy from null: file system");
enableC.copy.addSC("nvram:", "Copy from nvram: file system");
enableC.copy.addSC("pram:", "Copy from pram: file system");
enableC.copy.addSC("rcp:", "Copy from rcp: file system");
enableC.copy.addSC("running-config", "Copy from current system configuration");
enableC.copy.addSC("slot0:", "Copy from slot0: file system");
enableC.copy.addSC("slot1:", "Copy from slot1: file system");
enableC.copy.addSC("startup-config", "Copy from startup configuration");
enableC.copy.addSC("system:", "Copy from system: file system");
enableC.copy.addSC("tftp:", "Copy from tftp: file system");
enableC.copy.addSC("xmodem:", "Copy from xmodem: file system");
enableC.copy.addSC("ymodem:", "Copy from ymodem: file system");
enableC.addSC("debug", "Debugging functions (see also 'undebug')");
enableC.debug.addSC("aaa", "AAA Authentication, Authorization and Accounting");
enableC.debug.addSC("access-expression", "Boolean access expression");
enableC.debug.addSC("adjacency", "adjacency");
enableC.debug.addSC("all", "Enable all debugging");
enableC.debug.addSC("alps", "ALPS debug information");
enableC.debug.addSC("apollo", "Apollo information");
enableC.debug.addSC("apple", "Appletalk information");
enableC.debug.addSC("arap", "Appletalk Remote Access");
enableC.debug.addSC("arp", "IP ARP and HP Probe transactions");
enableC.debug.addSC("aspp", "ASPP information");
enableC.debug.addSC("async", "Async interface information");
enableC.debug.addSC("backup", "Backup events");
enableC.debug.addSC("bri-interface", "bri network interface events");
enableC.debug.addSC("bsc", "BSC information");
enableC.debug.addSC("bstun", "BSTUN information");
enableC.debug.addSC("call", "Call Information");
enableC.debug.addSC("call-mgmt", "Call Management");
enableC.debug.addSC("callback", "Callback activity");
enableC.debug.addSC("cca", "CCA activity");
enableC.debug.addSC("ccfrf11", "CCFRF11 information");
enableC.debug.addSC("cch323", "CCH323 information");
enableC.debug.addSC("ccsip", "CCSIP information");
enableC.debug.addSC("ccswvoice", "ccswvoice information");
enableC.debug.addSC("cdapi", "CDAPI information");
enableC.debug.addSC("cdp", "CDP information");
enableC.debug.addSC("ces-conn", "Connection Manager CES Client Info");
enableC.debug.addSC("chat", "Chat scripts activity");
enableC.debug.addSC("clns", "CLNS information");
enableC.debug.addSC("cls", "CLS Information");
enableC.debug.addSC("cns", "CNS Debugging");
enableC.debug.addSC("compress", "COMPRESS traffic");
enableC.debug.addSC("condition", "Condition");
enableC.debug.addSC("confmodem", "Modem configuration database");
enableC.debug.addSC("conn", "Connection Manager information");
enableC.debug.addSC("cops", "COPS");
enableC.debug.addSC("cpp", "Cpp information");
enableC.debug.addSC("crypto", "Cryptographic subsystem");
enableC.debug.crypto.addSC("ber", "decode ASN.1 BER data");
enableC.debug.crypto.addSC("engine", "Crypto Engine Debug");
enableC.debug.crypto.addSC("ipsec", "IPSEC processing");
enableC.debug.crypto.addSC("isakmp", "ISAKMP Key Management");
enableC.debug.crypto.addSC("pki", "PKI Client");
enableC.debug.crypto.addSC("verbose", "verbose decode");
enableC.debug.addSC("ctunnel", "Generic CTunnel Interface");
enableC.debug.addSC("custom-queue", "Custom output queueing");
enableC.debug.addSC("decnet", "DECnet information");
enableC.debug.addSC("dhcp", "DHCP client activity");
enableC.debug.addSC("dialer", "Dial on Demand");
enableC.debug.dhcp.addSC("detail", "DHCP packet content");
enableC.debug.addSC("dlsw", "Data Link Switching (DLSw) events");
enableC.debug.addSC("dnsix", "Dnsix information");
enableC.debug.addSC("domain", "Domain Name System");
enableC.debug.domain.addSC("replies", "DNS replies only");
enableC.debug.addSC("drip", "DRiP debug information");
enableC.debug.addSC("dspu", "DSPU Information");
enableC.debug.addSC("dss", "Debug DSS");
enableC.debug.addSC("dxi", "atm-dxi information");
enableC.debug.dxi.addSC("events", "Important atm-dxi events");
enableC.debug.dxi.addSC("packet", "ATM DXI packets");
enableC.addSC("eigrp", "EIGRP Protocol information");
enableC.debug.eigrp.addSC("fsm", "EIGRP Dual Finite State Machine events/actions");
enableC.debug.eigrp.addSC("neighbors", "EIGRP neighbors");
enableC.debug.eigrp.addSC("packets", "EIGRP packets");
enableC.debug.eigrp.addSC("transmit", "EIGRP transmission events");
enableC.debug.addSC("entry", "Incoming queue entries");
enableC.debug.addSC("ethernet-interface", "Ethernet network interface events");
enableC.debug.addSC("fastethernet", "Fast Ethernet interface information");
enableC.debug.addSC("fax", "Fax");
enableC.debug.addSC("frame-relay", "Frame Relay");
enableC.debug.addSC("fras", "FRAS Debug");
enableC.debug.addSC("fras-host", "FRAS Host Debug");
enableC.debug.addSC("funi", "FUNI interface packets");
enableC.debug.addSC("gssapi", "GSSAPI debugs");
enableC.debug.addSC("h225", "H.225 Library Debugging");
enableC.debug.addSC("h245", "H.245 Library Debugging");
enableC.debug.addSC("interface", "interface");
enableC.debug.addSC("ip", "IP information");
enableC.debug.ip.addSC("bgp", "BGP information");
enableC.debug.ip.addSC("cache", "IP cache operations");
enableC.debug.ip.addSC("casa", "Casa debugging");
enableC.debug.ip.addSC("cef", "IP CEF operations");
enableC.debug.ip.addSC("cgmp", "CGMP protocol activity");
enableC.debug.ip.addSC("dhcp", "Dynamic Host Configuration Protocol");
enableC.debug.ip.addSC("drp", "Director response protocol");
enableC.debug.ip.addSC("dvmrp", "DVMRP protocol activity");
enableC.debug.ip.addSC("egp", "EGP information");
enableC.debug.ip.addSC("eigrp", "IP-EIGRP information");
enableC.debug.ip.addSC("error", "IP error debugging");
enableC.debug.ip.addSC("flow", "IP Flow switching operations");
enableC.debug.ip.addSC("ftp", "FTP dialogue");
enableC.debug.ip.addSC("html", "HTML connections");
enableC.debug.ip.addSC("http", "HTTP connections");
enableC.debug.ip.addSC("icmp", "ICMP transactions");
enableC.debug.ip.addSC("igmp", "IGMP protocol activity");
enableC.debug.ip.addSC("igrp", "IGRP information");
enableC.debug.ip.addSC("interface", "IP interface configuration changes");
enableC.debug.ip.addSC("mbgp", "MBGP information");
enableC.debug.ip.addSC("mcache", "IP multicast cache operations");
enableC.debug.ip.addSC("mhbeat", "IP multicast heartbeat monitoring");
enableC.debug.ip.addSC("mobile", "IP Mobility");
enableC.debug.ip.addSC("mpacket", "IP multicast packet debugging");
enableC.debug.ip.addSC("mrm", "IP Multicast Routing Monitor");
enableC.debug.ip.addSC("mrouting", "IP multicast routing table activity");
enableC.debug.ip.addSC("msdp", "Multicast Source Discovery Protocol (MSDP)");
enableC.debug.ip.addSC("mtag", "IP multicast tagswitching activity");
enableC.debug.ip.addSC("nat", "NAT events");
enableC.debug.ip.addSC("nbar", "StILE - traffic classification Engine");
enableC.debug.ip.addSC("ospf", "OSPF information");
enableC.debug.ip.ospf.addSC("adj", "OSPF adjacency events");
enableC.debug.ip.ospf.addSC("database-timer", "OSPF database timer");
enableC.debug.ip.ospf.addSC("events", "OSPF events");
enableC.debug.ip.ospf.addSC("flood", "OSPF flooding");
enableC.debug.ip.ospf.addSC("hello", "OSPF hello events");
enableC.debug.ip.ospf.addSC("lsa-generation", "OSPF lsa generation");
enableC.debug.ip.ospf.addSC("mpls", "OSPF MPLS");
enableC.debug.ip.ospf.addSC("packet", "OSPF packets");
enableC.debug.ip.ospf.addSC("retransmission", "OSPF retransmission events");
enableC.debug.ip.ospf.addSC("spf", "OSPF spf");
enableC.debug.ip.ospf.addSC("tree", "OSPF database tree");
enableC.debug.ip.addSC("packet", "General IP debugging and IPSO security transactions");
enableC.debug.ip.addSC("peer", "IP peer address activity");
enableC.debug.ip.addSC("pgm", "PGM Reliable Transport Protocol");
enableC.debug.ip.addSC("pim", "PIM protocol activity");
enableC.debug.ip.addSC("policy", "Policy routing");
enableC.debug.ip.addSC("rgmp", "RGMP protocol activity");
enableC.debug.ip.addSC("rip", "RIP protocol transactions");
enableC.debug.ip.rip.addSC("database", "RIP database events");
enableC.debug.ip.rip.addSC("events", "RIP protocol events");
enableC.debug.ip.rip.addSC("trigger", "RIP trigger extension");
enableC.debug.ip.addSC("routing", "Routing table events");
enableC.debug.ip.routing.addSC("<1-199>", "Access list");
enableC.debug.ip.routing.addSC("<1300-2699>", "Access list (expanded range)");
enableC.debug.ip.routing.addSC("static", "IP Static routing");
enableC.debug.ip.routing.static.addSC("detail", "IP Static routing detail");
enableC.debug.ip.routing.static.addSC("route", "IP Static routing route");
enableC.debug.ip.routing.static.route.addSC("A.B.C.D", "Destination prefix");
enableC.debug.ip.routing.static.route["A.B.C.D"].addSC("A.B.C.D", "Destination prefix mask");
enableC.debug.ip.routing.static.addSC("summary", "IP Static routing control summary");
enableC.debug.ip.routing.static.addSC("time", "IP Static routing time spent");
enableC.debug.ip.addSC("rsvp", "RSVP protocol activity");
enableC.debug.ip.addSC("rtp", "RTP information");
enableC.debug.ip.addSC("sd", "Session Directory (SD)");
enableC.debug.ip.addSC("security", "IP security options");
enableC.debug.ip.addSC("slb", "SLB debug information");
enableC.debug.ip.addSC("socket", "Socket event");
enableC.debug.ip.addSC("ssh", "Incoming ssh connections");
enableC.debug.ip.addSC("tcp", "TCP information");
enableC.debug.ip.addSC("tempacl", "IP temporary ACL");
enableC.debug.ip.addSC("trigger-authentication", "Trigger authentication");
enableC.debug.ip.addSC("udp", "UDP based transactions");
enableC.debug.ip.addSC("urd", "URL RenDezvous (URD)");
enableC.debug.ip.addSC("wccp", "WCCP information");
enableC.debug.addSC("ipx", "Novell/IPX information");
enableC.debug.addSC("isdn", "ISDN information");
enableC.debug.addSC("isis", "IS-IS Information");
enableC.debug.addSC("kerberos", "KERBEROS authentication and authorization");
enableC.debug.addSC("lane", "LAN Emulation");
enableC.debug.addSC("lapb", "LAPB protocol transactions");
enableC.debug.addSC("lapb-ta", "LAPB Terminal Adapter information");
enableC.debug.addSC("lat", "LAT Information");
enableC.debug.addSC("ldap", "LDAP debug commands");
enableC.debug.addSC("lex", "LAN Extender protocol");
enableC.debug.addSC("list", "Set interface or/and access list for the next debug command");
enableC.debug.addSC("llc2", "LLC2 type II Information");
enableC.debug.addSC("lnm", "Lan Network Manager information");
enableC.debug.addSC("lnx", "generic qllc/llc2 conversion activity");
enableC.debug.addSC("local-ack", "Local ACKnowledgement information");
enableC.debug.addSC("management", "Management applications debugging");
enableC.debug.addSC("mdss", "MDSS information");
enableC.debug.addSC("mgcp", "Media Gateway Control Protocol");
enableC.debug.addSC("mls", "mls debugger information");
enableC.debug.addSC("modem", "Modem control/process activation");
enableC.debug.addSC("mop", "DECnet MOP server events");
enableC.debug.addSC("mpls", "MPLS debug");
enableC.debug.addSC("mpoa", "MPOA debug options");
enableC.debug.addSC("nbf", "NetBIOS information");
enableC.debug.addSC("ncia", "Native Client Interface Architecture (NCIA) events");
enableC.debug.addSC("netbios-name-cache", "NetBIOS name cache tracing");
enableC.debug.addSC("nhrp", "NHRP protocol");
enableC.debug.addSC("ntp", "NTP information");
enableC.debug.addSC("nvram", "Debug NVRAM behavior");
enableC.debug.addSC("packet", "Log unknown packets");
enableC.debug.addSC("pad", "X25 PAD protocol");
enableC.debug.addSC("ppp", "PPP (Point to Point Protocol) information");
enableC.debug.ppp.addSC("authentication", "CHAP and PAP authentication");
enableC.debug.ppp.addSC("bap", "BAP protocol transactions");
enableC.debug.ppp.addSC("cbcp", "Callback Control Protocol negotiation");
enableC.debug.ppp.addSC("compression", "PPP compression");
enableC.debug.ppp.addSC("error", "Protocol errors and error statistics");
enableC.debug.ppp.addSC("mppe", "MPPE Events");
enableC.debug.ppp.addSC("multilink", "Multilink activity");
enableC.debug.ppp.addSC("negotiation", "Protocol parameter negotiation");
enableC.debug.ppp.addSC("packet", "Low-level PPP packet dump");
enableC.debug.ppp.addSC("tasks", "PPP background tasks");
enableC.debug.addSC("printer", "LPD printer protocol");
enableC.debug.addSC("priority", "Priority output queueing");
enableC.debug.addSC("probe", "HP Probe Proxy Requests");
enableC.debug.addSC("qdm", "QoS Device Manager");
enableC.debug.addSC("qllc", "qllc debug information");
enableC.debug.addSC("radius", "RADIUS protocol");
enableC.debug.addSC("ras", "H.323 RAS Library");
enableC.debug.addSC("rif", "RIF cache transactions");
enableC.debug.addSC("rscmon", "Resource Monitor");
enableC.debug.addSC("rtpspi", "RTP Service Provider Interface.");
enableC.debug.addSC("rtr", "RTR Monitor Information");
enableC.debug.addSC("sdlc", "SDLC information");
enableC.debug.addSC("sdllc", "SDLLC media translation");
enableC.debug.addSC("serial", "Serial interface information");
enableC.debug.addSC("sgbp", "SGBP debugging");
enableC.debug.addSC("sgcp", "Simple Gateway Control Protocol");
enableC.debug.addSC("smf", "Software MAC filter");
enableC.debug.addSC("smrp", "SMRP information");
enableC.debug.addSC("sna", "SNA Information");
enableC.debug.addSC("snapshot", "Snapshot activity");
enableC.debug.addSC("snmp", "SNMP information");
enableC.debug.addSC("source", "Source bridging information");
enableC.debug.addSC("spanning-tree", "Spanning tree debugging");
enableC.debug.addSC("srcp", "Simple Resource Coordination Protocol");
enableC.debug.addSC("ssl", "SSL Debug command");
enableC.debug.addSC("standby", "Hot standby protocol");
enableC.debug.addSC("stun", "STUN information");
enableC.debug.addSC("tacacs", "TACACS authentication and authorization");
enableC.debug.addSC("tag-switching", "Tag Switching (obsolete use \"debug mpls ...\")");
enableC.debug.addSC("tarp", "TARP information");
enableC.debug.addSC("tbridge", "Transparent Bridging");
enableC.debug.addSC("tccs", "Transparent CCS information");
enableC.debug.addSC("tdm", "TDM connection information");
enableC.debug.addSC("telnet", "Incoming telnet connections");
enableC.debug.addSC("template", "Template activity");
enableC.debug.addSC("tftp", "TFTP debugging");
enableC.debug.addSC("tgrm", "Trunk Group Resource Manager info");
enableC.debug.addSC("token", "Token Ring information");
enableC.debug.addSC("translate", "Protocol translation events");
enableC.debug.addSC("translation", "translation rule information");
enableC.debug.addSC("tsp", "Telephony Service information");
enableC.debug.addSC("tunnel", "Generic Tunnel Interface");
enableC.debug.addSC("udptn", "UDPtn async data transport");
enableC.debug.addSC("v120", "V120 information");
enableC.debug.addSC("vines", "VINES information");
enableC.debug.addSC("vlan", "vLAN information");
enableC.debug.addSC("voice", "VOICE information");
enableC.debug.addSC("voip", "VOIP information");
enableC.debug.addSC("vpdn", "VPDN information");
enableC.debug.addSC("vpm", "Voice Port Module SPI information");
enableC.debug.addSC("vprofile", "Virtual Profile information");
enableC.debug.addSC("vtemplate", "Virtual Template information");
enableC.debug.addSC("vtsp", "Voice Telephony Call Control information");
enableC.debug.addSC("x25", "X.25, CMNS and XOT information");
enableC.debug.addSC("x28", "X28 mode");
enableC.debug.addSC("xcctsp", "External Call Control TSP information");
enableC.debug.addSC("xns", "XNS information");
enableC.debug.addSC("xremote", "XREMOTE");
enableC.addSC("delete", "Delete a file");
enableC["delete"].addSC("/force", "Force delete");
enableC["delete"].addSC("/recursive", "Recursive delete");
enableC["delete"].addSC("flash:", "File to be deleted");
enableC["delete"].addSC("nvram:", "File to be deleted");
enableC["delete"].addSC("slot0:", "File to be deleted");
enableC["delete"].addSC("slot1:", "File to be deleted");
enableC.addSC("dir", "List files on a filesystem");
enableC.dir.addSC("/all", "List all files");
enableC.dir.addSC("/recursive", "List files recursively");
enableC.dir.addSC("all-filesystems", "List files on all filesystems");
enableC.dir.addSC("flash:", "Directory or file name");
enableC.dir.addSC("lex:", "Directory or file name");
enableC.dir.addSC("null:", "Directory or file name");
enableC.dir.addSC("nvram:", "Directory or file name");
enableC.dir.addSC("slot0:", "Directory or file name");
enableC.dir.addSC("slot1:", "Directory or file name");
enableC.dir.addSC("system:", "Directory or file name");
enableC.dir.addSC("xmodem:", "Directory or file name");
enableC.dir.addSC("ymodem:", "Directory or file name");
enableC.addSC("disable", "Turn off privileged commands");
enableC.disable.addSC("<0-15>", "Privilege level to go to");
enableC.addSC("disconnect", "Disconnect an existing network connection");
enableC.disconnect.addSC("<0-0>", "The number of an active network connection");
enableC.disconnect.addSC("qdm", "Disconnect QDM web-based clients");
enableC.disconnect.addSC("ssh", "Disconnect an active SSH connection");
enableC.addSC("enable", "Turn on privileged commands");
enableC.enable.addSC("<0-15>", "Enable level");
enableC.addSC("erase", "Erase a filesystem");
enableC.erase.addSC("/all", "Erase all files(in NVRAM)");
enableC.erase.addSC("flash:", "Filesystem to be erased");
enableC.erase.addSC("nvram:", "Filesystem to be erased");
enableC.erase.addSC("pram:", "Filesystem to be erased");
enableC.erase.addSC("slot0:", "Filesystem to be erased");
enableC.erase.addSC("slot1:", "Filesystem to be erased");
enableC.erase.addSC("startup-config", "Erase contents of configuration memory");
enableC.addSC("exit", "Exit from the EXEC");
enableC.addSC("help", "Description of the interactive help system");
enableC.addSC("isdn", "Run an ISDN EXEC command on a BRI interface");
enableC.isdn.addSC("call", "Make an isdn data call");
enableC.isdn.addSC("disconnect", "Disconnect the isdn data call(s)");
enableC.addSC("lat", "Open a lat connection");
enableC.lat.addSC("WORD", "Name of a remote system");
enableC.addSC("lock", "Lock the terminal");
enableC.addSC("login", "Log in as a particular user");
enableC.addSC("logout", "Exit from the EXEC");
enableC.addSC("monitor", "Monitoring different system events");
enableC.monitor.addSC("elog", "Event-logging control commands");
enableC.addSC("more", "Display the contents of a file");
enableC.more.addSC("/ascii", "Display binary files in ascii");
enableC.more.addSC("/binary", "Force display to hex/text format");
enableC.more.addSC("/ebcdic", "Display binary files in ebcdic");
enableC.more.addSC("flash:", "File to display");
enableC.more.addSC("ftp:", "File to display");
enableC.more.addSC("null:", "File to display");
enableC.more.addSC("nvram:", "File to display");
enableC.more.addSC("pram:", "File to display");
enableC.more.addSC("rcp:", "File to display");
enableC.more.addSC("slot0:", "File to display");
enableC.more.addSC("slot1:", "File to display");
enableC.more.addSC("system:", "File to display");
enableC.more.addSC("tftp:", "File to display");
enableC.more.addSC("xmodem:", "File to display");
enableC.more.addSC("ymodem:", "File to display");
enableC.addSC("mpls", "MPLS commands");
enableC.mpls.addSC("traffic-eng", "Traffic engineering commands");
enableC.addSC("mpoa", "MPOA exec commands");
enableC.mpoa.addSC("server", "issue MPOA Server exec commands");
enableC.addSC("mrinfo", "Request neighbor and version information from a multicast router");
enableC.mrinfo.addSC("Hostname or A.B.C.D", "Router to request info from");
enableC.addSC("mrm", "IP Multicast Routing Monitor Test");
enableC.mrm.addSC("WORD", "IP MRM manager name");
enableC.addSC("mstat", "Show statistics after multiple multicast traceroutes");
enableC.mstat.addSC("Hostname or A.B.C.D", "Source to trace route from");
enableC.addSC("mtrace", "Trace reverse multicast path from destination to source");
enableC.mtrace.addSC("Hostname or A.B.C.D", "Source to trace route from");
enableC.addSC("name-connection", "Name an existing network connection");
enableC.addSC("ncia", "Start/Stop NCIA Server");
enableC.ncia.addSC("start", "NCIA Start");
enableC.ncia.addSC("stop", "NCIA Stop");
enableC.addSC("no", "Disable debugging functions");
enableC.no.addSC("debug", "Disable debugging functions (see also 'undebug')");
enableC.addSC("pad", "Open a X.29 PAD connection");
enableC.pad.addSC("WORD", "X121 address or name of a remote system");
enableC.addSC("ping", "Send echo messages");
enableC.ping.addSC("WORD", "Ping destination address or hostname");
enableC.ping.addSC("apollo", "Apollo echo");
enableC.ping.addSC("appletalk", "Appletalk echo");
enableC.ping.addSC("clns", "CLNS echo");
enableC.ping.addSC("decnet", "DECnet echo");
enableC.ping.addSC("ip", "IP echo");
enableC.ping.ip.addSC("WORD", "Ping destination address or hostname");
enableC.ping.addSC("ipx", "Novell/IPX echo");
enableC.ping.ipx.addSC("WORD", "Ping destination address or hostname");
enableC.ping.addSC("srb", "srb echo");
enableC.ping.srb.addSC("WORD", "Ping destination address or hostname");
enableC.ping.addSC("tag", "Tag encapsulated IP echo");
enableC.ping.tag.addSC("WORD", "Ping destination address or hostname");
enableC.ping.addSC("vines", "Vines echo");
enableC.ping.vines.addSC("WORD", "Ping destination address or hostname");
enableC.ping.addSC("xns", "XNS echo");
enableC.addSC("ppp", "Start IETF Point-to-Point Protocol (PPP)");
enableC.ppp.addSC("negotiate", "Use PPP negotiated IP address");
enableC.addSC("pwd", "Display current working directory");
enableC.addSC("reload", "Halt and perform a cold restart");
enableC.reload.addSC("LINE", "Reason for reload");
enableC.reload.addSC("at", "Reload at a specific time/date");
enableC.reload.addSC("cancel", "Cancel pending reload");
enableC.reload.addSC("in", "Reload after a time interval");
enableC.addSC("rename", "Rename a file");
enableC.rename.addSC("nvram:", "Source file path");
enableC.rename.addSC("pram:", "Source file path");
enableC.addSC("restart", "Restart Connection");
enableC.restart.addSC("WORD", "Optional handle to refer to a connection");
enableC.addSC("resume", "Resume an active network connection");
enableC.resume.addSC("/debug", "Print parameter changes & messages");
enableC.resume.addSC("/echo", "Perform local echo");
enableC.resume.addSC("/line", "Enable telnet line mode");
enableC.resume.addSC("/next", "Step to next network connection");
enableC.resume.addSC("/nodebug", "Do not print parameter changes & messages");
enableC.resume.addSC("/noecho", "Disable local echo");
enableC.resume.addSC("/noline", "Disable telnet line mode");
enableC.resume.addSC("/nostream", "Disable stream processing");
enableC.resume.addSC("/set", "Set X3 connection options");
enableC.resume.addSC("/stream", "Enable stream processing");
enableC.resume.addSC("<0-0>", "The number of an active network connection");
enableC.resume.addSC("WORD", "The name of an active network connection or Connection options");
enableC.addSC("rlogin", "Open an rlogin connection");
enableC.rlogin.addSC("WORD", "IP address or hostname of a remote system");
enableC.addSC("rsh", "Execute a remote command");
enableC.rsh.addSC("WORD", "IP address or hostname of rsh server");
enableC.addSC("sdlc", "Send SDLC test frames");
enableC.sdlc.addSC("test", "SDLC interface");
enableC.addSC("send", "Send a message to other tty lines");
enableC.send.addSC("*", "All tty lines");
enableC.send.addSC("<0-134>", "Send a message to a specific line");
enableC.send.addSC("aux", "Auxiliary line");
enableC.send.addSC("console", "Primary terminal line");
enableC.send.addSC("qdm", "Send a message to QDM client");
enableC.send.addSC("tty", "Terminal controller");
enableC.send.addSC("vty", "Virtual terminal");
enableC.addSC("setup", "Run the SETUP command facility");
enableC.addSC("show", "Show running system information");
enableC.show.addSC("access-expression", "List access expression");
enableC.show.addSC("access-lists", "List access lists");
enableC.show.addSC("accounting", "Accounting data for active sessions");
enableC.show.addSC("adjacency", "Adjacent nodes");
// enableC.show.addSC("aliases", "Display alias commands");
// enableC.show.addSC("alps", "Alps information");
// enableC.show.addSC("apollo", "Apollo network information");
enableC.show.addSC("appletalk", "AppleTalk information");
enableC.show.addSC("arap", "Show Appletalk Remote Access statistics");
enableC.show.addSC("arp", "ARP table");
enableC.show.addSC("async", "Information on terminal lines used as router interfaces");
enableC.show.addSC("backup", "Backup status");
enableC.show.addSC("bridge", "Bridge Forwarding/Filtering Database [verbose]");
// enableC.show.addSC("bsc", "BSC interface information");
// enableC.show.addSC("bstun", "BSTUN interface information");
enableC.show.addSC("buffers", "Buffer pool statistics");
// enableC.show.addSC("c3600", "Show c3600 information");
// enableC.show.addSC("call", "Show call");
// enableC.show.addSC("cca", "CCA information");
// enableC.show.addSC("cdapi", "CDAPI information");
enableC.show.addSC("cdp", "CDP information");
enableC.show.addSC("cef", "Cisco Express Forwarding");
enableC.show.addSC("class-map", "Show QoS Class Map");
enableC.show.addSC("clns", "CLNS network information");
enableC.show.addSC("clock", "Display the system clock");
// enableC.show.addSC("cls", "DLC user information");
enableC.show.addSC("cns", "CNS");
enableC.show.addSC("compress", "Show compression statistics");
enableC.show.addSC("configuration", "Contents of Non-Volatile memory");
enableC.show.addSC("connection", "Show Connection");
// enableC.show.addSC("context", "Show context information about recent crash(s)");
enableC.show.addSC("controllers", "Interface controller status");
enableC.show.addSC("cops", "COPS information");
enableC.show.addSC("crypto", "Encryption module");
enableC.show.crypto.addSC("ca", "Show certification authority policy");
enableC.show.crypto.addSC("dynamic-map", "Crypto map templates");
enableC.show.crypto.addSC("engine", "Show crypto engine info");
enableC.show.crypto.addSC("ipsec", "Show IPSEC policy");
enableC.show.crypto.ipsec.addSC("sa", "IPSEC SA table");
enableC.show.crypto.ipsec.sa.addSC("address", "IPSEC SA table in (dest) address order");
enableC.show.crypto.ipsec.sa.addSC("detail", "show counter detail");
enableC.show.crypto.ipsec.sa.addSC("identity", "IPSEC SADB identity tree");
enableC.show.crypto.ipsec.sa.identity.addSC("detail", "show counter detail");
enableC.show.crypto.ipsec.sa.addSC("interface", "Show info for specific interface");
enableC.show.crypto.ipsec.sa.interface.addSC("Async", "Async interface");
enableC.show.crypto.ipsec.sa.interface.Async.addSC("<1-129>", "Async interface number");
enableC.show.crypto.ipsec.sa.interface.addSC("BRI", "ISDN Basic Rate Interface");
enableC.show.crypto.ipsec.sa.interface.BRI.addSC("<0-6>", "BRI interface number");
enableC.show.crypto.ipsec.sa.interface.addSC("BVI", "Bridge-Group Virtual Interface");
enableC.show.crypto.ipsec.sa.interface.BVI.addSC("<1-255>", "BVI interface number");
enableC.show.crypto.ipsec.sa.interface.addSC("CTunnel", "CTunnel interface");
enableC.show.crypto.ipsec.sa.interface.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
enableC.show.crypto.ipsec.sa.interface.addSC("Dialer", "Dialer interface");
enableC.show.crypto.ipsec.sa.interface.Dialer.addSC("<0-799>", "Dialer interface number");
enableC.show.crypto.ipsec.sa.interface.addSC("Ethernet", "IEEE 802.3");
enableC.show.crypto.ipsec.sa.interface.Ethernet.addSC("<0-6>", "Ethernet interface number");
enableC.show.crypto.ipsec.sa.interface.addSC("Group-Async", "Async Group interface");
enableC.show.crypto.ipsec.sa.interface["Group-Async"].addSC("<0-129>", "Group-Async interface number");
enableC.show.crypto.ipsec.sa.interface.addSC("Lex", "Lex interface");
enableC.show.crypto.ipsec.sa.interface.Lex.addSC("<0-2147483647>", "Lex interface number");
enableC.show.crypto.ipsec.sa.interface.addSC("Loopback", "Loopback interface");
enableC.show.crypto.ipsec.sa.interface.Loopback.addSC("<0-2147483647>", "Loopback interface number");
enableC.show.crypto.ipsec.sa.interface.addSC("Multilink", "Multilink-group interface");
enableC.show.crypto.ipsec.sa.interface.Multilink.addSC("<1-2147483647>", "Multilink interface number");
enableC.show.crypto.ipsec.sa.interface.addSC("Null", "Null interface");
enableC.show.crypto.ipsec.sa.interface.Null.addSC("<0-0>", "Null interface number");
enableC.show.crypto.ipsec.sa.interface.addSC("Serial", "Serial");
enableC.show.crypto.ipsec.sa.interface.Serial.addSC("<0-6>", "Serial interface number");
enableC.show.crypto.ipsec.sa.interface.addSC("Tunnel", "Tunnel interface");
enableC.show.crypto.ipsec.sa.interface.Tunnel.addSC("<0-2147483647>", "Tunnel interface number");
enableC.show.crypto.ipsec.sa.interface.addSC("Vif", "PGM Multicast Host interface");
enableC.show.crypto.ipsec.sa.interface.Vif.addSC("<1-1>", "Vif interface number");
enableC.show.crypto.ipsec.sa.interface.addSC("Virtual-Template", "Virtual Template interface");
enableC.show.crypto.ipsec.sa.interface["Virtual-Template"].addSC("<1-25>", "Virtual-Template interface number");
enableC.show.crypto.ipsec.sa.interface.addSC("Virtual-TokenRing", "Virtual TokenRing");
enableC.show.crypto.ipsec.sa.interface["Virtual-TokenRing"].addSC("<0-2147483647>", "Virtual-TokenRing interface number");
enableC.show.crypto.ipsec.sa.addSC("map", "IPSEC SA table for a specific crypto map");
enableC.show.crypto.ipsec.sa.map.addSC("WORD", "crypto map tag");
enableC.show.crypto.ipsec.sa.map.WORD.addSC("detail", "show counter detail");
enableC.show.crypto.ipsec.addSC("security-association-lifetime", "Show this router's security association lifetime info");
enableC.show.crypto.ipsec.addSC("transform-set", "Crypto transform sets");
enableC.show.crypto.addSC("isakmp", "Show ISAKMP Security Associations");
enableC.show.crypto.isakmp.addSC("key", "Show ISAKMP preshared keys");
enableC.show.crypto.isakmp.addSC("policy", "Show ISAKMP protection suite policy");
enableC.show.crypto.isakmp.addSC("sa", "Show ISAKMP Security Associations");
enableC.show.crypto.addSC("key", "Show long term public keys");
enableC.show.crypto.addSC("map", "Crypto maps");
enableC.show.crypto.map.addSC("interface", "Crypto maps for an interface.");
enableC.show.crypto.map.interface.addSC("Async", "Async interface");
enableC.show.crypto.map.interface.Async.addSC("<1-129>", "Async interface number");
enableC.show.crypto.map.interface.addSC("BRI", "ISDN Basic Rate Interface");
enableC.show.crypto.map.interface.BRI.addSC("<0-6>", "BRI interface number");
enableC.show.crypto.map.interface.addSC("BVI", "Bridge-Group Virtual Interface");
enableC.show.crypto.map.interface.BVI.addSC("<1-255>", "BVI interface number");
enableC.show.crypto.map.interface.addSC("CTunnel", "CTunnel interface");
enableC.show.crypto.map.interface.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
enableC.show.crypto.map.interface.addSC("Dialer", "Dialer interface");
enableC.show.crypto.map.interface.Dialer.addSC("<0-799>", "Dialer interface number");
enableC.show.crypto.map.interface.addSC("Ethernet", "IEEE 802.3");
enableC.show.crypto.map.interface.Ethernet.addSC("<0-6>", "Ethernet interface number");
enableC.show.crypto.map.interface.addSC("Lex", "Lex interface");
enableC.show.crypto.map.interface.Lex.addSC("<0-2147483647>", "Lex interface number");
enableC.show.crypto.map.interface.addSC("Loopback", "Loopback interface");
enableC.show.crypto.map.interface.Loopback.addSC("<0-2147483647>", "Loopback interface number");
enableC.show.crypto.map.interface.addSC("Multilink", "Multilink-group interface");
enableC.show.crypto.map.interface.Multilink.addSC("<1-2147483647>", "Multilink interface number");
enableC.show.crypto.map.interface.addSC("Null", "Null interface");
enableC.show.crypto.map.interface.Null.addSC("<0-0>", "Null interface number");
enableC.show.crypto.map.interface.addSC("Serial", "Serial");
enableC.show.crypto.map.interface.Serial.addSC("<0-6>", "Serial interface number");
enableC.show.crypto.map.interface.addSC("Tunnel", "Tunnel interface");
enableC.show.crypto.map.interface.Tunnel.addSC("<0-2147483647>", "Tunnel interface number");
enableC.show.crypto.map.interface.addSC("Vif", "PGM Multicast Host interface");
enableC.show.crypto.map.interface.Vif.addSC("<1-1>", "Vif interface number");
enableC.show.crypto.map.interface.addSC("Virtual-Template", "Virtual Template interface");
enableC.show.crypto.map.interface["Virtual-Template"].addSC("<1-25>", "Virtual-Template interface number");
enableC.show.crypto.map.interface.addSC("Virtual-TokenRing", "Virtual TokenRing");
enableC.show.crypto.map.interface["Virtual-TokenRing"].addSC("<0-2147483647>", "Virtual-TokenRing interface number");
enableC.show.crypto.map.addSC("tag", "Crypto maps with a given tag.");
enableC.show.crypto.map.tag.addSC("WORD", "Crypto map tag");
// enableC.show.addSC("debugging", "State of each debugging option");
// enableC.show.addSC("decnet", "DECnet information");
enableC.show.addSC("derived-config", "Derived operating configuration");
enableC.show.addSC("dhcp", "Dynamic Host Configuration Protocol status");
enableC.show.addSC("diag", "Show diagnostic information for port adapters/modules");
enableC.show.addSC("dial-peer", "Dial Plan Mapping Table for, e.g. VoIP Peers");
enableC.show.addSC("dialer", "Dialer parameters and statistics");
enableC.show.addSC("dialplan", "Voice telephony dial plan");
enableC.show.addSC("dlsw", "Data Link Switching information");
enableC.show.addSC("dnsix", "Shows Dnsix/DMDP information");
// enableC.show.addSC("drip", "DRiP DB");
// enableC.show.addSC("dspu", "Display DSPU information");
// enableC.show.addSC("dss", "DSS information");
// enableC.show.addSC("dxi", "atm-dxi information");
enableC.show.addSC("entry", "Queued terminal entries");
// enableC.show.addSC("environment", "Environmental monitor statistics");
// enableC.show.addSC("exception", "exception informations");
enableC.show.addSC("file", "Show filesystem information");
enableC.show.addSC("flash:", "display information about flash: file system");
enableC.show.addSC("frame-relay", "Frame-Relay information");
enableC.show["frame-relay"].addSC("end-to-end", "Frame-relay end-to-end VC information");
enableC.show["frame-relay"].addSC("fragment", "show frame relay fragmentation information");
enableC.show["frame-relay"].addSC("ip", "show frame relay IP statistics");
enableC.show["frame-relay"].addSC("lapf", "show frame relay lapf status/statistics");
enableC.show["frame-relay"].addSC("lmi", "show frame relay lmi statistics");
enableC.show["frame-relay"].addSC("map", "Frame-Relay map table");
enableC.show["frame-relay"].addSC("pvc", "show frame relay pvc statistics");
enableC.show["frame-relay"].pvc.addSC("interface", "");
enableC.show["frame-relay"].pvc.interface.addSC("BRI", "ISDN Basic Rate Interface");
enableC.show["frame-relay"].pvc.interface.BRI.addSC("<0-6>", "BRI interface number");
enableC.show["frame-relay"].pvc.interface.addSC("Dialer", "Dialer interface");
enableC.show["frame-relay"].pvc.interface.Dialer.addSC("<0-799>", "Dialer interface number");
enableC.show["frame-relay"].pvc.interface.addSC("Serial", "Serial");
enableC.show["frame-relay"].pvc.interface.Serial.addSC("<0-6>", "Serial interface number");
enableC.show["frame-relay"].pvc.interface.addSC("Tunnel", "Tunnel interface");
enableC.show["frame-relay"].pvc.interface.Tunnel.addSC("<0-2147483647>", "Tunnel interface number");
enableC.show["frame-relay"].pvc.addSC("<16-1022>", "DLCI");
enableC.show["frame-relay"].addSC("qos-autosense", "show frame relay qos-autosense information");
enableC.show["frame-relay"].addSC("route", "show frame relay route");
enableC.show["frame-relay"].addSC("svc", "show frame relay SVC stuff");
enableC.show["frame-relay"].addSC("traffic", "Frame-Relay protocol statistics");
enableC.show["frame-relay"].addSC("vofr", "Show frame-relay VoFR statistics");
enableC.show.addSC("fras", "FRAS Information");
enableC.show.addSC("fras-host", "FRAS Host Information");
enableC.show.addSC("funi", "FUNI information");
enableC.show.addSC("gateway", "Show status of gateway");
enableC.show.addSC("h323", "Show H.323 VoIP information");
enableC.show.addSC("history", "Display the session command history");
enableC.show.addSC("hosts", "IP domain-name, lookup style, nameservers, and host table");
enableC.show.addSC("html", "HTML helper commands");
enableC.show.addSC("idb", "List of Hardware Interface Descriptor Blocks");
enableC.show.addSC("interfaces", "Interface status and configuration");
enableC.show.addSC("ip", "IP information");
enableC.show.ip.addSC("access-lists", "List IP access lists");
enableC.show.ip.addSC("accounting", "The active IP accounting database");
enableC.show.ip.addSC("aliases", "IP alias table");
enableC.show.ip.addSC("arp", "IP ARP table");
enableC.show.ip.addSC("as-path-access-list", "List AS path access lists");
enableC.show.ip.addSC("bgp", "BGP information");
enableC.show.ip.addSC("cache", "IP fast-switching route cache");
enableC.show.ip.addSC("casa", "display casa information");
enableC.show.ip.addSC("cef", "Cisco Express Forwarding");
enableC.show.ip.addSC("community-list", "List community-list");
enableC.show.ip.addSC("dhcp", "Show items in the DHCP database");
enableC.show.ip.addSC("drp", "Director response protocol");
enableC.show.ip.addSC("dvmrp", "DVMRP information");
enableC.show.ip.addSC("egp", "EGP connections and statistics");
enableC.show.ip.addSC("eigrp", "IP-EIGRP show commands");
enableC.show.ip.eigrp.addSC("interfaces", "IP-EIGRP interfaces");
enableC.show.ip.eigrp.interfaces.addSC("<1-65535>", "AS Number");
enableC.show.ip.eigrp.interfaces.addSC("Async", "Async interface");
enableC.show.ip.eigrp.interfaces.Async.addSC("<1-129>", "Async interface number");
enableC.show.ip.eigrp.interfaces.addSC("BRI", "ISDN Basic Rate Interface");
enableC.show.ip.eigrp.interfaces.BRI.addSC("<0-6>", "BRI interface number");
enableC.show.ip.eigrp.interfaces.addSC("BVI", "Bridge-Group Virtual Interface");
enableC.show.ip.eigrp.interfaces.BVI.addSC("<1-255>", "BVI interface number");
enableC.show.ip.eigrp.interfaces.addSC("CTunnel", "CTunnel interface");
enableC.show.ip.eigrp.interfaces.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
enableC.show.ip.eigrp.interfaces.addSC("Dialer", "Dialer interface");
enableC.show.ip.eigrp.interfaces.Dialer.addSC("<0-799>", "Dialer interface number");
enableC.show.ip.eigrp.interfaces.Dialer["<0-799>"].addSC("<1-65535>", "AS Number");
enableC.show.ip.eigrp.interfaces.addSC("Ethernet", "IEEE 802.3");
enableC.show.ip.eigrp.interfaces.Ethernet.addSC("<0-6>", "Ethernet interface number");
enableC.show.ip.eigrp.interfaces.addSC("Lex", "Lex interface");
enableC.show.ip.eigrp.interfaces.Lex.addSC("<0-2147483647>", "Lex interface number");
enableC.show.ip.eigrp.interfaces.addSC("Loopback", "Loopback interface");
enableC.show.ip.eigrp.interfaces.Loopback.addSC("<0-2147483647>", "Loopback interface number");
enableC.show.ip.eigrp.interfaces.Loopback["<0-2147483647>"].addSC("<1-65535>", "AS Number");
enableC.show.ip.eigrp.interfaces.addSC("Multilink", "Multilink-group interface");
enableC.show.ip.eigrp.interfaces.Multilink.addSC("<1-2147483647>", "Multilink interface number");
enableC.show.ip.eigrp.interfaces.addSC("Null", "Null interface");
enableC.show.ip.eigrp.interfaces.Null.addSC("<0-0>", "Null interface number");
enableC.show.ip.eigrp.interfaces.Null["<0-0>"].addSC("<1-65535>", "AS Number");
enableC.show.ip.eigrp.interfaces.addSC("Serial", "Serial");
enableC.show.ip.eigrp.interfaces.Serial.addSC("<0-6>", "Serial interface number");
enableC.show.ip.eigrp.interfaces.addSC("Tunnel", "Tunnel interface");
enableC.show.ip.eigrp.interfaces.Tunnel.addSC("<0-2147483647>", "Tunnel interface number");
enableC.show.ip.eigrp.interfaces.addSC("Vif", "PGM Multicast Host interface");
enableC.show.ip.eigrp.interfaces.Vif.addSC("<1-1>", "Vif interface number");
enableC.show.ip.eigrp.interfaces.addSC("Virtual-Template", "Virtual Template interface");
enableC.show.ip.eigrp.interfaces["Virtual-Template"].addSC("<1-25>", "Virtual-Template interface number");
enableC.show.ip.eigrp.interfaces.addSC("Virtual-TokenRing", "Virtual TokenRing");
enableC.show.ip.eigrp.interfaces["Virtual-TokenRing"].addSC("<0-2147483647>", "Virtual-TokenRing interface number");
enableC.show.ip.eigrp.interfaces.addSC("detail", "Show detailed peer information");
enableC.show.ip.eigrp.interfaces.detail.addSC("<1-65535>", "AS Number");
enableC.show.ip.eigrp.interfaces.detail.addSC("Async", "Async interface");
enableC.show.ip.eigrp.interfaces.detail.Async.addSC("<1-129>", "Async interface number");
enableC.show.ip.eigrp.interfaces.detail.addSC("BRI", "ISDN Basic Rate Interface");
enableC.show.ip.eigrp.interfaces.detail.BRI.addSC("<0-6>", "BRI interface number");
enableC.show.ip.eigrp.interfaces.detail.addSC("BVI", "Bridge-Group Virtual Interface");
enableC.show.ip.eigrp.interfaces.detail.BVI.addSC("<1-255>", "BVI interface number");
enableC.show.ip.eigrp.interfaces.detail.addSC("CTunnel", "CTunnel interface");
enableC.show.ip.eigrp.interfaces.detail.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
enableC.show.ip.eigrp.interfaces.detail.addSC("Dialer", "Dialer interface");
enableC.show.ip.eigrp.interfaces.detail.Dialer.addSC("<0-799>", "Dialer interface number");
enableC.show.ip.eigrp.interfaces.detail.addSC("Ethernet", "IEEE 802.3");
enableC.show.ip.eigrp.interfaces.detail.Ethernet.addSC("<0-6>", "Ethernet interface number");
enableC.show.ip.eigrp.interfaces.detail.addSC("Lex", "Lex interface");
enableC.show.ip.eigrp.interfaces.detail.Lex.addSC("<0-2147483647>", "Lex interface number");
enableC.show.ip.eigrp.interfaces.detail.addSC("Loopback", "Loopback interface");
enableC.show.ip.eigrp.interfaces.detail.Loopback.addSC("<0-2147483647>", "Loopback interface number");
enableC.show.ip.eigrp.interfaces.detail.addSC("Multilink", "Multilink-group interface");
enableC.show.ip.eigrp.interfaces.detail.Multilink.addSC("<1-2147483647>", "Multilink interface number");
enableC.show.ip.eigrp.interfaces.detail.addSC("Null", "Null interface");
enableC.show.ip.eigrp.interfaces.detail.Null.addSC("<0-0>", "Null interface number");
enableC.show.ip.eigrp.interfaces.detail.addSC("Serial", "Serial");
enableC.show.ip.eigrp.interfaces.detail.Serial.addSC("<0-6>", "Serial interface number");
enableC.show.ip.eigrp.interfaces.detail.addSC("Tunnel", "Tunnel interface");
enableC.show.ip.eigrp.interfaces.detail.Tunnel.addSC("<0-2147483647>", "Tunnel interface number");
enableC.show.ip.eigrp.interfaces.detail.addSC("Vif", "PGM Multicast Host interface");
enableC.show.ip.eigrp.interfaces.detail.Vif.addSC("<1-1>", "Vif interface number");
enableC.show.ip.eigrp.interfaces.detail.addSC("Virtual-Template", "Virtual Template interface");
enableC.show.ip.eigrp.interfaces.detail["Virtual-Template"].addSC("<1-25>", "Virtual-Template interface number");
enableC.show.ip.eigrp.interfaces.detail.addSC("Virtual-TokenRing", "Virtual TokenRing");
enableC.show.ip.eigrp.interfaces.detail["Virtual-TokenRing"].addSC("<0-2147483647>", "Virtual-TokenRing interface number");
enableC.show.ip.eigrp.interfaces.addSC("static", "Show static peer information");
enableC.show.ip.eigrp.interfaces.static.addSC("<1-65535>", "AS Number");
enableC.show.ip.eigrp.interfaces.static.addSC("Async", "Async interface");
enableC.show.ip.eigrp.interfaces.static.Async.addSC("<1-129>", "Async interface number");
enableC.show.ip.eigrp.interfaces.static.addSC("BRI", "ISDN Basic Rate Interface");
enableC.show.ip.eigrp.interfaces.static.BRI.addSC("<0-6>", "BRI interface number");
enableC.show.ip.eigrp.interfaces.static.addSC("BVI", "Bridge-Group Virtual Interface");
enableC.show.ip.eigrp.interfaces.static.BVI.addSC("<1-255>", "BVI interface number");
enableC.show.ip.eigrp.interfaces.static.addSC("CTunnel", "CTunnel interface");
enableC.show.ip.eigrp.interfaces.static.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
enableC.show.ip.eigrp.interfaces.static.addSC("Dialer", "Dialer interface");
enableC.show.ip.eigrp.interfaces.static.Dialer.addSC("<0-799>", "Dialer interface number");
enableC.show.ip.eigrp.interfaces.static.addSC("Ethernet", "IEEE 802.3");
enableC.show.ip.eigrp.interfaces.static.Ethernet.addSC("<0-6>", "Ethernet interface number");
enableC.show.ip.eigrp.interfaces.static.addSC("Lex", "Lex interface");
enableC.show.ip.eigrp.interfaces.static.Lex.addSC("<0-2147483647>", "Lex interface number");
enableC.show.ip.eigrp.interfaces.static.addSC("Loopback", "Loopback interface");
enableC.show.ip.eigrp.interfaces.static.Loopback.addSC("<0-2147483647>", "Loopback interface number");
enableC.show.ip.eigrp.interfaces.static.addSC("Multilink", "Multilink-group interface");
enableC.show.ip.eigrp.interfaces.static.Multilink.addSC("<1-2147483647>", "Multilink interface number");
enableC.show.ip.eigrp.interfaces.static.addSC("Null", "Null interface");
enableC.show.ip.eigrp.interfaces.static.Null.addSC("<0-0>", "Null interface number");
enableC.show.ip.eigrp.interfaces.static.addSC("Serial", "Serial");
enableC.show.ip.eigrp.interfaces.static.Serial.addSC("<0-6>", "Serial interface number");
enableC.show.ip.eigrp.interfaces.static.addSC("Tunnel", "Tunnel interface");
enableC.show.ip.eigrp.interfaces.static.Tunnel.addSC("<0-2147483647>", "Tunnel interface number");
enableC.show.ip.eigrp.interfaces.static.addSC("Vif", "PGM Multicast Host interface");
enableC.show.ip.eigrp.interfaces.static.Vif.addSC("<1-1>", "Vif interface number");
enableC.show.ip.eigrp.interfaces.static.addSC("Virtual-Template", "Virtual Template interface");
enableC.show.ip.eigrp.interfaces.static["Virtual-Template"].addSC("<1-25>", "Virtual-Template interface number");
enableC.show.ip.eigrp.interfaces.static.addSC("Virtual-TokenRing", "Virtual TokenRing");
enableC.show.ip.eigrp.interfaces.static["Virtual-TokenRing"].addSC("<0-2147483647>", "Virtual-TokenRing interface number");
enableC.show.ip.eigrp.addSC("neighbors", "IP-EIGRP neighbors");
enableC.show.ip.eigrp.neighbors.addSC("<1-65535>", "AS Number");
enableC.show.ip.eigrp.neighbors.addSC("Async", "Async interface");
enableC.show.ip.eigrp.neighbors.Async.addSC("<1-129>", "Async interface number");
enableC.show.ip.eigrp.neighbors.addSC("BRI", "ISDN Basic Rate Interface");
enableC.show.ip.eigrp.neighbors.BRI.addSC("<0-6>", "BRI interface number");
enableC.show.ip.eigrp.neighbors.addSC("BVI", "Bridge-Group Virtual Interface");
enableC.show.ip.eigrp.neighbors.BVI.addSC("<1-255>", "BVI interface number");
enableC.show.ip.eigrp.neighbors.addSC("CTunnel", "CTunnel interface");
enableC.show.ip.eigrp.neighbors.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
enableC.show.ip.eigrp.neighbors.addSC("Dialer", "Dialer interface");
enableC.show.ip.eigrp.neighbors.Dialer.addSC("<0-799>", "Dialer interface number");
enableC.show.ip.eigrp.neighbors.Dialer["<0-799>"].addSC("<1-65535>", "AS Number");
enableC.show.ip.eigrp.neighbors.addSC("Ethernet", "IEEE 802.3");
enableC.show.ip.eigrp.neighbors.Ethernet.addSC("<0-6>", "Ethernet interface number");
enableC.show.ip.eigrp.neighbors.addSC("Lex", "Lex interface");
enableC.show.ip.eigrp.neighbors.Lex.addSC("<0-2147483647>", "Lex interface number");
enableC.show.ip.eigrp.neighbors.addSC("Loopback", "Loopback interface");
enableC.show.ip.eigrp.neighbors.Loopback.addSC("<0-2147483647>", "Loopback interface number");
enableC.show.ip.eigrp.neighbors.Loopback["<0-2147483647>"].addSC("<1-65535>", "AS Number");
enableC.show.ip.eigrp.neighbors.addSC("Multilink", "Multilink-group interface");
enableC.show.ip.eigrp.neighbors.Multilink.addSC("<1-2147483647>", "Multilink interface number");
enableC.show.ip.eigrp.neighbors.addSC("Null", "Null interface");
enableC.show.ip.eigrp.neighbors.Null.addSC("<0-0>", "Null interface number");
enableC.show.ip.eigrp.neighbors.Null["<0-0>"].addSC("<1-65535>", "AS Number");
enableC.show.ip.eigrp.neighbors.addSC("Serial", "Serial");
enableC.show.ip.eigrp.neighbors.Serial.addSC("<0-6>", "Serial interface number");
enableC.show.ip.eigrp.neighbors.addSC("Tunnel", "Tunnel interface");
enableC.show.ip.eigrp.neighbors.Tunnel.addSC("<0-2147483647>", "Tunnel interface number");
enableC.show.ip.eigrp.neighbors.addSC("Vif", "PGM Multicast Host interface");
enableC.show.ip.eigrp.neighbors.Vif.addSC("<1-1>", "Vif interface number");
enableC.show.ip.eigrp.neighbors.addSC("Virtual-Template", "Virtual Template interface");
enableC.show.ip.eigrp.neighbors["Virtual-Template"].addSC("<1-25>", "Virtual-Template interface number");
enableC.show.ip.eigrp.neighbors.addSC("Virtual-TokenRing", "Virtual TokenRing");
enableC.show.ip.eigrp.neighbors["Virtual-TokenRing"].addSC("<0-2147483647>", "Virtual-TokenRing interface number");
enableC.show.ip.eigrp.neighbors.addSC("detail", "Show detailed peer information");
enableC.show.ip.eigrp.neighbors.detail.addSC("<1-65535>", "AS Number");
enableC.show.ip.eigrp.neighbors.detail.addSC("Async", "Async interface");
enableC.show.ip.eigrp.neighbors.detail.Async.addSC("<1-129>", "Async interface number");
enableC.show.ip.eigrp.neighbors.detail.addSC("BRI", "ISDN Basic Rate Interface");
enableC.show.ip.eigrp.neighbors.detail.BRI.addSC("<0-6>", "BRI interface number");
enableC.show.ip.eigrp.neighbors.detail.addSC("BVI", "Bridge-Group Virtual Interface");
enableC.show.ip.eigrp.neighbors.detail.BVI.addSC("<1-255>", "BVI interface number");
enableC.show.ip.eigrp.neighbors.detail.addSC("CTunnel", "CTunnel interface");
enableC.show.ip.eigrp.neighbors.detail.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
enableC.show.ip.eigrp.neighbors.detail.addSC("Dialer", "Dialer interface");
enableC.show.ip.eigrp.neighbors.detail.Dialer.addSC("<0-799>", "Dialer interface number");
enableC.show.ip.eigrp.neighbors.detail.addSC("Ethernet", "IEEE 802.3");
enableC.show.ip.eigrp.neighbors.detail.Ethernet.addSC("<0-6>", "Ethernet interface number");
enableC.show.ip.eigrp.neighbors.detail.addSC("Lex", "Lex interface");
enableC.show.ip.eigrp.neighbors.detail.Lex.addSC("<0-2147483647>", "Lex interface number");
enableC.show.ip.eigrp.neighbors.detail.addSC("Loopback", "Loopback interface");
enableC.show.ip.eigrp.neighbors.detail.Loopback.addSC("<0-2147483647>", "Loopback interface number");
enableC.show.ip.eigrp.neighbors.detail.addSC("Multilink", "Multilink-group interface");
enableC.show.ip.eigrp.neighbors.detail.Multilink.addSC("<1-2147483647>", "Multilink interface number");
enableC.show.ip.eigrp.neighbors.detail.addSC("Null", "Null interface");
enableC.show.ip.eigrp.neighbors.detail.Null.addSC("<0-0>", "Null interface number");
enableC.show.ip.eigrp.neighbors.detail.addSC("Serial", "Serial");
enableC.show.ip.eigrp.neighbors.detail.Serial.addSC("<0-6>", "Serial interface number");
enableC.show.ip.eigrp.neighbors.detail.addSC("Tunnel", "Tunnel interface");
enableC.show.ip.eigrp.neighbors.detail.Tunnel.addSC("<0-2147483647>", "Tunnel interface number");
enableC.show.ip.eigrp.neighbors.detail.addSC("Vif", "PGM Multicast Host interface");
enableC.show.ip.eigrp.neighbors.detail.Vif.addSC("<1-1>", "Vif interface number");
enableC.show.ip.eigrp.neighbors.detail.addSC("Virtual-Template", "Virtual Template interface");
enableC.show.ip.eigrp.neighbors.detail["Virtual-Template"].addSC("<1-25>", "Virtual-Template interface number");
enableC.show.ip.eigrp.neighbors.detail.addSC("Virtual-TokenRing", "Virtual TokenRing");
enableC.show.ip.eigrp.neighbors.detail["Virtual-TokenRing"].addSC("<0-2147483647>", "Virtual-TokenRing interface number");
enableC.show.ip.eigrp.neighbors.addSC("static", "Show static peer information");
enableC.show.ip.eigrp.neighbors.static.addSC("<1-65535>", "AS Number");
enableC.show.ip.eigrp.neighbors.static.addSC("Async", "Async interface");
enableC.show.ip.eigrp.neighbors.static.Async.addSC("<1-129>", "Async interface number");
enableC.show.ip.eigrp.neighbors.static.addSC("BRI", "ISDN Basic Rate Interface");
enableC.show.ip.eigrp.neighbors.static.BRI.addSC("<0-6>", "BRI interface number");
enableC.show.ip.eigrp.neighbors.static.addSC("BVI", "Bridge-Group Virtual Interface");
enableC.show.ip.eigrp.neighbors.static.BVI.addSC("<1-255>", "BVI interface number");
enableC.show.ip.eigrp.neighbors.static.addSC("CTunnel", "CTunnel interface");
enableC.show.ip.eigrp.neighbors.static.CTunnel.addSC("<0-2147483647>", "CTunnel interface number");
enableC.show.ip.eigrp.neighbors.static.addSC("Dialer", "Dialer interface");
enableC.show.ip.eigrp.neighbors.static.Dialer.addSC("<0-799>", "Dialer interface number");
enableC.show.ip.eigrp.neighbors.static.addSC("Ethernet", "IEEE 802.3");
enableC.show.ip.eigrp.neighbors.static.Ethernet.addSC("<0-6>", "Ethernet interface number");
enableC.show.ip.eigrp.neighbors.static.addSC("Lex", "Lex interface");
enableC.show.ip.eigrp.neighbors.static.Lex.addSC("<0-2147483647>", "Lex interface number");
enableC.show.ip.eigrp.neighbors.static.addSC("Loopback", "Loopback interface");
enableC.show.ip.eigrp.neighbors.static.Loopback.addSC("<0-2147483647>", "Loopback interface number");
enableC.show.ip.eigrp.neighbors.static.addSC("Multilink", "Multilink-group interface");
enableC.show.ip.eigrp.neighbors.static.Multilink.addSC("<1-2147483647>", "Multilink interface number");
enableC.show.ip.eigrp.neighbors.static.addSC("Null", "Null interface");
enableC.show.ip.eigrp.neighbors.static.Null.addSC("<0-0>", "Null interface number");
enableC.show.ip.eigrp.neighbors.static.addSC("Serial", "Serial");
enableC.show.ip.eigrp.neighbors.static.Serial.addSC("<0-6>", "Serial interface number");
enableC.show.ip.eigrp.neighbors.static.addSC("Tunnel", "Tunnel interface");
enableC.show.ip.eigrp.neighbors.static.Tunnel.addSC("<0-2147483647>", "Tunnel interface number");
enableC.show.ip.eigrp.neighbors.static.addSC("Vif", "PGM Multicast Host interface");
enableC.show.ip.eigrp.neighbors.static.Vif.addSC("<1-1>", "Vif interface number");
enableC.show.ip.eigrp.neighbors.static.addSC("Virtual-Template", "Virtual Template interface");
enableC.show.ip.eigrp.neighbors.static["Virtual-Template"].addSC("<1-25>", "Virtual-Template interface number");
enableC.show.ip.eigrp.neighbors.static.addSC("Virtual-TokenRing", "Virtual TokenRing");
enableC.show.ip.eigrp.neighbors.static["Virtual-TokenRing"].addSC("<0-2147483647>", "Virtual-TokenRing interface number");
enableC.show.ip.eigrp.addSC("topology", "IP-EIGRP Topology Table");
enableC.show.ip.eigrp.topology.addSC("<1-65535>", "AS Number");
enableC.show.ip.eigrp.topology.addSC("A.B.C.D", "IP prefix <network>/<length>, e.g., 192.168["<0-0>"].0/16");
enableC.show.ip.eigrp.topology["A.B.C.D"].addSC("A.B.C.D", "Network mask");
enableC.show.ip.eigrp.topology.addSC("A.B.C.D", "Network to display information about");
enableC.show.ip.eigrp.topology["A.B.C.D"].addSC("A.B.C.D", "Network mask");
enableC.show.ip.eigrp.topology.addSC("active", "Show only active entries");
enableC.show.ip.eigrp.topology.addSC("all-links", "Show all links in topology table");
enableC.show.ip.eigrp.topology.addSC("detail-links", "Show all links in topology table");
enableC.show.ip.eigrp.topology.addSC("pending", "Show only entries pending transmission");
enableC.show.ip.eigrp.topology.addSC("summary", "Show a summary of the topology table");
enableC.show.ip.eigrp.topology.addSC("zero-successors", "Show only zero successor entries");
enableC.show.ip.eigrp.addSC("traffic", "IP-EIGRP Traffic Statistics");
enableC.show.ip.addSC("explicit-paths", "Show IP explicit paths");
enableC.show.ip.addSC("extcommunity-list", "List extended-community list");
enableC.show.ip.addSC("flow", "NetFlow switching");
enableC.show.ip.addSC("igmp", "IGMP information");
enableC.show.ip.addSC("interface", "IP interface status and configuration");
enableC.show.ip.addSC("irdp", "ICMP Router Discovery Protocol");
enableC.show.ip.addSC("local", "IP local options");
enableC.show.ip.addSC("masks", "Masks associated with a network");
enableC.show.ip.addSC("mcache", "IP multicast fast-switching cache");
enableC.show.ip.addSC("mobile", "Mobile IP information");
enableC.show.ip.addSC("mpacket", "Display possible duplicate multicast packets");
enableC.show.ip.addSC("mrm", "IP Multicast Routing Monitor information");
enableC.show.ip.addSC("mroute", "IP multicast routing table");
enableC.show.ip.addSC("msdp", "Multicast Source Discovery Protool (MSDP)");
enableC.show.ip.addSC("mtag", "IP Multicast Tagswitching TIB");
enableC.show.ip.addSC("nat", "IP NAT information");
enableC.show.ip.nat.addSC("statistics", "Translation statistics");
enableC.show.ip.nat.addSC("translations", "Translation entries");
enableC.show.ip.nat.translations.addSC("icmp", "Show ICMP entries");
enableC.show.ip.nat.translations.addSC("pptp", "Show PPTP entries");
enableC.show.ip.nat.translations.addSC("tcp", "Show TCP entries");
enableC.show.ip.nat.translations.addSC("udp", "Show UDP entries");
enableC.show.ip.nat.translations.addSC("verbose", "Show extra information");
enableC.show.ip.addSC("nbar", "Network-Based Application Recognition");
enableC.show.ip.addSC("nhrp", "NHRP information");
|