Re: SFTP Client for z/OS

2007-05-03 Thread Norbert Friemel
On Wed, 2 May 2007 11:49:04 -0400, John Kington wrote: Thanks for the replies. It looks like the least painful way is to copy the data from mvs dataset(s) to hfs file(s) so that the OpenSSH port client can read them. I was just hoping there were no walls between Unix System Services and z/OS.

Re: SFTP Client for z/OS

2007-05-03 Thread John Kington
Norbert, Have a look at http://www.dovetail.com/products/dspipes.html and http://www.dovetail.com/docs/dspipes/cookbook.html#3_13 Thanks for the pointer. I gave in for now and we will duplicate the data to hfs. Regards, John

Re: SFTP Client for z/OS

2007-05-03 Thread Phil Sidler
On Thu, 3 May 2007 07:49:29 -0400, John Kington [EMAIL PROTECTED] wrote: Thanks for the pointer. I gave in for now and we will duplicate the data to hfs. Another option is to use regular ftp over an encrypted ssh tunnel. for example, ssh -S -fo -L ftp/2221:127.0.0.1:21 [EMAIL PROTECTED]

Re: SFTP Client for z/OS

2007-05-03 Thread Phil Sidler
Yet another approach... cat //'MVS.DATA.SET' | ssh -T [EMAIL PROTECTED] /bin/cat '' unixfile or cp //'MVS.DATA.SET' /dev/fd1 | ssh -T [EMAIL PROTECTED] /bin/cat '' unixfile probably there is some variant that will work to Windows.

Re: SFTP Client for z/OS

2007-05-03 Thread McKown, John
-Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Phil Sidler Sent: Thursday, May 03, 2007 2:04 PM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: SFTP Client for z/OS Yet another approach... cat //'MVS.DATA.SET' | ssh -T [EMAIL PROTECTED

SFTP Client for z/OS

2007-05-02 Thread John Kington
Is there a SFTP client that can run on z/OS 1.7 without needing Unix System Services? TIA John -- NOTICE: The information contained in this electronic mail transmission is intended by Convergys Corporation for the use of the named individual or entity to which it is directed and may contain

Re: SFTP Client for z/OS

2007-05-02 Thread Ulrich Boche
[EMAIL PROTECTED] wrote: Is there a SFTP client that can run on z/OS 1.7 without needing Unix System Services? TIA John Typically, the only type of files that sftp can transfer is HFS files. Why do you want to avoid UNIX System Services? What do you want to use sftp for? -- Ulrich Boche SVA

Re: SFTP Client for z/OS

2007-05-02 Thread John Kington
Ulrich, Typically, the only type of files that sftp can transfer is HFS files. Why do you want to avoid UNIX System Services? What do you want to use sftp for? The datasets are z/os (mvs)and I was trying to see if we could use sftp without copying the data to HFS file(s). Regards, John

Re: SFTP Client for z/OS

2007-05-02 Thread Shane
On Wed, 2007-05-02 at 07:27 -0400, John Kington wrote: Is there a SFTP client that can run on z/OS 1.7 without needing Unix System Services? While we're casting wishful dreams around, anyone know of a z/OS that can run without needing Unix System Services? Just asking ... Shane ...

Re: SFTP Client for z/OS

2007-05-02 Thread McKown, John
-Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of John Kington Sent: Wednesday, May 02, 2007 6:28 AM To: IBM-MAIN@BAMA.UA.EDU Subject: SFTP Client for z/OS Is there a SFTP client that can run on z/OS 1.7 without needing Unix System

Re: SFTP Client for z/OS

2007-05-02 Thread Russell, Elizabeth
Subject: Re: SFTP Client for z/OS Ulrich, Typically, the only type of files that sftp can transfer is HFS files. Why do you want to avoid UNIX System Services? What do you want to use sftp for? The datasets are z/os (mvs)and I was trying to see if we could use sftp without copying the data to HFS

Re: SFTP Client for z/OS

2007-05-02 Thread Jack Kelly
: SFTP Client for z/OS Ulrich, Typically, the only type of files that sftp can transfer is HFS files. Why do you want to avoid UNIX System Services? What do you want to use sftp for? The datasets are z/os (mvs)and I was trying to see if we could use sftp without copying the data to HFS file(s

Re: SFTP Client for z/OS

2007-05-02 Thread Shmuel Metz (Seymour J.)
In [EMAIL PROTECTED], on 05/02/2007 at 07:27 AM, John Kington [EMAIL PROTECTED] said: Is there a SFTP client that can run on z/OS 1.7 without needing Unix System Services? Is there a TCP/IP stack that can run on z/OS 1.7 without needing Unix System Services? -- Shmuel (Seymour J.)

Re: SFTP Client for z/OS

2007-05-02 Thread McKown, John
-Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Shmuel Metz (Seymour J.) Sent: Wednesday, May 02, 2007 9:11 AM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: SFTP Client for z/OS In [EMAIL PROTECTED] convergys.com, on 05/02/2007 at 07

Re: SFTP Client for z/OS

2007-05-02 Thread John Kington
IBM Mainframe Discussion List IBM-MAIN@BAMA.UA.EDU wrote on 05/02/2007 11:11:16 AM: In [EMAIL PROTECTED], on 05/02/2007 at 07:27 AM, John Kington [EMAIL PROTECTED] said: Is there a SFTP client that can run on z/OS 1.7 without needing Unix System Services? Is there a TCP/IP stack that

Re: SFTP Client for z/OS

2007-05-02 Thread John Kington
Ulrich, John, Seymour and Jack, Thanks for the replies. It looks like the least painful way is to copy the data from mvs dataset(s) to hfs file(s) so that the OpenSSH port client can read them. I was just hoping there were no walls between Unix System Services and z/OS. Regards, John

Re: SFTP Client for z/OS

2007-05-02 Thread John P Kalinich
John Kington wrote on IBM Mainframe Discussion List IBM-MAIN@BAMA.UA.EDU wrote on 05/02/2007 10:47:41 AM: I misstated. I meant reading an mvs dataset directly instead of having to copy the data to hfs file. I hate to duplicate data and effort. From my notes, one of these should work from Unix.

Re: SFTP Client for z/OS

2007-05-02 Thread Mark Jacobs
On Wednesday 02 May 2007 13:06, John P Kalinich wrote: John Kington wrote on IBM Mainframe Discussion List IBM-MAIN@BAMA.UA.EDU wrote on 05/02/2007 10:47:41 AM: I misstated. I meant reading an mvs dataset directly instead of having to copy the data to hfs file. I hate to duplicate data and

Re: SFTP Client for z/OS

2007-05-02 Thread Paul Gilmartin
In a recent note, McKown, John said: Subject: Re: SFTP Client for z/OS -Original Message- [mailto:[EMAIL PROTECTED] On Behalf Of John P Kalinich Sent: Wednesday, May 02, 2007 12:06 PM John Kington wrote on IBM Mainframe Discussion List IBM-MAIN@BAMA.UA.EDU wrote

Re: SFTP Client for z/OS

2007-05-02 Thread Paul Gilmartin
In a recent note, John Kington said: Date: Wed, 2 May 2007 11:49:04 -0400 Ulrich, John, Seymour and Jack, Thanks for the replies. It looks like the least painful way is to copy the data from mvs dataset(s) to hfs file(s) so that the OpenSSH port client can read them. I was just