I already know how to do some commands troubleshooting in a shell for 2 type of discovery : SSH and PowerCMD.
- Is there a tool too on the probe to open a shell on a UDA?
- Is there a tool too on the probe to do SNMP tests like Mindterm for ssh?
-----
SSH:
From the prob, run this to connect to a machine and test some command, similar to putty :
java -jar [...]\DataFlowProbe\content\lib\Mindterm.jar
------
PowerCMD:
In a cmd window:
powershell [...]\DataFlowProbe\runtime\probeManager\discoveryResources\PowerCmd.ps1 [MachineNameInDNS] [username]
In a powershell window directly :
$so = New-PSSessionOption -IdleTimeout 180000 -OpenTimeout 180000 -OperationTimeout 180000 -ProxyAccessType NoProxyServer
$s = New-PSSession -ErrorAction Stop -ComputerName [MachineNameInDNS] -Credential [username] -ApplicationName "" -SessionOption $so -Port 5985