通过创建隧道以访问端口443的https。

3
我有一台连接到Linux服务器192.9.100.10的Windows机器。Linux服务器可以连接IBM刀片中心管理GUI - 192.9.100.200。但是,我无法从我的Windows机器访问192.9.100.200。我的目标是作为https://192.9.100.200:443 访问IBM管理中心,因此我执行以下步骤:
  • I use the PuTTY and create a tunnel from the Linux server to the IBM blade center management VIA port 443

  • In the forward port in the PuTTY I set that putty

     L1000               192.9.100.200:443
    
  • After this setting I verified the port 443 as the following from the cmd window ( on the WIN machine )

     telnet 192.9.100.200 443
    

我成功建立了telnet连接。

  • 但是,当我尝试通过http访问IBM管理中心时,如https://192.9.100.200:443,我没有得到任何连接(白屏)。

有人能帮我了解这里的问题吗?

如何进行调试以及如何解决这个问题?


1
你的问题更适合在superuser.com上提问,而不是SO。 - lispmachine
2个回答

2

L1000 192.9.100.200:443

这意味着您在Windows计算机上创建了一个从1000端口的隧道。您需要通过https://127.0.0.1:1000/连接到该计算机,才能使用此隧道。

如果无法正常工作,您可以尝试将“自动”模式更改为“IPv4”。


嗨,为什么使用HTTP而不是HTTPS? - maihabunash
当我将其设置为https时,仍然没有连接?可能还有其他问题吗? - maihabunash

0

有时候您的Windows防火墙也会出现一些问题,尝试关闭您的Windows机器防火墙,然后再次浏览。

因为有时候Windows防火墙会阻止入站请求。

我还建议您查看监听443端口的应用程序access.logerror.log文件,这些文件将帮助您找出问题所在。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接