Displaying 2 results from an estimated 2 matches for "sshpa3".
Did you mean:
sshpa4
2008 Jan 07
0
ssh -q doesn't suppress all warning messages
...tion suppress all warnings and diagnostics. however, the following condition still has the warning message appeared on the console:
#man ssh
..............
-q Quiet mode. Causes all warning and diagnostic messages to be suppressed.
..............
# ssh -q -i ~/.ssh/id_dsa_3 sshpa3 "uname -a"Warning: Identity file //.ssh/id_dsa_3 not accessible: No such file or directory.
I checked the source code that if we use "-q" option, we just set the log level to QUIET, and the above warning message is printed from the -i option:
ssh.c
line 387
case 'i':...
2008 Jan 10
8
[Bug 1429] New: ssh -q doesn't suppress all warning messages
...ption suppress all warnings
and diagnostics. however, the following condition still has the warning
message appeared on the console:
#man ssh
..............
-q Quiet mode. Causes all warning and diagnostic messages to
be
suppressed.
..............
# ssh -q -i ~/.ssh/id_dsa_3 sshpa3 "uname -a"
Warning: Identity file //.ssh/id_dsa_3 not accessible: No such file or
directory.
I checked the source code that if we use "-q" option, we just set the
log level to QUIET, and the above warning message is printed from the
-i option
(pls see the attachment file)
Alth...