HP OpenVMS Systemsask the wizard |
The Question is: I have UCX 4.2 on a alpha. I wish to turn off the telnet messages about logins / logouts that are on the system console. Can I also turn off all other console messages from UCX? The Answer is :
The command:
$ UCX SHOW SERVICE TELNET /FULL
includes a list of logging options enabled. For example:
$ ucx show serv telnet /full
Service: TELNET
State: Enabled
...
Log Opts: Acpt Actv Dactv Conn Error Exit Logi Logo Mdfy Rjct TimO
You can enable or disable logging options with the SET SERVICE command.
For example:
$ UCX SET SERVICE TELNET /LOG_OPTIONS=(NOLOGIN,NOLOGOUT,REJECT)
will disable LOGIN and LOGOUT logging and enable REJECT logging.
See UCX HELP SET SERVICE /LOG_OPTION for details.
You will need to DISABLE and ENABLE the service to make the new settings
take effect. Be aware that the DISABLE will terminate any existing TELNET
sessions.
|