仮想マシンへsshでログインします。
※これ以降の操作はroot権限にて実行してください。
sshログイン方法については、エンジニアセットをご利用の場合はこちら、その他のパッケージをご利用の場合はこちらをご参照ください。
[root@vps]# vi /etc/hosts.allow
※hosts.allowは、hosts.denyの設定内容により優先されます。
# 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.
#
>ALL: 許可したいホスト名を設定
[root@vps]# vi /etc/hosts.deny
※hosts.allowは、hosts.denyの設定内容により優先されます。
# 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!
ALL: ALL
以上でSSHでのサーバーアクセスを許可するホストと拒否するホストの設定が完了となります。
※hosts.allowにて許可されるホストを設定せず、hosts.denyのみALL:ALLの設定され、ログアウトされますとサーバーへアクセスが出来なくなりますので、ご注意ください