2014年1月21日 星期二

SSHD 特定群組帳號,使用 chroot 限制存取目錄

說明:
test 群組帳號,使用 chroot 限制存取目錄

修改 /etc/ssh/sshd_config 內容
加入
Match group test
         ChrootDirectory /home/%u

增加帳號及設定相關環境
groupadd test
useradd test2 -g test
chmod 755 test2
chown root.root test2
cd /home/test2
cp -rpi /lib64 ./
cp -rpi /lib ./
cp -rpi /bin ./
mkdir home
chown test2 home

沒有留言: