Putty 隧道:中继访问被拒绝

发布于 2024-10-25 22:02:27 字数 93 浏览 1 评论 0原文

我将尝试连接我在 Putty 上本地登录 (127.0.0.1) 的连接。然后我尝试通过隧道连接到远程服务器。

我收到“中继访问被拒绝”错误。我该如何解决?

I will try to connect I logged on locally (127.0.0.1) on Putty. Then I try to connect through the tunnel to the remote server.

I get a "Relay access denied" error. How can I solve it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

来世叙缘 2024-11-01 22:02:27

要建立 SSH 隧道:

在 PuTTY 中,在配置屏幕上转到“连接”>“ SSH>隧道。将源端口设置为 2500 之类的值,实际上是 localhost:2500。将目标设置为 mailserver.example.com:25(SMTP 端口),无论您的邮件服务器的主机名是什么。

通过 SSH 连接,您现在已经建立了到目标主机上端口 25 的隧道。

在本地计算机上,telnet 到本地端口,现在您正在与远程计算机上的端口 25 进行通信。

telnet localhost 2500

To get an SSH tunnel established:

In PuTTY, on the configuration screen go to Connection > SSH > Tunnels. Set the source port to something like 2500, which is actually localhost:2500. Set Destination to mailserver.example.com:25 (SMTP port) for whatever is the hostname of your mail server.

Connect over SSH, and you have now established a tunnel to port 25 on the destination host.

On your local machine, telnet to your local port, and you are now talking to port 25 on the remote machine.

telnet localhost 2500
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文