Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前编写了一个验证权限的脚本,当用户 ssh 进入机器时,我想将它作为 SSH 的强制命令运行。
但是,SSH 似乎要求您专门确定要为每个单独的 rsa-key 运行的强制命令。
有没有办法告诉 SSH 使用脚本作为所有用户的默认强制命令?
似乎 SSH 不允许您以一般方式执行此操作。您可能需要利用 Unix 登录过程的不同部分。您可以使您的脚本成为系统 shell 初始化的一部分,或者更好的是,让 PAM 使用类似pam_script的东西为您完成这项工作。