Name
NAMES.ADDRESSES
Synopsis
NAMES.ADDRESSES = {(ADDRESS = address_data)
|(ADDRESS_LIST = (ADDRESS = address_data)
[(ADDRESS = address_data)...])}
address_data (TCP/IP) :=
(PROTOCOL=TCP)(HOST = {hostname | ip_address})(PORT = port_number)
address_data (IPC) :=
(PROTOCOL = IPC)(KEY = key_name)
address_data (SPX) :=
(PROTOCOL = SPX)(SERVICE = spx_service_name)
address_data (Named Pipes) :=
(PROTOCOL = NMP)(SERVER = server_name)(PIPE = pipe_name)Defines the network address or addresses that the Names server monitors. Clients use these addresses to contact the Names server and request name resolution. If you plan to have the Names server monitor only one address, then you can get by with just an ADDRESS entry. For multiple addresses, you must use an ADDRESS_LIST. The default value is:
NAMES.ADDRESSES = (ADDRESS = (PROTOCOL = TCP)(HOST = oranamesrvr0)(PORT = 1575))
Parameters
- address_data
A protocol-specific address that you want the Names server to monitor.
- host_name
The TCP/IP hostname of the machine on which the Names server is running.
- ip_address
The TCP/IP address of the machine on which the Names server is running.
- port_number
The TCP/IP port number that the Names server is to monitor.
- key_name
The Names server’s IPC key name.
- spx_service_name
The Names server’s SPX service name.
- server_name
The name of the server on which the Names server is running.
- pipe_name
The name of the pipe over which you want the Names server to communicate.