forked from MVS-sysgen/FTPD
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFTPD.conf
More file actions
50 lines (50 loc) · 1.88 KB
/
FTPD.conf
File metadata and controls
50 lines (50 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# FTPD Configuration file
# These settings are used by the FTP server
# Each setting may be overridden by using an equivalent PARM in the
# FTPDPARM PROC as desribed in the README.
# S FTPDPARM,SRVPORT=12345
# Or directly in JCL:
# //FTPD EXEC PGM=FTPDXCTL,
# // PARM='SRVPORT=21021'
#
# To use a custom configuration file use the argument PARMLIB=
# //FTPD EXEC PGM=FTPDXCTL,
# // PARM='PARMLIB=SYS2.PARMLIB(FTPDPARM)'
#
# The default parmlib location is SYS1.PARMLIB(FTPDPM00)
#
######################
# Settings #
######################
#
# These settings can be in any order, including the DASD
#
# SRVPORT - The port that the FTPD server will listen on.
SRVPORT=2121
# SRVIP - The IP address of the hercules host machine to listen on.
# The default is 'any' which is the equivalent of 'all' or
# '0.0.0.0'.
SRVIP=ANY
# PASVADR - IP address to return for passive mode, comma separated. The
# default is '127,0,0,1'.
PASVADR=127,0,0,1
# PASVPORTS - Port range for passive ports. Default is all ephmeral port
# i.e. 1025-65535
#PASVPORTS=22000-22200
# INSECURE - By default the FTP server will only accept connections on
# 127.0.0.1, set INSECURE=1 to allow connections from any IP
#INSECURE=1
# FAST - Uncomment this line to enable Library Optimisation Extensions
#FAST=TRUE
# The AUTHUSER can stop ftp daemon from a client session using
# the "quote term" or 'quote terminate' FTP client command.
AUTHUSER=IBMUSER
# The FTP server will scan and read the VTOC of the following
# DASD. The format is 'SERIAL,UNIT COMMENT'. You can copy the
# the devices from SYS1.PARMLIB(VATLST00) and edit them to match
# the entries below.
MVSRES,3350 SYSTEM RESIDENCE (PRIVATE)
MVS000,3350 SYSTEM DATASETS (PRIVATE)
PUB000,3380 PUBLIC DATASETS (PRIVATE)
PUB001,3390 PUBLIC DATASETS (PRIVATE)
SYSCPK,3350 COMPILER/TOOLS (PRIVATE)