Use configure replication server to establish default security settings for all outgoing logins (when Replication Server acts as a client) and incoming logins (when Replication Server acts as a server).
When Replication Server seeks to open a pathway to another server, it checks to see if security parameters have been set specifically for that pathway. If not, Replication Server uses the default security settings determined using configure replication server.
configure replication server { set security_mechanism to 'mechanism_name' | set security_parameter to { 'required' | 'not_required' }}
You can set all of the security configuration parameters affecting Replication Server. They are stored in the rs_config table in the RSSD. You must have sa permission to execute them.
To require all servers and users that connect to Replication Server to be authenticated by the security mechanism, set unified_login to 'required'.
configure replication server set unified_login to 'required'If unified_login is 'not_required', Replication Server allows servers and users to connect with either a credential or a password.
To require all data sent or received by Replication Server to be encrypted, set msg_encryption to 'required'.
configure replication server set msg_encryption to 'required'