Putty 隧道:中继访问被拒绝
我将尝试连接我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要建立 SSH 隧道:
在 PuTTY 中,在配置屏幕上转到“连接”>“ SSH>隧道。将源端口设置为
2500
之类的值,实际上是localhost:2500
。将目标设置为mailserver.example.com:25
(SMTP 端口),无论您的邮件服务器的主机名是什么。通过 SSH 连接,您现在已经建立了到目标主机上端口 25 的隧道。
在本地计算机上,telnet 到本地端口,现在您正在与远程计算机上的端口 25 进行通信。
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 actuallylocalhost:2500
. Set Destination tomailserver.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.