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
|
enableC.addSC("clear", "Reset functions");
enableC.clear.addSC("cgmp", "Reset CGMP information");
enableC.clear.addSC("counters", "Clear counters on one or more interfaces");
enableC.clear.addSC("dns-cache", "Clear cached DNS entries");
enableC.clear.addSC("mac-address-table", "MAC forwarding table");
enableC.clear.addSC("uplink-fast", "UPLINK FAST");
enableC.clear.addSC("vtp", "VLAN trunk protocol");
enableC.addSC("configure", "Enter configuration mode");
enableC.configure.addSC("terminal", "Configure from terminal");
enableC.addSC("copy", "Copy configuration or firmware");
enableC.copy.addSC("nvram", "Copy configuration to TFTP server");
enableC.copy.nvram.addSC("tftp:", "Copy to a TFTP server");
enableC.copy.addSC("tftp:", "Copy from a TFTP server");
enableC.copy.addSC("xmodem:", "Copy from a XMODEM host");
enableC.addSC("delete", "Reset configuration");
enableC["delete"].addSC("nvram", "NVRAM configuration");
enableC["delete"].addSC("vtp", "Reset VTP configuration to defaults");
enableC.addSC("disable", "Turn off privileged commands");
enableC.addSC("enable", "Turn on privileged commands");
enableC.enable.addSC("<1-15>", "Level number");
enableC.addSC("exit", "Exit from the EXEC");
enableC.addSC("help", "Description of the interactive help system");
enableC.addSC("menu", "Enter menu interface");
enableC.addSC("ping", "Send echo messages");
enableC.ping.addSC("WORD", "Ping destination address or Hostname");
enableC.addSC("reload", "Halt and perform warm start");
enableC.reload.addSC("in", "Reload after a time interval");
enableC.addSC("session", "Tunnel to module");
enableC.session.addSC("<1-1>", "Slot number of module");
enableC.session.addSC("<2-2>", "Slot number of module");
enableC.session.addSC("A", "Slot number of module");
enableC.session.addSC("B", "Slot number of module");
enableC.addSC("show", "Show running system information");
enableC.show.addSC("bridge-group", "Display port grouping using bridge groups");
enableC.show.addSC("cdp", "cdp information");
enableC.show.addSC("cgmp", "Cgmp information");
enableC.show.addSC("cluster", "Cluster information");
enableC.show.addSC("history", "Display the session command history");
enableC.show.addSC("interfaces", "Interface status and configuration");
enableC.show.interfaces.addSC("Ethernet", "IEEE 802.3");
enableC.show.interfaces.Ethernet.addSC("<0-0>", "IEEE 802.3");
enableC.show.interfaces.addSC("FastEthernet", "FastEthernet IEEE 802.3");
enableC.show.interfaces.FastEthernet.addSC("<0-0>", "FastEthernet IEEE 802.3");
enableC.show.addSC("ip", "Display IP configuration");
enableC.show.addSC("line", "Display console/RS-232 port configuration");
enableC.show.addSC("mac-address-table", "MAC forwarding table");
enableC.show["mac-address-table"].addSC("address", "MAC address");
enableC.show["mac-address-table"].addSC("aging-time", "Show aging time of dynamic entries");
enableC.show["mac-address-table"].addSC("dynamic", "Show 802.1d dynamic address");
enableC.show["mac-address-table"].addSC("interface", "Interface name");
enableC.show["mac-address-table"].addSC("permanent", "Show 802.1d permanent address");
enableC.show["mac-address-table"].addSC("restricted", "Show 802.1d restricted static addresses");
enableC.show["mac-address-table"].addSC("security", "Show addressing security information");
enableC.show.addSC("port", "Display port information");
enableC.show.port.addSC("block", "Forwarding of unknown unicast/multicast addresses");
enableC.show.port.addSC("monitor", "Port monitoring");
enableC.show.port.addSC("system", "System port configuration");
enableC.show.addSC("running-config", "Show current operating configuration");
enableC.show.addSC("snmp", "Display snmp related information");
enableC.show.addSC("spantree", "Spanning tree subsystem");
enableC.show.spantree.addSC("<1-1005>", "ISL VLAN index");
enableC.show.addSC("spantree-option", "Show STP port option parameter");
enableC.show.addSC("spantree-template", "Show STP bridge template parameters");
enableC.show["spantree-template"].addSC("<1-4>", "Bridge template identifier");
enableC.show.addSC("storm-control", "Show broadcast storm control configuration");
enableC.show.addSC("tacacs", "Shows tacacs+ server configuration");
enableC.show.addSC("terminal", "Display console/RS-232 port configuration");
enableC.show.addSC("tftp", "TFTP configuration and status");
enableC.show.addSC("trunk", "Display trunk information");
enableC.show.trunk.addSC("A", "Trunk A");
enableC.show.trunk.addSC("B", "Trunk B");
enableC.show.addSC("uplink-fast", "Uplink Fast");
enableC.show.addSC("usage", "Display usage summaries");
enableC.show.addSC("version", "System hardware and software status");
enableC.show.addSC("vlan", "Show VLAN information");
enableC.show.vlan.addSC("<1-1005>", "ISL VLAN index");
enableC.show.addSC("vlan-membership", "Show VLAN membership information");
enableC.show["vlan-membership"].addSC("server", "Show VMP server information");
enableC.show.addSC("vtp", "VLAN trunk protocol");
enableC.show.vtp.addSC("statistics", "Show VTP statistics");
enableC.addSC("terminal", "Set terminal line parameters");
enableC.terminal.addSC("databits", "Set number of data bits per character");
enableC.terminal.addSC("parity", "Set terminal parity");
enableC.terminal.addSC("speed", "Set transmit and receive speeds");
enableC.terminal.addSC("stopbits", "Set asynch line stop bits");
enableC.addSC("vlan-membership", "VLAN membership configuration");
enableC["vlan-membership"].addSC("reconfirm", "Reconfirm VLAN membership");
|