TCP/IP (Parallel Library) Configuration and Management Manual
Configuring Parallel Library TCP/IP for Complex and
Heavy-Use Environments
HP NonStop TCP/IP (Parallel Library) Configuration and Management Manual—522271-006
3-17
Configuration Example for the Monolithic Listening
Model
The TCPIPUP3 File
The following TACL command file starts the processes, adds and starts subsystem
objects through SCF, and sets appropriate parameters. To add comments, use the
word “comment” or a double equal sign (==). Some lines are discussed separately
after the example.
Deleting the DEFINE before setting the new DEFINE for round-robin filtering:
DELETE DEFINE =PTCPIP^FILTER^KEY
ensures the new define does not conflict with any existing defines in this TACL session
for the filter key.
The configuration for round-robin filtering:
ADD DEFINE =PTCPIP^FILTER^KEY, class map, file A234567
sets up all subsequent processes configured in this TACL session to use round-robin
filtering. A234567 is an arbitrary file name that you select; it is equivalent to setting a
password for use of the port.
The lines starting the TELSERV processes, beginning with
TELSERV/TERM $ZHOME, OUT $ZHOME, &
NAME $ZTN0, CPU 0, NOWAIT, PRI 170/1
Example 3-4. TCPIPUP3 for the TELSERV Process
comment ==== TCPIPUP3 =========TCPIPUP3 ========
comment TACL command file to bring up Parallel Library TCP/IP
comment subsystem
comment Use DNS for name resolution; (no host file DEFINE)
DELETE DEFINE =TCPIP^HOST^FILE
comment ADD and START SUBNETS
SCF/IN $SYSTEM.TCPIP.SCFSBNT/
comment Define round-robin filtering for the TELSERV process
comment (See Round-Robin Filtering on page 2-4)
DELETE DEFINE =PTCPIP^FILTER^KEY
ADD DEFINE =PTCPIP^FILTER^KEY, class map, file A234567
comment Initialize TELSERV processes
comment Define the TCPSAM process for TELSERV to use
PARAM TCPIP^PROCESS^NAME $ZSAM0
comment Start the TELSERV processes
TELSERV/TERM $ZHOME, OUT $ZHOME, &
NAME $ZTN0, CPU 0, NOWAIT, PRI 170/1
TELSERV/TERM $ZHOME, OUT $ZHOME, &
NAME $ZTN1, CPU 2, NOWAIT, PRI 170/3
TELSERV/TERM $ZHOME, OUT $ZHOME, &
NAME $ZTN2, CPU 4, NOWAIT, PRI 170/5
TELSERV/TERM $ZHOME, OUT $ZHOME, &
NAME $ZTN3, CPU 6, NOWAIT, PRI 170/7
comment ====== END OF TCPIPUP3 ==== END OF TCPIPUP3 ==