1

リモートホスト (proxy.example.com など) にユーザーを作成したいのですが、プロキシのみの ssh アクセス用の git-shell のような制限付きログインシェルはありますか?

4

1 に答える 1

1

自分で書いてください!restricted-shell.c:

#include <stdio.h>

int main() {
  printf("You are now connected to the proxy. Press enter to exit.\n");
  scanf("*c");
  exit(0);
}
于 2012-11-12T19:28:12.190 に答える