14

次のようなコードを実行して、サーバーに SSH 接続していました。

ssh serverUser@serverIP "./runServer" &

クライアントで VM を起動し、それに startX を記述したときのスクリプトの次の行で、次のように述べています。X Error of failed request: Bad Window.

このエラーを調べた後、「Y」転送を使用して sshing することでこれを解決しました。

ssh -Y serverUser@serverIP "./runServer" &

X および Y 転送が同じ概念であるかどうかを理解できません。また、そのような X、YZ 転送はいくつ可能ですか?

ありがとう。

4

1 に答える 1

20

マニュアルページから:

 -X      Enables X11 forwarding.  This can also be specified on a per-host
         basis in a configuration file.

         X11 forwarding should be enabled with caution.  Users with the
         ability to bypass file permissions on the remote host (for the
         user's X authorization database) can access the local X11 display
         through the forwarded connection.  An attacker may then be able
         to perform activities such as keystroke monitoring.

         For this reason, X11 forwarding is subjected to X11 SECURITY
         extension restrictions by default.  Please refer to the ssh -Y
         option and the ForwardX11Trusted directive in ssh_config(5) for
         more information.

 -Y      Enables trusted X11 forwarding.  Trusted X11 forwardings are not
         subjected to the X11 SECURITY extension controls.

参照: https://askubuntu.com/questions/35512/difference-between-ssh-y-and-ssh-x

于 2012-11-17T00:36:18.713 に答える