iTP Secure WebServer System Administrator's Guide (iTPWebSvr 5.1+)
Configuration Directives
iTP Secure WebServer System Administrator’s Guide—522659-001
A-4
Accept
SCF TCP/IP Configuration
To associate multiple IP addresses with a single TCP/IP process, use the SCF ALTER
SUBNET command with the ADDALIAS parameter, as shown in the example below:
SCF> ALTER SUBNET $ZTC0.#SN1, ADDALIAS 120.1.1.12, &
SCF> SUBNETMASK %hFFFF0000
This command adds the IP address 120.1.1.12 to the subnet $ZTC0.#SN1. The
SUBNETMASK parameter is required. Each IP address must be added with a separate
ALTER SUBNET command.
You can use the DELETEALIAS parameter to delete IP addresses that have been added
to a subnet using the ADDALIAS parameter. as shown below:
SCF> ALTER SUBNET $ZTC0.#SN1, DELETEALIAS 120.1.1.12
Each IP address must be deleted with a separate ALTER SUBNET
command.
Default
There is no default. Specify at least one Accept or AcceptSecureTransport directive.
Examples
To accept HTTP connections on any address associated with the process $ZTC0, using
default port 80:
Accept -transport /G/ZTC0
To accept HTTP connections on any address associated with the process $ZTC0, using
another port:
Accept -transport /G/ZTC0 -port 8080
To accept HTTP connections on a specific address associated with the process $ZTC1,
using default port 80:
Accept -transport /G/ZTC1 -address 120.1.2.13
To accept HTTP connections on the IP address bound to the DNS name
www.goblet.com with the $ZTC2 process, using default port 80:
Accept -transport /G/ZTC2 -address www.goblet.com
To accept HTTP connections on any address associated with the process $ZTC0, a
specified address with the process $ZTC1, and the IP addresses bound to the DNS name
www.goblet.com with the process $ZTC2, using default port 80, you need three
Accept directives:
Accept -transport /G/ZTC0
Accept -transport /G/ZTC1 -address 120.1.2.13
Accept -transport /G/ZTC2 -address www.goblet.com