您能否使 Solaris 7 unix 中的远程连接看起来像本地连接?
我正在台上运行硬件测试,该测试在 Solaris 7 SPARC 机器上运行 GUI 模拟。
我无法远程打开测试设备的电源,因为模拟代码会检查您是否在本地。我无法更改测试台代码,因为我无权访问它,即使我可以做到这一点,我也必须花费数十万美元重新认证它。重新认证不是一种选择。这只是一个麻烦,但会让我更有效率。
那么有没有办法让主人认为你是本地的,但实际上是远程的呢?
我正在使用 Windows 中的 telnet 和 x 服务器来远程访问该盒子。
我无法使用 SSH。
I am running a hardware test on stand that runs a GUI simulation in Solaris 7 SPARC machine.
I can not turn on power to the test equipment remotely because the simulation code checks to see if your local. I can not change the test stand code because I do not have access to it and even if I could do it I would have to spend 10's of thousands of dollars re-certifying it. Re-certifying is not an option. This is just a nuisance and would make me more productive.
So is there a way to trick the host in to thinking your local but your really remote?
I am using telnet and an x server from windows to access the box remotely.
I cannot use SSH.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据您的评论,听起来设备可能正在检查连接的源地址,以查看您是否被视为“本地”。如果您从
localhost
连接,则该连接被视为本地连接。解决方案是从本地主机建立连接!
Telnet 到服务器框。这将创建从 Windows 机器到服务器的连接。
从服务器远程登录回自身(
telnet localhost
)。这会创建一个看起来像是本地的新连接。设置在 Windows 机器上显示 X 内容所需的任何
DISPLAY
环境变量。Based on your comments, it sounds like the equipment might be checking the source address of a connection to see whether you are considered "local". If you're connecting from
localhost
, then the connection is considered local.The solution is to make a connection from localhost!
Telnet into the server box. This creates a connection from your Windows box to the server.
Telnet from the server back into itself (
telnet localhost
). This creates a new connection that looks like it's local.Set up whatever
DISPLAY
environment variable you need to display X stuff on your Windows box.