Naïve question (as one who does iOS, macOS, Linux) is SSH something an end 
user can rely on to be there? Or is it something my Sysprogs (and I'm not 
one of them) needs to set up.

And compared to my PHP-driven FTP scripting would it be complementary or a 
faster or slower replacement?

(Mentioning my 3 client operating systems implies I can find an SSH client 
for each.)

Cheers, Martin

Martin Packer,
zChampion, Principal Systems Investigator,
Worldwide Cloud & Systems Performance, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker

Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker

Podcast Series (With Marna Walle): 
https://developer.ibm.com/tv/category/mpt/



From:   Paul Gilmartin <0000000433f07816-dmarc-requ...@listserv.ua.edu>
To:     IBM-MAIN@LISTSERV.UA.EDU
Date:   27/04/2016 03:54
Subject:        Re: TSO command from Microsoft Windows
Sent by:        IBM Mainframe Discussion List <IBM-MAIN@LISTSERV.UA.EDU>



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



Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU

----------------------------------------------------------------------
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