Hi Chris,
I already tried the all languages. I found on some riverbed steelstore community that in some versions there is a restriction to .I am not sure wether it is right or not.Anyway I already found the work around.We can execute ssh commands from script if we keep all commands of altavault in one text file and then execute that text file from script then we are able to get the result.
Solution Example :
#!/usr/bin/perl
$cli ='ssh admin@10.216.50.25<sh.txt';
$execute=`$cli`;
print $execute;
sh.txt file will contain commands of altavault which you want to execute from remote machine.....
This was executed successfully with result.
Thanks,
Rutul