Skip to content

Latest commit

 

History

History
30 lines (30 loc) · 761 Bytes

ssh.md

File metadata and controls

30 lines (30 loc) · 761 Bytes

Организация удаленного подключения по ssh

Установка пакета openssh

#  pacman -S openssh

Запуск демона openssh

#  systemctl start sshd.service

Проверка состояния демона openssh

#  systemctl status sshd.service

Настройка автозапуска демона openssh

#  systemctl enable sshd.service

Доступ из под Root'a

Теперь открываем настройки SSH:

# nano /etc/ssh/sshd_config

Теперь открываем настройки SSH:

# PermitRootLogin yes

Перезапускаем демона openssh

#  systemctl restart sshd.service