I want to send a sequential data set from Z/OS V1R12 to a FTP server on Linux.
My "FTP JCL" is here:
//GETVM EXEC PGM=FTP,
// PARM='-D 123.456.789.012 (EXIT'
//OUTPUT DD SYSOUT=T
//SYSPRINT DD SYSOUT=T
//INPUT DD *
SEGROUP
SEGROUP
CD TEST
LOCSITE CYL PRI=1 SEC=1 LRECL=1000 RECFM=FBA
ASCII
QUOTE PASV
PUT 'SE.SMF.NETSPDDL'
QUIT
But, JCL does not work and it returns error "425 Failed to establish connection".
What that means and how I can prevent the error?
The FTP server is up because I can put files on it via my windows pc.
Mehrdad
Edited by moderator:
- code tags
- lower case
- data sets not files
- periods (.) not exclamation marks (!)