Information
The IgnoreRhosts parameter specifies thatrhosts andshosts files will not be used in RhostsRSAAuthentication or HostbasedAuthentication
Setting this parameter forces users to enter a password or provide an SSH key when authenticating with SSH, rather than trusting the remote host.
Solution
Edit the /etc/ssh/sshd_config file to set the parameter above any Match set entries as follows:
IgnoreRhosts yes
Re-cycle the sshd daemon to pick up the configuration changes:
stopsrc -s sshd
startsrc -s sshd
Note: First occurrence of a option takes precedence, Match set statements withstanding.