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
|
lineconC.addSC("access-class", "Filter connections based on an IP access list");
lineconC.addSC("autocommand", "Automatically execute an EXEC command");
lineconC.addSC("autocommand-options", "Autocommand options");
lineconC.addSC("data-character-bits", "Size of characters being handled");
lineconC.addSC("databits", "Set number of data bits per character");
lineconC.addSC("default", "Set a command to its defaults");
lineconC.addSC("domain-lookup", "Enable domain lookups in show commands");
lineconC.addSC("editing", "Enable command line editing");
lineconC.addSC("escape-character", "Change the current line's escape character");
lineconC.addSC("exec", "Start an EXEC process");
lineconC.addSC("exec-banner", "Enable the display of the EXEC banner");
lineconC.addSC("exec-character-bits", "Size of characters to the command exec");
lineconC.addSC("exec-timeout", "Set the EXEC timeout");
lineconC["exec-timeout"].addSC("<0-35791>", "Timeout in minutes");
lineconC["exec-timeout"]["<0-35791>"].addSC("<0-2147483>", "Timeout in seconds");
lineconC.addSC("exit", "Exit from line configuration mode");
lineconC.addSC("flowcontrol", "Set the flow control");
lineconC.flowcontrol.addSC("NONE", "Set no flow control");
lineconC.flowcontrol.addSC("hardware", "Set hardware flow control");
lineconC.flowcontrol.hardware.addSC("in", "Listen to flow control from the attached device");
lineconC.flowcontrol.hardware.addSC("out", "Send flow control information to the attached device");
lineconC.flowcontrol.addSC("software", "Set software flow control");
lineconC.addSC("full-help", "Provide help to unprivileged user");
lineconC.addSC("help", "Description of the interactive help system");
lineconC.addSC("history", "Enable and control the command history function");
lineconC.addSC("international", "Enable international 8-bit character support");
lineconC.addSC("ip", "IP options");
lineconC.addSC("location", "Enter terminal location description");
lineconC.addSC("logging", "Modify message logging facilities");
lineconC.addSC("login", "Enable password checking");
lineconC.login.addSC("local", "Local password checking");
lineconC.login.addSC("tacacs", "Use tacacs server for password checking");
lineconC.addSC("modem", "Configure the Modem Control Lines");
lineconC.modem.addSC("CTS-Alarm", "Alarm device which only uses CTS for call control");
lineconC.modem.addSC("DTR-active", "Leave DTR low unless line has an active incoming connection or EXEC");
lineconC.modem.addSC("Dialin", "Configure line for a modern dial-in modem");
lineconC.modem.addSC("Host", "Devices that expect an incoming modem call");
lineconC.modem.addSC("InOut", "Configure line for incoming AND outgoing use of modem");
lineconC.modem.addSC("Printer", "Devices that require DSR/CD active");
lineconC.modem.addSC("answer-timeout", "Set interval between the time the server raises DTR in response to RING and the modem responds to CTS");
lineconC.addSC("monitor", "Copy debug output to the current terminal line");
lineconC.addSC("motd-banner", "Enable the display of the MOTD banner");
lineconC.addSC("no", "Negate a command or set its defaults");
lineconC.addSC("notify", "Inform users of output from concurrent sessions");
lineconC.addSC("padding", "Set padding for a specified output character");
lineconC.addSC("parity", "Set terminal parity");
lineconC.addSC("password", "Set a password");
lineconC.password.addSC("LINE", "The UNENCRYPTED (cleartext) line password");
lineconC.addSC("privilege", "Change privilege level for line");
lineconC.addSC("refuse-message", "Define a refuse banner");
lineconC.addSC("rotary", "Add line to a rotary group");
lineconC.addSC("rxspeed", "Set the receive speed");
lineconC.addSC("session-timeout", "Set interval for closing connection when there is no input traffic");
lineconC.addSC("special-character-bits", "Size of the escape (and other special) characters");
lineconC.addSC("speed", "Set the transmit and receive speeds");
lineconC.speed.addSC("<0-4294967295>", "Transmit and receive speeds");
lineconC.addSC("start-character", "Define the start character");
lineconC.addSC("stop-character", "Define the stop character");
lineconC.addSC("stopbits", "Set async line stop bits");
lineconC.stopbits.addSC("1.5", "One and one-half stop bits");
lineconC.addSC("terminal-type", "Set the terminal type");
lineconC.addSC("timeout", "Timeouts for the line");
lineconC.addSC("transport", "Define transport protocols for line");
lineconC.transport.addSC("input", "Define which protocols to use when connecting to the terminal server");
lineconC.transport.input.addSC("all", "All protocols");
lineconC.transport.input.addSC("none", "No protocols");
lineconC.transport.input.addSC("telnet", "TCP/IP Telnet protocol");
lineconC.transport.addSC("output", "Define which protocols to use for outgoing connections");
lineconC.transport.addSC("preferred", "Specify the preferred protocol to use");
lineconC.addSC("txspeed", "Set the transmit speeds");
lineconC.addSC("vacant-message", "Define a vacant banner");
lineconC.addSC("width", "Set width of the display terminal");
|