0

I am using secureCRT. I want to automate secureCRT using perl. I intend to open the secureCRT, enter hostname,username and password and then execute a command in secureCRT. Is there any perl object to work with secureCRT.

Is there any command like

Win32::OLE (SecureCRT.Application)

for perl

I am unable to find any perl documentation for using secureCRT

Maximus
  • 143
  • 3
  • 12

2 Answers2

0

Assuming you want to interact with a server that has a ssh daemon running, I suggest you to have a look at Net::SSH::Perl and skip trying to use SecureCRT from Perl.

Hope this helps

Tudor Constantin
  • 26,330
  • 7
  • 49
  • 72
0

Besides using some Perl module for SSH (i.e. Net::SSH2 or Net::SSH::Any), there is also PAC Manager, a connection manager similar to SecureCRT but written and scriptable in Perl.

salva
  • 9,943
  • 4
  • 29
  • 57