Description
Type integer READ/WRITE
Set logstdin to true to enable keystroke logging of stdin input produced during the session. The default value is true.
Example
if (command in {"csh","ksh"})
{
iolog_encrypt = true;
log_passwords = false;
iolog_errmax = 10000;
iolog_opmax = 10000;
loggroup = "admin";
logstderr = true;
logstdout = false;
logstdin = true;
iolog = mktemp("/var/adm/pm." + user + "." + command + ".XXXXXX");
accept;
}
Description
Type integer READ/WRITE
Set logstdout to true to enable keystroke logging of stdout output produced during the session. The default value is true.
Example
if (command in {"csh","ksh"})
{
iolog_encrypt = true;
log_passwords = false;
iolog_errmax = 10000;
iolog_opmax = 10000;
loggroup = "admin";
logstderr = true;
logstdout = false;
logstdin = true;
iolog = mktemp("/var/adm/pm." + user + "." + command + ".XXXXXX");
accept;
}
Description
Type string READ/WRITE
notfoundmsg is set to the message that displays if the selected runcommand is not available on the target host.
Example
notfoundmsg = "Command \"" + runcommand + "\" not available.";
Description
Type list READ/WRITE
passprompts contains a list of strings that should be interpreted as password prompts when attempting to exclude passwords from iolog.
Example
passprompts={"Password=", "Enter password"};