Setup SSH

Correctly setup the SSH (secure shell) on the STA server. This will speed up transfers of STA database backups to a remote host.

  1. Open the SSH configuration file with a text editor.
    # vi /etc/ssh/sshd_config
    
  2. Search for the AddressFamily and UseDNS entries. Modify them so they are not preceded with the comment character and their values are as follows:
    AddressFamily inet
    UseDNS no
    
  3. Save and exit the file.
  4. Restart the sshd daemon.
    # systemctl restart sshd