登陆freebsd出现Using keyboard-interactive authentication
putty下用root登陆freebsd出现Using keyboard-interactive authentication的解决
  终端中运行vi /etc/ssh/sshd_config
  把里面的
  #PermitRootLogin no
  #PasswordAuthentication no
  改为
  PermitRootLogin yes
  PasswordAuthentication yes
  保存后重启ssh
  /etc/rc.d/sshd restart
  再登陆就不报错了

