I have this content in hosts.deny
(with a new line at the end):
#
# hosts.deny This file describes the names of the hosts which are
# *not* allowed to use the local INET services, as decided
# by the '/usr/sbin/tcpd' server.
#
# The portmap line is redundant, but it is left to remind you that
# the new secure portmap uses hosts.deny and hosts.allow. In particular
# you should know that NFS uses portmap!
sshd : ALL
And this in hosts.allow
:
#
# hosts.allow This file describes the names of the hosts which are
# allowed to use the local INET services, as decided
# by the '/usr/sbin/tcpd' server.
#
sshd: our.ip.add.ress: allow
Then, we executed this piece of code to restart SSH:
/etc/init.d/sshd restart
And again, here is a new line at the end. But, we can still reach the SSH service from another server and attempt to login. What are we doing wrong?