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
|
userC.addSC("access-enable", "Create a temporary Access-List entry");
userC.addSC("clear", "Reset functions");
userC.addSC("connect", "Open a terminal connection");
userC.addSC("disable", "Turn off privileged commands");
userC.addSC("disconnect", "Disconnect an existing network connection");
userC.addSC("enable", "Turn on privileged commands");
userC.enable.addSC("<0-15>", "Enable level");
userC.addSC("exit", "Exit from the EXEC");
userC.addSC("help", "Description of the interactive help system");
userC.addSC("lock", "Lock the terminal");
userC.addSC("login", "Log in as a particular user");
userC.addSC("logout", "Exit from the EXEC");
userC.addSC("name-connection", "Name an existing network connection");
userC.addSC("ping", "Send echo messages");
userC.ping.addSC("WORD", "Ping destination address or hostname");
userC.ping.addSC("ip", "IP echo");
userC.ping.ip.addSC("WORD", "Ping destination address or hostname");
userC.ping.addSC("tag", "Tag encapsulated IP echo");
userC.ping.tag.addSC("WORD", "Ping destination address or hostname");
userC.addSC("rcommand", "Run command on remote switch");
userC.addSC("resume", "Resume an active network connection");
userC.addSC("set", "Set system parameter (not config)");
userC.addSC("show", "Show running system information");
userC.show.addSC("class-map", "Show QoS Class Map");
userC.show.addSC("clock", "Display the system clock");
userC.show.addSC("diags", "Show runtime diagnostic info");
userC.show.addSC("exception", "exception informations");
userC.show.addSC("flash:", "display information about flash: file system");
userC.show.addSC("history", "Display the session command history");
userC.show.addSC("hosts", "IP domain-name, lookup style, nameservers, and host table");
userC.show.addSC("location", "Display the system location");
userC.show.addSC("policy-map", "Show QoS Policy Map");
userC.show["policy-map"].addSC("WORD", "policy-map name");
userC.show["policy-map"].WORD.addSC("class", "Show Qos Policy actions for a indvidual class");
userC.show["policy-map"].WORD.class.addSC("WORD", "class-map name");
userC.show["policy-map"].addSC("interface", "Show Qos Policy Interface");
userC.show["policy-map"].interface.addSC("FastEthernet", "FastEthernet IEEE 802.3");
userC.show["policy-map"].interface.FastEthernet.addSC("<0-2>", "FastEthernet interface number");
userC.show["policy-map"].interface.addSC("Null", "Null interface");
userC.show["policy-map"].interface.Null.addSC("<0-0>", "Null interface number");
userC.show["policy-map"].interface.addSC("VLAN", "Switch VLAN Virtual Interface");
userC.show["policy-map"].interface.VLAN.addSC("<1-1001>", "VLAN interface number");
userC.show.addSC("queue", "Show queue contents");
userC.show.addSC("queueing", "Show queueing configuration");
userC.show.addSC("rmon", "rmon statistics");
userC.show.addSC("sessions", "Information about Telnet connections");
userC.show.addSC("snmp", "snmp statistics");
userC.show.addSC("spanning-tree", "Spanning tree topology");
userC.show.addSC("tacacs", "Shows tacacs+ server statistics");
userC.show.addSC("terminal", "Display terminal configuration parameters");
userC.show.addSC("udld", "UDLD information");
userC.show.addSC("users", "Display information about terminal lines");
userC.show.addSC("version", "System hardware and software status");
userC.show.addSC("vlan", "VTP VLAN status");
userC.show.vlan.addSC("brief", "VTP all VLAN status in brief");
userC.show.vlan.addSC("id", "VTP VLAN status by VLAN id");
userC.show.vlan.id.addSC("<1-1005>", "A VTP VLAN number");
userC.show.vlan.addSC("name", "VTP VLAN status by VLAN name");
userC.show.vlan.name.addSC("WORD", "A VTP VLAN name");
userC.show.addSC("vtp", "VTP information");
userC.addSC("systat", "Display information about terminal lines");
userC.addSC("telnet", "Open a telnet connection");
userC.addSC("terminal", "Set terminal line parameters");
userC.addSC("traceroute", "Trace route to destination");
userC.traceroute.addSC("WORD", "Trace route to destination address or hostname");
userC.traceroute.addSC("appletalk", "AppleTalk Trace");
userC.traceroute.appletalk.addSC("WORD", "Trace route to destination address or hostname");
userC.traceroute.addSC("clns", "ISO CLNS Trace");
userC.traceroute.clns.addSC("WORD", "Trace route to destination address or hostname");
userC.traceroute.addSC("ip", "IP Trace");
userC.traceroute.ip.addSC("WORD", "Trace route to destination address or hostname");
userC.traceroute.addSC("ipx", "IPX Trace");
userC.traceroute.ipx.addSC("WORD", "Trace route to destination address or hostname");
userC.traceroute.addSC("oldvines", "Vines Trace (Cisco)");
userC.traceroute.oldvines.addSC("WORD", "Trace route to destination address or hostname");
userC.traceroute.addSC("vines", "Vines Trace (Banyan)");
userC.traceroute.vines.addSC("WORD", "Trace route to destination address or hostname");
userC.addSC("tunnel", "Open a tunnel connection");
userC.addSC("where", "List active connections");
|