BroadcastListener protocol option [BLISTENER]

Controls broadcast listening for the specified port.

Usage

TCP/IP (server side)

Values

YES, NO

Default

YES

Remarks

This option allows you to turn broadcast listening OFF for this port.

Using -sb 0 is the same as specifying BroadcastListener=NO on TCP/IP.

If broadcast listening is off, then the database server does not respond to UDP broadcasts. This means that clients must use either the HOST= TCP protocol option to specify the hostname of the database server, or register the database server with LDAP and use LDAP on the clients to find the database server. This also means that the dblocate utility does not include the database server in its output.

See also
Example

Start a database server that accepts TCP/IP connections, and requires that TCP/IP connections use the Host protocol option:

dbsrv11 -x tcpip(BroadcastListener=NO) ...

The following is a fragment of a client connection string to connect to the database server:

...LINKS=tcpip;HOST=myserver;...