View previous topic :: View next topic
|
Author |
Message |
vasanthz
Global Moderator
Joined: 28 Aug 2007 Posts: 1745 Location: Tirupur, India
|
|
|
|
I have a need to configure the proxy address used by "user FTP".
(I think this is a standard software supplied by IBM)
Code: |
IBM FTP CS V1R9
Connect to ? |
The FTP should use the the proxy address <sip-xxxxx.ukxxx> and port 8080.
I tried the interactive FTP and the help command had a proxy option in it, but could not configure it there.
Code: |
IBM FTP CS V1R9
Connect to ?
Command:
help
User-FTP understands these commands:
! ? acct append ascii auth big5
binary block ccc cd cdup clear close
compress cprotect debug delete delimit dir dump
ebcdic euckanji feature file get glob hangeul
help ibmkanji jis78kj jis83kj ksc5601 language lcd
lmkdir locsite locstat lpwd ls mdelete mget
mkdir mode mput noop open pass private
prompt protect proxy put pwd quit quote
record rename restart rmdir safe schinese sendport
sendsite site sjiskanji srestart status stream structure
sunique system tchinese tso type ucs2 user
verbose
Specify a command by any unambiguous prefix
Specify a local data set by qualifier.qualifier... with optional
member as (member). Enclose fully qualified names in quotes
For information about a particular command, say 'HELP command'
Command: |
Could you please let me know how to configure the proxy address in batch ftp and interactive FTP. |
|
Back to top |
|
|
Robert Sample
Global Moderator
Joined: 06 Jun 2008 Posts: 8700 Location: Dubuque, Iowa, USA
|
|
|
|
Go to www.s390.ibm.com and find the Communications Server bookshelf. Read up on the IP User's Guide commands. Based on what I see there,
Code: |
PROXY OPEN sip-xxxxx.ukxxx 8080 |
will do what you want. You may need to continue using the PROXY commands, however -- read up in the manual for more details. |
|
Back to top |
|
|
vasanthz
Global Moderator
Joined: 28 Aug 2007 Posts: 1745 Location: Tirupur, India
|
|
|
|
Thanks Robert... I try it out |
|
Back to top |
|
|
vasanthz
Global Moderator
Joined: 28 Aug 2007 Posts: 1745 Location: Tirupur, India
|
|
|
|
Hi Robert,
Thanks for the link,
Got it working by giving the proxy in the parm parameter
//XK89COPY JOB ,'COPY TO DISK',CLASS=4,MSGCLASS=P,NOTIFY=&SYSUID,
// USER=XK89
//FTP EXEC PGM=FTP,
// PARM='sip-xxxxxx.ukxxx (EXIT'
//SYSMDUMP DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//INPUT DD *
denver-zone.150m.com@xxx.xxx.com
<password>
put 'XK89.HTML' index.html
quit
/* |
|
Back to top |
|
|
Robert Sample
Global Moderator
Joined: 06 Jun 2008 Posts: 8700 Location: Dubuque, Iowa, USA
|
|
|
|
Glad to hear you've got it working! |
|
Back to top |
|
|
|