|
The Domain Configuration Server (DCS) is a daemon process that runs on Sun servers that support remote Dynamic Reconfiguration (DR) clients. It is started by inetd(1M) when the first
DR request is received from a client connecting to the network service sun-dr. After the DCS accepts a DR request, it uses the libcfgadm(3LIB)
interface to execute the DR operation. After the operation is performed, the results are returned to the client.
The DCS listens on the network service labeled sun-dr. Its underlying protocol is TCP, and it is invoked as an inetd server using the TCP transport. The entries for the DCS in the /etc/inet/inetd.conf file are as follows:
| |
sun-dr stream tcp wait root /usr/lib/dcs dcs
sun-dr stream tcp6 wait root /usr/lib/dcs dcs
|
These entries enable remote DR operations. If you remove the entries, DR operations initiated from a remote host fail. There is no negative impact on the server. If you are using a Sun Fire high-end system and IPSec is configured on the sun-dr port (port 665), you
must also remove the policies in /etc/inet/ipsecinit.conf that reference the sun-dr port, then use the ipsecconf(1M) command with appropriate options
to flush the policies.
If you remove the sun-dr entries from /etc/inet/inetd.conf without deleting and flushing the corresponding entries from /etc/inet/ipsecinit.conf, any process that attempts to use the sun-dr port will hang. This is because
the IPSec policy is still in effect for that port.
|