in reply to ftp or scp session on a telnet object

There are too many missing details from your question to be able to give you any useful answer.

How would you do it by hand?

  • Comment on Re: ftp or scp session on a telnet object

Replies are listed 'Best First'.
Re^2: ftp or scp session on a telnet object
by nrm (Initiate) on Apr 18, 2011 at 09:36 UTC
    If I need to explain over a manual session. say as follows open a putty session to server A. do a telnet to server B. perform and ftp to server C and copy files to server B. I need the above because, we are running through an automation client that actually runs on A, this uses net::telnet and achieves a session with B. Further I need to copy the files from Server C on B.
      So, you want to run an script in A that opens a Net::Telnet connection to B and from there drives a SFTP client that connects to C and gets some files from there, right?

      The task seems doable through Net::Telnet, what have you tried so far? What issues have you found?