Помогите плзз у меня Solaris 5.9 как мне сделать так, чтоб соединение по пратаколу SSH было исключительно с определенным IP адресом и пользователем. Я прописывал ssh_config след строки :
AllowUsers user1 user2 # По идее эт должно было закрыть всем кроме user1 2
HostName 82.112.43.6 # По идее слушать тока этот хост
Далее pkill -HUP inetd не дал ни какого результата
/etc/init.d/sshd stop ; /etc/init.d/sshd start так же не заставило его запретить вход под др IP и именем :(
Кто шарит помогите разобраться в этом ....
А файрволом закрыть?
>А файрволом закрыть?
Думаю что не выйдет ... нужно конкретно на SSH
man sshd_config
AllowUsers
This keyword can be followed by a list of user name patterns, separated by spaces. If specified, login is
allowed only for user names that match one of the patterns. '*' and '?' can be used as wildcards in the pat-
terns. Only user names are valid; a numerical user ID is not recognized. By default, login is allowed for all
users. If the pattern takes the form USER@HOST then USER and HOST are separately checked, restricting logins
to particular users from particular hosts.Следовательно в sshd_config прописать
AllowUsers user1@host1 user2@host2
>man sshd_config
>AllowUsers
>
> This keyword can be followed by a list of user
>name patterns, separated by spaces. If specified, login is
>
> allowed only for user names that match one of the
>patterns. '*' and '?' can be used as wildcards in
>the pat-
>
> terns. Only user names are valid; a numerical user
>ID is not recognized. By default, login is allowed for
>all
>
> users. If the pattern takes the form USER@HOST then
>USER and HOST are separately checked, restricting logins
>
> to particular users from particular hosts.
>
>Следовательно в sshd_config прописать
>AllowUsers user1@host1 user2@host2Наверное ты имел ввиду не sshd_config ,а ssh_config ???
Один фиг что в том , что в другом файле не работает :(