通过 SSH.NET c# 库转发 x11
Posted
技术标签:
【中文标题】通过 SSH.NET c# 库转发 x11【英文标题】:forwarding x11 by SSH.NET c# library 【发布时间】:2021-06-07 13:19:10 【问题描述】:我在 TestStand 中使用 ssh.net 作为扩展,但我需要以某种方式显示 x11 转发。有可能吗? 我在 win 上使用 xming 服务器。机器。
谢谢
【问题讨论】:
【参考方案1】:我找到了解决办法:
SSHInstance = new SshClient(HostOrIP, Port, Username, Password);
SSHInstance.Connect();
streamSSH = SSHInstance.CreateShellStream(ShellID, 1, 0, 0, 0, 2000000);
ForwardedPortRemote forwardedPortRemote = new ForwardedPortRemote(6000 +X11ServerDisplay, HostOrIP, 6000 + X11LocalDisplay);
SSHInstance.AddForwardedPort(forwardedPortRemote);
forwardedPortRemote.Start();
【讨论】:
以上是关于通过 SSH.NET c# 库转发 x11的主要内容,如果未能解决你的问题,请参考以下文章
Xvfb新建虚拟X窗口,通过x11vnc启动VNC Server并转发Xvfb启动的虚拟窗口