On Tue, 26 Apr 2016 19:28:41 -0500, Steve Beaver wrote:

>The problem with Windows Telenet is getting by the signon screen and any 
>messages that come out such as "Password Will Expire..." and all the Broadcast 
>messages.  Plus if the LOGON is driven into ISPF you will have to compensate 
>for that.
>
>The next question, is what type of commands?
>
Yup.

ssh is much nicer to you:

o It's encrypted.

o It doesn't require keyboard-interactive authentication.

o The fluff goes to stderr, the payload to stdout, making it suitable
  for a programmatic interface.

A much abridged version of my bridge EXEC:

user@OS/390.25.00: cat    rtso2
/* REXX */ signal on novalue;    /* ******************************
  Doc: simple ssh network interface to TSO.
*/
trace Err

address 'MVS'

do L = 1
   'EXECIO 1 DISKR 0 (stem S.'  /* Read a command from terminal.  */
   if RC<>0 then leave L        /* Quit if end of file.           */
   address 'TSO' S.1            /* Issue TSO command.             */
   end L

return( RC )                     /* ****************************** */
user@OS/390.25.00:

o Surely needs allocation for SYSEXEC, etc.

o Works alike with PuTTY and Cygwin.

o I use something similar for batch-like ISPF.

- gil

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Reply via email to