下面这个链接是比较老的一个讨论,是关于配置选项:useprivilegeseparation;
https://community.hpe.com/t5/operating-system-hp-ux/ssh-child-process-hanging-and-cannot-be-killed/td-p/5042853
从目前openssh的说明看,这个将要被废弃的一个配置,不建议再使用。而且从man sshd_config帮助里也看不到这个配置。在代码里,这个选项,设置与不设置都是enable的。
{ “useprivilegeseparation”, sDeprecated, SSHCFG_GLOBAL},
从代码看,这个会牵扯到一个sshd用户的使用,将sshd线程转换位sshd用户。
/** unprivileged user when UsePrivilegeSeparation=yes;* sshd will change its privileges to this user and its* primary group.*/
#ifndef SSH_PRIVSEP_USER
#define