Linux

對 Windows 機器進行 telnet 時連接被拒絕

  • April 4, 2013

我正在從 Linux 遠端登錄到 Windows 主機以列出 Check_mk_agent 數據。但它給了我以下輸出。

[root@myhost ~]# telnet winhost 6556
Trying xxx.xx.xx.x...
telnet: connect to address xxx.xx.xx.x: Connection refused
telnet: Unable to connect to remote host: Connection refused

我錯過了任何設置嗎?請幫忙。

127.0.0.1是 localhost 或 IPv4 環回地址。檢查您的主機文件/名稱伺服器。此外,在繼續重試之前,請確保您已在 Windows 機器上啟用 telnet 服務。還要注意您正在執行的服務以及在哪個埠上(埠 23 是執行 telnet 的埠)。另一個明顯的問題可能是 Windows 防火牆,您嘗試使用的 Windows 機器上的埠 6556(我猜這是您正在使用的自定義埠)被阻止。祝調試順利!:-)

這是一個相關/類似的問題:

https ://stackoverflow.com/questions/13393356/telnet-a-localhost

引用自:https://serverfault.com/questions/495361