SSH 中的 X11 转发

SSH 中的 X11 转发

如何使用 SSH 从远程服务器运行 X11 GUI 应用程序?

例如:

  • 我的第一个桌面 192.168.1.1
  • 我的第二个桌面IP 192.168.1.12

我正在从第一个桌面 ssh 到第二个桌面,并且想从第二个桌面运行 GUI 应用程序并将 X11 重定向到第一个桌面。

答案1

尝试以下命令创建 ssh 连接:

ssh -X [email protected]

只需用第二个桌面登录名替换 remote_login

ssh手册页:

-X 启用 X11 转发。也可以在配置文件中针对每个主机指定此功能。

 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.

答案2

好的,我找到了一种方法:

ssh -X [email protected]

然后当我登录时,我可以轻松启动我需要的任何 GUI 应用程序。我尝试了 Firefox,是的,我可以从第二台计算机上使用 Firefox。这真的很好。

相关内容