通过 SSH.NET c# 库转发 x11
forwarding x11 by SSH.NET c# library
我在 TestStand 中使用 ssh.net 作为扩展,但我需要以某种方式显示 x11 转发。有可能吗?
我在我的胜利中使用 xming 服务器。机.
谢谢
我找到了解决方案:
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();
我在 TestStand 中使用 ssh.net 作为扩展,但我需要以某种方式显示 x11 转发。有可能吗? 我在我的胜利中使用 xming 服务器。机.
谢谢
我找到了解决方案:
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();