iptables 端口重定向

发布于 2024-08-16 13:27:37 字数 191 浏览 7 评论 0原文

我有以下问题:

在 Linux 计算机上运行的 CRM 系统通过 sendmail 发送电子邮件。

我想使用 iptables 将目标端口从 25 更改为 587,但不进行修改 sendmail(由于 crm 配置而无法实现)。

我尝试使用 iptables,但我将输出链上的数据包重定向到端口 587 的尝试未成功。

I have following problem:

CRM system running on Linux computer is sending emails via sendmail.

I would like to change destination port from 25 to 587 using iptables but without modifing
sendmail (not possible due to crm configuration).

I tried to use iptables but mine tries of redirecting packet on output chain to port 587 were unsuccessfull.

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

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

发布评论

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

评论(1

暗喜 2024-08-23 13:27:37

您说您不想修改 sendmail,所以我假设 sendmail 必须在端口 25 上运行,但您希望客户端能够通过端口 587 连接到它。

这个咒语应该为您做到这一点:

$ iptables -t nat -A PREROUTING -p tcp --dport 587 -j REDIRECT --to-port 25

You said you don't want to modify sendmail, so I'm assuming that sendmail has to run on port 25, but you want clients to be able to connect to it through port 587.

This incantation should do that for you:

$ iptables -t nat -A PREROUTING -p tcp --dport 587 -j REDIRECT --to-port 25
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文