Start of change

TELNET_SERVER_ATTRIBUTES view

The TELNET_SERVER_ATTRIBUTES view returns a single row containing the Telnet server attributes that have been configured using the Change Telnet Attributes (CHGTELNA) command.

The information returned is similar to the detail from the Retrieve Telnet Attributes (QTVRTVTELA) API.

Authorization: None required.

The following table describes the columns in the view. The system name is TN_ATTR. The schema is QSYS2.

Table 1. TELNET_SERVER_ATTRIBUTES view
Column Name System Column Name Data Type Description
AUTOSTART_SERVER AUTOSTART VARCHAR(4) Whether the system automatically starts the Telnet server when TCP/IP is started.
*NO
The system does not automatically start the Telnet server.
*YES
The system automatically starts the Telnet server.
NUMBER_SERVERS NBRSRV INTEGER
Nullable
The number of servers to start for QTVDEVICE Device Manager jobs.

Contains the null value if the number of servers started will be determined by the system.

SERVER_TASKS NBRTASK INTEGER
Nullable
The initial number of server tasks that are started to handle Telnet data traffic.

Contains the null value if the number of tasks started will be determined by the system.

KEEP_ALIVE_TIMEOUT TIMMRKTIMO INTEGER
Nullable
The number of seconds between connection validation. TCP tests each Telnet connection at the specified time interval. If TCP does not get a response, it ends the connection.

Contains the null value if number of seconds between connection validation will be determined by the system.

ALLOW_TRANSPORT_LAYER_
SECURITY
ALWSSL VARCHAR(5) Whether Transport Layer Security (TLS) and non-secure Telnet support should be started.
*NO
The non-secure Telnet support will be started.
*ONLY
The TLS support will be started.
*YES
The TLS and non-secure Telnet support will be started.
ENABLE_3270_WIDE ENBWIDE VARCHAR(4) Enable 3270 wide-screen by default.
*NO
Telnet 3270 full-screen mode will use a 24x80 display.
*YES
Telnet 3270 full-screen mode will support a 27x132 display
NUMBER_3270_INPUT_FIELDS NBRFLDS VARCHAR(4) The default number of 3270 input fields. Can contain the following special values:
*DFT
The system default of 126 input fields is used.
*RPY
The number of input fields is defined by the current work station device and the number provided via 3270 Query Reply.
DEFAULT_NVT_TYPE DFTNVTTYPE VARCHAR(6) The default Network Virtual Terminal (NVT) type to use when the Telnet server is not able to negotiate one of the supported types.
*NVT
NVT mode
*VT100
VT100 mode
CCSID CCSID VARCHAR(10) ASCII coded character set identifier (CCSID) to use on a VTxxx terminal.
1-65533
The ASCII CCSID value is used.
*BRITISH
The DEC British national replacement character set is used.
*DUTCH
The DEC Dutch national replacement character set is used.
*FINNISH
The DEC Finnish national replacement character set is used.
*FRENCH
The DEC French national replacement character set is used.
*FRENCHCAN
The DEC French Canadian national replacement character set is used.
*GERMAN
The DEC German national replacement character set is used.
*ITALIAN
The DEC Italian national replacement character set is used.
*MULTINAT
The DEC multinational character set is used.
*NORDAN
The DEC Norwegian/Danish national replacement character set is used.
*SPANISH
The DEC Spanish national replacement character set is used.
*SWEDISH
The DEC Swedish national replacement character set is used.
*SWISS
The DEC Swiss national replacement character set is used.
OUTGOING_TABLE_LIBRARY LIBVTOUT VARCHAR(10)
Nullable
The library containing OUTGOING_TABLE.

Contains the null value if OUTGOING_TABLE is a special value.

OUTGOING_TABLE TBLVTOUT VARCHAR(10) The outgoing mapping table used by the Telnet server to map outgoing data when in an ASCII full-screen session. Can contain the following special values:
*CCSID
The CCSID parameter is used to determine outgoing mapping.
*DFT
The CCSID parameter is used to determine outgoing mapping.
INCOMING_TABLE_LIBRARY LIBVTIN VARCHAR(10)
Nullable
The library containing INCOMING_TABLE.

Contains the null value if INCOMING_TABLE is a special value.

INCOMING_TABLE TBLVTIN VARCHAR(10) The incoming mapping table name used by the Telnet server to map incoming data when in an ASCII full-screen session. Can contain the following special values:
*CCSID
The CCSID parameter is used to determine incoming mapping.
*DFT
The CCSID parameter is used to determine incoming mapping.

Example

Examine the Telnet server configuration.
SELECT * FROM QSYS2.TELNET_SERVER_ATTRIBUTES;
  
End of change