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
|
userC.addSC("enable", "Turn on privileged commands");
userC.enable.addSC("<1-15>", "Level number");
userC.addSC("exit", "Exit from the EXEC");
userC.addSC("help", "Description of the interactive help system");
userC.addSC("ping", "Send echo messages");
userC.ping.addSC("WORD", "Ping destination address or Hostname");
userC.addSC("session", "Tunnel to module");
userC.session.addSC("<1-1>", "Slot number of module");
userC.session.addSC("<2-2>", "Slot number of module");
userC.session.addSC("A", "Slot number of module");
userC.session.addSC("B", "Slot number of module");
userC.addSC("show", "Show running system information");
userC.show.addSC("cdp", "cdp information");
userC.show.addSC("history", "Display the session command history");
userC.show.addSC("ip", "Display IP configuration");
userC.show.addSC("tacacs", "Shows tacacs+ server configuration");
userC.show.addSC("terminal", "Display console/RS-232 port configuration");
userC.show.addSC("usage", "Display usage summaries");
userC.show.addSC("version", "System hardware and software status");
userC.addSC("terminal", "Set terminal line parameters");
userC.terminal.addSC("databits", "Set number of data bits per character");
userC.terminal.addSC("parity", "Set terminal parity");
userC.terminal.addSC("speed", "Set transmit and receive speeds");
userC.terminal.addSC("stopbits", "Set asynch line stop bits");
|