Check which ports are open to the outside world. Helps make sure that your firewall rules are working as intended.
One of a set of tools we are providing to everyone as a way of saying thank you for being a part of the community.
1) If you want them to end up in a library simply change the user profile
CHGUSRPRF USRPRF(MYFTPUSER) CURLIB(MYFTPLIB)
This will show
"MYFTPLIB" is current library.
2) If you want them to end up on the IFS you will need to change some configurations for the FTP server and the user.
Change the ftp server to use path and home directory
CHGFTPA NAMEFMT(*PATH) CURDIR(*HOMEDIR)
Dont forget to end then start the FTP server after making the above change.
ENDTCPSVR SERVER(*FTP)
STRTCPSVR SERVER(*FTP)
Then change the user profile you are using to connect
CHGUSRPRF USRPRF(MYFTPUSER) HOMEDIR('/HOME/MYFTPUSER')
When the user connects they will be in whatever home directory you assign, just make sure it exists.