SSH на FreeBSD 8.1 sshd не работает

Можно также использовать CIM для контроля ESX и ESXI. См.: http://blogs.vmware.com/esxi/2010/04/hardware-health-monitoring-via-cim.html

1
задан 13 April 2017 в 15:37
2 ответа
  1. Undo whatever you did to inetd.conf.
  2. Edit /etc/ssh/sshd_config, add PermitRootLogin yes
  3. run /etc/rc.d/sshd start

Telnet doesn't work on ssh. You have to connect via ssh in PuTTY.

If you have a firewall up, you'll need to punch a hole.

Security Note: #2 is a really terrible idea. You should either:

  • add your user to the wheel group so they can su to root (pw groupmod -n wheel -m your-user)
  • install sudo (easiest is pkg_add -r sudo).
4
ответ дан 3 December 2019 в 17:50

Включить SSH

vi /etc/rc.conf
sshd_enable="YES"

Запустить службу SSH

/etc/rc.d/sshd start

Проверить статус

/etc/rc.d/sshd onestatus
0
ответ дан 3 December 2019 в 17:50

Теги

Похожие вопросы