Net::OpenSSH::OSTracer(3pm) | User Contributed Perl Documentation | Net::OpenSSH::OSTracer(3pm) |
Net::OpenSSH::OSTracer - trace ssh master process at the OS level
use Net::OpenSSH; $Net::OpenSSH::debug |= 512; Net::OpenSSH->new($host)->system("echo hello world"); system "less /tmp/net_openssh_master.*.strace";
This is a Net::OpenSSH helper module that allows you to trace the master "ssh" process at the operating system level using the proper utility available in your system (e.g., "strace", "truss", "ktruss", "tusc", etc.).
This feature can be used when debugging your programs or to report bugs on the module.
It is enabled setting the flag 512 on the $Net::OpenSSH::debug variable:
$Net::OpenSSH::debug |= 512;
By default the output files of the tracer are saved as "/tmp/net_openssh_master.$pid.$tracer_type".
Also, the output send by the tracer to stdout/stderr is saved as "/tmp/net_openssh_master.$pid.txt".
The module can be configured through the following global variables:
Currently accepted types are: "strace" (Linux), "ktrace" (*BSD), "tusc" (HP-UX) and "truss" (Solaris and AIX).
By default, it infers it from the tracer type selected.
The variable has to be set with the path of the "sudo" binary. For instance:
$Net::OpenSSH::OSTracer::sudo = '/usr/bin/sudo';
If you need to pass a password to "sudo", set the environment variable "SUDO_ASKPASS". For instance:
SUDO_ASKPASS=/usr/bin/ssh-askpass
This module has not been tested under all the operating systems is says to support.
If you find any problem, just report it, please!
Copyright (C) 2012 by Salvador Fandiño (sfandino@yahoo.com)
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.0 or, at your option, any later version of Perl 5 you may have available.
2023-02-04 | perl v5.36.0 |