Resource definitions come from the following sources:
-xrm 'c3270.bsdTm: true'Note that -xrm is supported on all of the 3270 emulators, not just on x3270.
c3270.resource-name: value
c3270.keymap.foo: \ <Key>a: String("bob") \n\ <Key>b: String("fred") \n\ <Key>c: String("joe")
When true, c3270 will use the curses Alternative Character Set (ACS) to display box-drawing characters. When false, c3270 will use Unicode box-drawing characters.
Name: c3270.aidWaitWhen true, c3270 will not block a script after executing an AID action (Enter, Clear, PF or PA). It is then script's responsibility to poll c3270's status until it shows that the keyboard is no longer unlocked.
Name: c3270.allBoldWhen true, c3270 will display all text in bold. This is needed for terminals like Linux consoles and xterms that display non-bold text in unreadably-dim colors. When false, text will be displayed in normal or bold, depending on the host-specified highlighting attribute.
When set to auto, it will be assumed true for 3279 emulation, and false for 3278 emulation.
Name: c3270.altScreenDefines a character string that will be output to switch the terminal from 80-column mode to 132-column mode. Within the string, the sequence \E is translated to the ASCII ESC character (0x1b).
When c3270.model is 5, and this and c3270.defScreen are defined, c3270 will automatically change the terminal size when the host switches between the default (24x80) screen and the alternate (27x132) screen.
Name: c3270.asciiBoxDrawWhen true, this causes box-drawing characters (the Unicode 2500 block) to be drawn with ASCII-art characters (+, - and |). This allows a readable representation of these characters on the screen when using fonts that do not include them or have them with the wrong width.
Name: c3270.bindLimitWhen true, c3270 will restrict its screen dimensions to those specified in the BIND image sent by the host. If false, it will not.
Name: c3270.blankFillWhen true, in 3270 mode c3270 will automatically convert trailing blanks in a field to NULLs in order to insert a character, and will automatically convert leading NULLs to blanks so that input data is not squeezed to the left. This works around some of the quirkier behavior of real 3270 terminals.
Name: c3270.bsdTmDefines c3270's response to the TELNET DO TIMING MARK option. When set to false, c3270 will respond to DO TIMING MARK with WONT TIMING MARK, which is consistent with most modern TELNET clients. When true, c3270 will respond with WILL TIMING MARK, which is consistent with the old BSD telnet command and with previous versions of c3270. In either case, c3270 will never respond to a DONT TIMING MARK option.
Name: c3270.caDirDefines a directory containing CA (root) certificates, used to validate a certificate presented by the host during SSL negotiation. The default is determined by the OpenSSL library on your workstation.
Name: c3270.caFileDefines a PEM-format file containing CA (root) certificates, used to validate a certificate presented by the host during SSL negotiation.
Name: c3270.cbreakIf true, c3270 will set up the terminal in cbreak mode instead of the default raw mode. Cbreak mode enables flow-control processing in the TTY driver, and may be required for certain terminals that use flow control to avoid dropping characters.
Name: c3270.certFileGives the name of a certificate file, provided to the host if requested during SSL negotiation. The default file format is PEM; it can be overridden by c3270.certFileType. The private key for the certificate is specified by c3270.keyFile. If c3270.chainFile is specified, it overrides c3270.certFile.
Name: c3270.certFileTypeGives the type of the certificate file specified by c3270.certFile. The value can be pem or asn1.
Name: c3270.chainFileGives the name of a certificate chain file, provided to the host if requested during SSL negotiation. The file contains a PEM-format certificate, optionally followed by any intermediate certificates used to sign it, and the CA (root) certificate. The private key for the certificate is specified by c3270.keyFile. If c3270.chainFile is specified, it overrides c3270.certFile.
Name: c3270.charsetThis defines the host EBCDIC character set, that is, what glyph (image) is displayed for each EBCDIC code sent by the host, and what EBCDIC code is sent to the host for each character typed on the keyboard. This is more correctly referred to as the host code page.
To display the character sets supported by c3270, use the -v command-line option.
Name: c3270.color8If true, c3270 will respond to a Query(Color) with a list of 8 supported colors. If false, it will send a list of 16 colors. The 8-color setting is required for some hosts which abort a session if 16 colors are reported.
This setting will also cause c3270 to assume that the terminal supports no more than 8 colors, and will use only the 8 basic curses colors to draw the screen.
Name: c3270.composeMapGives the name of the map used to define the pairs of characters that form composite characters with the Compose key. The definition of compose map foo is the resource c3270.composeMap.foo.
Name: c3270.composeMap.fooAn individual compose map definition. Each line in the resource is of the form:
keysym1 + keysym2 = keysym3
meaning "when the Compose key is pressed, followed by keysym1 and keysym2 (in either order), interpret it as keysym3." The definitions are case-sensitive.
Name: c3270.confDirDefines the c3270 configuration directory, where c3270 will search for the ibm_hosts file by default. (See c3270.hostsFile.)
Name: c3270.cursesColorForDefaultDefines the default color to use to render text based on its attributes, when the host does not specify a particular color.
The value of the resource can be either a curses color index or curses color name. These are are defined as follows:
Curses Color Index | Curses Color Name |
---|---|
0 | black |
1 | red |
2 | green |
3 | yellow |
4 | blue |
5 | magenta |
6 | cyan |
7 | white |
8 | no name -- displays as grey |
9 | no name -- displays as bright red |
10 | no name -- displays as bright green |
11 | no name -- displays as bright yellow |
12 | no name -- displays as bright blue |
13 | no name -- displays as bright magenta |
14 | no name -- displays as bright cyan |
15 | no name -- displays as bright white |
The default values are:
c3270 Resource | Default Curses Color (8-color terminal) | Default Curses Color (16-color terminal) |
---|---|---|
cursesColorForDefault | green | 10 (bright green) |
cursesColorForIntensified | red | red |
cursesColorForProtected | blue | 12 (bright blue) |
cursesColorForProtectedIntensified | white | 15 (bright white) |
Defines what curses color to use to render a particular host color. Host colors can be specified by name or number. That is, to define the curses color to use when the host specifies green, which is host color 4, either the resource c3270.cursesColorForHostColorGreen or the resource c3270.cursesColorForHostColor4 can be defined.
The default definitions are as follows. Note that on an 8-color terminal, c3270 only displays 8 host colors.
Host Color Index | Host Color Name | Default Curses Color (8-color terminal) | Default Curses Color (16-color terminal) |
---|---|---|---|
0 | NeutralBlack | black | black |
1 | Blue | blue | 12 (bright blue) |
2 | Red | red | red |
3 | Pink | red | 13 (bright magenta) |
4 | Green | green | 10 (bright green) |
5 | Turquoise | cyan | 14 (bright cyan) |
6 | Yellow | yellow | 11 (bright yellow) |
7 | NeutralWhite | white | 15 (bright white) |
8 | Black | - | black |
9 | DeepBlue | - | blue |
10 | Orange | - | 9 (bright red) |
11 | Purple | - | magenta |
12 | PaleGreen | - | green |
13 | PaleTurquoise | - | cyan |
14 | Grey | - | white |
15 | White | - | 15 (bright white) |
Note that "neutral black" means black on a display device and white on a printing device, and "neutral white" means white on a display device and black on a printing device.
In NVT mode, c3270 maps the ANSI-standard colors 0 through 7 to host colors, and from host colors to curses colors. The mapping from ANSI colors to host colors cannot be changed, but the mapping from host colors to curses colors can be with c3270.cursesColorForHostColor* resources. The mappings and defaults are as follows:
NVT ANSI Color | Mapped Host Color (not configurable) | Default Curses Color (8-color terminal) | Default Curses Color (16-color terminal) |
---|---|---|---|
0 (black) | 0 (Black) | black | black |
1 (red) | 2 (Red) | red | red |
2 (green) | 4 (Green) | green | 10 (bright green) |
3 (yellow) | 6 (Yellow) | yellow | 11 (bright yellow) |
4 (blue) | 1 (Blue) | blue | 12 (bright blue) |
5 (magenta) | 3 (Pink) | red | 13 (bright magenta) |
6 (turquoise) | 13 (PaleTurquioise) | cyan | cyan |
7 (white) | 15 (White) | white | 15 (bright white) |
See c3270.cursesColorForDefault for the definitions of curses colors.
Name: c3270.cursesKeypadWhen true, c3270 will set up the terminal in curses keypad mode.
Name: c3270.cursorPosWhen true, causes c3270 to display the cursor location in the OIA (the status line).
Name: c3270.dbcsCgcsgidOverrides the compiled-in value of the CGCSGID for the current host character set, which will be reported to the host in response to a Query(Character Sets). The value is an integer, which can be prefixed with '0x' to be in hexadecimal. The upper 16 bits are the GCSGID (character set) and the lower 16 bits are the CPGID (code page). This value applies only to the double-byte (DBCS) character set. Use c3270.sbcsCgcsgid for the single-byte (SBCS) character set.
Name: c3270.defaultFgBgIf true, c3270 will use the terminal's default foreground color instead of specifying the curses color white, and it will use the terminal's default background color instead of specifying the curses color black. This is helpful in two cases: for emulators such as gnome-terminal whose usual representation of a black background is a murky gray, and for emulators configured with a black foreground and a white background, so that c3270's screen will appear the same way.
defaultFgBg will be set to true automatically if the environment variable COLORTERM is set to gnome-terminal.
Note that this resource and option are available only if c3270 has been compiled with a version of ncurses that supports default foreground and background colors, and if the terminal and its associated termcap/terminfo entry also support it (it is usually implemented as ANSI color 9).
Name: c3270.defScreenDefines a character string that will be output to switch the terminal from 132-column mode to 80-column mode. Within the string, the sequence \E is translated to the ASCII ESC character (0x1b).
When c3270.model is 5, and this and c3270.altScreen are defined, c3270 will automatically change the terminal size when the host switches between the default (24x80) screen and the alternate (27x132) screen.
Name: c3270.dftBufferSizeSpecifies the default buffer size for DFT IND$FILE file transfers. This value can be overridden in the File Transfer dialog and by a parameter to the Transfer action.
Name: c3270.devNameSpecifies the device name (workstation ID) sent in response to a TELNET NEW-ENVIRON sub-negotiation request, used by iSeries hosts (RFC 4777).
Name: c3270.dsTraceWhen true, c3270 writes a hexadecimal representation of all network traffic (and its interpretation) into a file, which defaults to /tmp/x3trc.pid. The directory prefix is defined by c3270.traceDir. If c3270.traceFile is defined, it gives the entire pathname and c3270.traceDir is ignored.
Name: c3270.eofThis setting is used only in NVT mode, and is similar in function to the stty parameter of the same name.
When connected in line-at-a-time mode (when c3270 gathers a line of input before forwarding it to the host), entering this character at the keyboard causes the current line of input to be forwarded to the host without a trailing CR/LF sequence.
Name: c3270.erase
This setting is used only in NVT mode, and is similar in function to the stty parameter of the same name.
When connected in line-at-a-time mode (c3270 gathers a line of input before forwarding it ot the host), entering this character at the keyboard will cause c3270 to discard the last character on the input line.
When connected in character-at-a-time mode (c3270 sends each keystroke to the host as it is entered), this is the character that will be sent to the host by the Erase action.
Name: c3270.eventTraceWhen true, c3270 traces information about keyboard and mouse events into a file. The default file name is /tmp/x3trc.pid. The directory prefix is defined by c3270.traceDir. If c3270.traceFile is defined, it gives the entire pathname and c3270.traceDir is ignored.
Name: c3270.extendedDeprecated resource -- replaced by c3270.model syntax
Indicates support for the 3270 Extended Data Stream.
Name: c3270.hostnameGives the name of the host to connect to. The name can include the usual options (prefixes to specify special connection options, LU names, and port). A hostname specified on the command line takes precedence over c3270.hostname.
The most common use of c3270.hostname is in session files, where a file is used to pass all of the options to establish a c3270 session.
Name: c3270.hostsFileThe pathname of a file containing hostname aliases. The file can also be used to define a set of actions to perform when connecting to a host.
The format of the file is explained on the ibm_hosts manual page. The default pathname is actually ibm_hosts in the directory defined by c3270.confDir.
Name: c3270.icrnlThis setting is used only in NVT mode, and is similar in function to the stty parameter of the same name. It controls whether input carriage returns are mapped to newlines.
Name: c3270.idleCommandWhen c3270.idleCommand is defined, it specifies a command to execute after a period of keyboard inactivity (no AID keys pressed). The c3270.idleCommand can be an arbitrary sequence of c3270 actions, but it should include an action which generates an AID (Enter, Clear, PF or PA). c3270.idleCommandEnabled must be true in order for the c3270.idleCommand to take effect. (This is so an idle command can be defined, but needs to be enabled explicitly at some point after login.) c3270.idleTimeout specifies the inactivity interval.
Name: c3270.idleCommandEnabledControls whether c3270.idleCommand has effect as soon as a host session is established. (This is so an idle command can be defined, but needs to be explicitly enabled at some point after login.)
Name: c3270.idleTimeoutThe timeout value for c3270.idleCommand. If the value ends in h, it specifies hours; if it ends in m it specifies minutes; if it ends in s or does not have an alphanumeric suffix, it specifies seconds.
If the value begins with a tilde ~, the time will be randomly varied +/-10% from the value specified.
Name: c3270.inlcrThis setting is used only in NVT mode, and is similar in function to the stty parameter of the same name. It controls whether input newlines are mapped to carriage returns.
Name: c3270.intrThis setting is used only in NVT mode, and is similar in function to the stty parameter of the same name. When this character is typed on the keyboard, the TELNET IP (Interrupt Process) sequence is sent to the host.
Name: c3270.keyFileGives the name of a file containg the private key for the certificate specified by c3270.certFile or c3270.chainFile. The default file type is PEM; it can be overridden by c3270.keyFileType. If the private key is encrypted, the password is specified by c3270.keyPasswd.
Name: c3270.keyFileTypeGives the type of the private key file specified by c3270.keyFile. The value can be pem or asn1.
Name: c3270.keymapThe name of the keyboard map to use. It can be a single keymap name or a comma-separated list of keymaps, which will be applied in order.
Each keymap can optionally be defined in three separate parts: a common keymap, which is applied at all times, an NVT-mode keymap, which is applied only in NVT mode, and a 3270-mode keymap, which is only applied in 3270 mode. The NVT-mode keymap has the same name as the common keymap, with the suffix .nvt appended. The 3270-mode keymap has the suffix .3270 appended. Thus specifying a c3270.keymap value of foo implies the use of three different keymaps (if found): foo, foo.nvt and foo.3270.
c3270.keymap is only the name; the actual keymap for name foo can be defined either by the resource c3270.keymap.foo, or by a keymap file. The keymap file is not searched for in any particular location, nor does it have a special suffix, so c3270.keymap can specify the full pathname of the keymap file.
Name: c3270.keymap.fooThe definition of keymap foo. Please refer to the How To Create a Custom Keymap document for a full description of the syntax.
Name: c3270.keyPasswdGives the password for the private key file specified by c3270.keyFile, if it is encrypted. The value can take one of two forms. file:filename specifies that the password is in a file. string:string gives the password value in the resource itself.
Name: c3270.killThis setting is used only in NVT mode, and is similar in function to the stty parameter of the same name.
When connected in line-at-a-time mode (when c3270 gathers a line of input before forwarding it to the host), entering this character at the keyboard causes the current input line to be erased.
When connected in character-at-a-time mode (when c3270 sends each keystroke to the host), this is the ASCII character that is sent to the host by the DeleteField action.
Name: c3270.lineWrapThis setting is used only in NVT mode. When true, c3270 will automatically insert a CR/LF sequence when output reaches the end of a line. When false, output will pile up at the end of each line until the host sends a CR/LF sequence.
Name: c3270.loginMacroDefines a sequence of commands to run as soon as a host connection is established. Usually these would be commands used to navigate through login screens, such String, Tab and Enter.
If a c3270.hostsFile is in use and a matching entry is found, the login macro from that entry will be used in preference to the c3270.loginMacro.
Name: c3270.lnextThis setting is used only in NVT mode, and is similar in function to the stty parameter of the same name.
When connected in line-at-a-time mode (when c3270 gathers a line of input before forwarding it to the host), entering this character at the keyboard removes any special meaning from the next character entered.
Name: c3270.m3279Deprecated resource -- replaced by c3270.model syntax
Indicates support for color (a 3279 terminal).
Name: c3270.menuBarIf false, the menu bar will not be displayed at the top of the c3270 display, even if the terminal supports a mouse. The menu is still available by pressing Ctrl-N.
Name: c3270.metaEscapeWhen true, c3270 will assume that pressing a key while holding down the Alt key will cause the terminal to transmit the ASCII ESC character (0x1b) before the key. Thus c3270 will interpret ESC-x as Alt-x.
When false, ESC is treated like any other input character.
Name: c3270.modelThe terminal model that c3270 is emulating. The model is in three parts, separated by dashes; each part is optional.
If true, c3270 will emulate a 3278, and will not use any of the terminal's color attributes.
Name: c3270.monoCaseWhen true, causes c3270 to run in uppercase-only mode.
Name: c3270.mouseIf true, enables c3270 to accept mouse-control events on terminals and emulators that support them. This allows a left mouse click to move the cursor. On terminals like xterm and gnome-terminal, this means that the usual mouse selection actions must be performed with the Shift key pressed. If false, mouse-control events will not be enabled.
Name: c3270.noPromptIf true, the interactive c3270> prompt will be disabled. In particular, this means that when c3270 is not connected to a host, a keymap or an external script is the only way to start a new host connection.
Name: c3270.numericLockWhen true, causes c3270 to lock the keyboard when non-numeric data is entered into fields with the Numeric attribute.
Name: c3270.onlcrUsed only in NVT line-at-a-time mode; similar to the stty parameter of the same name. It controls whether output newlines are mapped to CR/LF sequences.
Name: c3270.oerrLockIf true, operator errors (typing into protected fields, insert overflow, etc.) will cause the keyboard to lock with an error message in the OIA (status line). If false, these errors will simply cause the terminal bell will ring, without any keyboard lock or message.
Name: c3270.onceWhen true, c3270 will exit as soon as a host disconnects. The default is false if no hostname is specified on the command line or in a session file, true otherwise.
Name: c3270.oversizeSets the screen dimensions to be larger than the default for the chosen model. Its value is a string in the format colsxrows. It can also be the string auto, which will cause c3270 to use the entire screen area of the terminal. It is used only if the c3270.model includes the "-E" (extended data stream) suffix, and only if the specified dimensions are larger than the model number defaults. Also, only hosts that support the Query Reply structured field will function properly with c3270 in this mode.
Name: c3270.portThe name of the default TCP port for c3270 to connect to. This can be either a symbolic name from /etc/services, or an integer.
Name: c3270.proxyDefines a proxy server that c3270 will use to connect to hosts. The value is of the form type:server[:port], where options for type are described on the c3270 manual page.
Name: c3270.printerLuIf a value is set, c3270 will automatically start a pr3287 printer session when a host connection is established. If the value is ".", the pr3287 session will be associated with the interactive terminal session (this requires that the host supports TN3270E). Otherwise, the value is taken as the LU name to associate with the printer session.
Name: c3270.printer.assocCommandLineThe shell command to use to start a printer session, when associated with the current TN3270E session LU (when c3270.printerLU is "."). Within the string, the following substitutions are made:
The name of the command supplied to the "-command" option of the pr3287 program to print each job. This is the text which is substituted for %C in c3270.printer.assocCommandLine and c3270.printer.luCommandLine resources.
Name: c3270.printer.luCommandLineThe shell command to use to start a printer session, when associated with a specific LU. Within the string, the following substitutions are made:
Defines extra parameters to substutute for the %O% token in the printer command line.
Name: c3270.printTextCommandThe shell command used by the PrintText action. An ASCII image of the 3270 display becomes the standard input to this command.
Name: c3270.qrBgColorWhen true, c3270 will report in the QueryReply(color) that it supports background color; when false, it will not. It is disabled by default because certain versions of GDDM are confused by this report and will crash.
Name: c3270.quitThis setting is used only in NVT mode, and is similar in function to the stty parameter of the same name. When connected in line-at-a-time mode (when c3270 gathers a line of input before forwarding it to the host), entering this character at the keyboard causes the TELNET BREAK sequence to be sent to the host.
Name: c3270.reconnectWhen true, c3270 will automatically reconnect to a host after it disconnects.
Name: c3270.reverseVideoWhen true, c3270 will use a white background instead of a black one.
Name: c3270.rprntThis setting is used only in NVT mode, and is similar in function to the stty parameter of the same name. When connected in line-at-a-time mode (when c3270 gathers a line of input before forwarding it to the host), entering this character at the keyboard causes the current input line to be redisplayed.
Name: c3270.sbcsCgcsgidOverrides the compiled-in value of the CGCSGID for the current host character set. The value is an integer, which can be prefixed with '0x' to be in hexadecimal. The upper 16 bits are the GCSGID (character set) and the lower 16 bits are the CPGID (code page). This value applies only to the single-byte (SBCS) character set. Use c3270.dbcsCgcsgid for the double-byte (DBCS) character set.
Name: c3270.screenTraceWhen true, c3270 will save an ASCII version of the screen image in a file every time it changes. The file name defaults to /tmp/x3scr.pid. The directory prefix is defined by c3270.traceDir. If c3270.screenTraceFile is defined, it defines the file name and c3270.traceDir is ignored.
Name: c3270.screenTraceFileIf defined, gives the name of the file that screen traces will be written into.
Name: c3270.scriptPortIf defined, c3270 will accept script connections on the specified local TCP port. The rules for the commands passed over these connections are documented in the x3270-script manual page.
Name: c3270.selfSignedOkWhen true, c3270 will allow SSL authentication with a host that uses a self-signed certificate.
Name: c3270.socketWhen true, c3270 will create a Unix-domain socket than can be used by an external script to control the session. The name of the socket is /tmp/x3sck.pid. The -p option of the x3270if command can be used to connect to this socket.
Name: c3270.suppressActionsA list of whitespace-separated action names, with or without parentheses, which are to be ignored. The actions will be completely inaccessible, whether by keymaps, scripts, macros or the Execute an Action menu option. This resource is intended to be used as a security precaution for users who can define their own keymaps, but who do not have access to resource definitions or command-line options.
Name: c3270.termNameAn alternate name to be sent in response to the host's TELNET DO OPTION TERMINAL-NAME request. The default is IBM-, followed by the value of c3270.model.
Name: c3270.traceDirDefines the directory that trace files are written into.
Name: c3270.traceFileIf defined, gives the name of the file that data stream and event traces will be written into. If it begins with ">>", data will be appended to the file.
Name: c3270.traceFileSizeIf defined, gives a limit on the size of the file that data stream and event traces will be written into. If not defined, or defined as 0, there will be no limit on the size of the file. The value is a number, followed by an optional suffix. If the suffix is K (e.g., 128K), the value will be multiplied by 1024. If the suffix is M, the value will be multiplied by (1024*1024). The size limit enforced at operation boundaries, not per byte, so the actual file may grow slightly larger. When the file size exceeds the limit, the trace file will be renamed with a "-" appended and a new file started.
Name: c3270.typeaheadWhen true, c3270 will store keystrokes in a buffer when the keyboard is locked. When false, these keystrokes will be dropped.
Name: c3270.underscoreWhen true, c3270 will display fields with the underlined attribute in a special way: blank characters will be translated to underscore (_) characters. This is needed on terminals that are unable to display real underlined text.
Name: c3270.unlockDelayWhen c3270 sends the host an AID (the Enter, Clear, PF or PA actions), it locks the keyboard until the host sends a reply to unlock it. Some hosts unlock the keyboard before they are actually finished processing the command, which can cause scripts to malfunction subtly. To avoid this, c3270 implements a hack to briefly delay actually unlocking the keyboard. When c3270.unlockDelay is true, the keyboard unlock will be delayed for c3270.unlockDelayMs milliseconds. Setting it to false removes this delay, except when executing a macro.
Name: c3270.unlockDelayMsOverrides the default value for the unlock delay (the delay between the host unlocking the keyboard and c3270 actually performing the unlock). The value is in milliseconds; use 0 to turn off the delay completely, including for macros.
Name: c3270.userSpecifies the user name sent in response to a TELNET NEW-ENVIRON sub-negotiation request, used by iSeries hosts (RFC 4777).
Name: c3270.verifyHostCertIf false (the default), c3270 will not verify SSL host certificates. If true or if the -verifycert option is given, c3270 will verify SSL host certificates, and not allow an SSL or SSL/TLS connection to complete unless the host certificate can be validated.
Name: c3270.weraseThis setting is used only in NVT mode, and is similar in function to the stty parameter of the same name. When connected in line-at-a-time mode (when c3270 gathers a line of input before forwarding it to the host), entering this character at the keyboard erases the last word of input.
When connected in character-at-a-time mode (when c3270 sends each keystroke to the host), this is the ASCII character that is sent to the host by the DeleteWord action.
charset | hostname | keymap | model |
port | proxy | printerLu |
eof | erase | icrnl | inlcr |
intr | kill | lineWrap | lnext |
onlcr | quit | rprnt | werase |
bindLimit | bsdTm | color8 | dbcsCgcsgid |
dftBufferSize | devName | sbcsCgcsgid | termName |
user |
blankFill | idleCommand | idleCommandEnabled | idleTimeout |
mouse | numericLock | oerrLock |
caDir | caFile | certFile | certFileType |
chainFile | keyFile | keyFileType | keyPasswd |
noPrompt | selfSignedOk | suppressActions | verifyHostCert |
dsTrace | eventTrace | screenTrace | screenTraceFile |
traceDir | traceFile | traceFileSize |
extended | m3279 |
c3270 version 3.3.12ga11 Mon Jul 23 20:31:51 CDT 2012