公開鍵と秘密鍵を使ったSSH接続。
私はよく使いませんが、とあるエラーが気になったので環境を用意してみた。
気になったエラーはこちら↓
Jul 28 20:53:31 **host** sshd[13921]: Authentication tried for **user** with correct key but not from a permitted host (host=***逆引き***.ad.jp, ip=***.***.***.***). Jul 28 20:53:31 **host** sshd[13922]: Connection closed by ***.***.***.***
原因は/home/username/.ssh/authorized_keys
またの名を$HOME/.ssh/authorized_keys
はたまた~/.ssh/authorized_keys
The reason was the file called “authorized_keys” exists in /home/username/.shh/
you can get it in $HOME/.ssh/ and ~/.ssh/ also. they are all same.
鍵を設定する際に
from=”接続元” ssh-rsa ssh-rsa AAAAB3Nza・・・・・・・・
と設定が出来るんです。
when you set the key in that file authorized_keys, it can be set as below
from=”source” ssh-rsa ssh-rsa AAAAB3Nza….
trippyboy.comから接続をする場合
from=””
from=”!.com” または from=”!trippyboy.com”
from=”other.domain”
と設定するとエラーになって接続できない。
when you are connecting from trippyboy.com and if the file authorized_keys has any one of these writen below, you wont make it.
from="" from="!.com" from="!trippyboy.com" from="other.domain"
一度確かめてみよう。
コメント