ssh 到完整的 schroot 环境 (debian)

ssh 到完整的 schroot 环境 (debian)

如何使用而不是作为用户通过 SSH 进入 schroot 环境?ssh [email protected]schroot -c testsshuser

我读过一系列关于创建被监禁的 chroot 然后设置 SSH 以将用户限制在监狱中的网络帖子。我正在尝试按照以下链接设置 schroot 环境:https://wiki.debian.org/Schroot

答案1

使用施鲁特sshd,你必须改变sshd_配置

Match User sshuser
   # %u is replaced by the username, %h is the full home path
   #ChrootDirectory /srv/chroot/test/%u
   #ChrootDirectory %h
   ForceCommand schroot -c test -u sshuser

相关内容