数据包过滤和转发

发布于 2024-12-29 09:15:19 字数 153 浏览 2 评论 0原文

我们可以过滤所有从 *:Port_B 到达 Host1:Port_A 的数据包并将它们转发到 Host1:Port_C 吗?

我想将来自我的机器端口 22 上的任何主机的端口 9875 的所有数据包转发到我的机器的端口 5432。与此相对应的 iptable 规则应该是什么?

Can we filter all the packets coming to Host1:Port_A from *:Port_B and forward them to say Host1:Port_C.

I want to forward all the packets coming from port 9875 of any host at port 22 of my machine to port 5432 of my machine. What should be iptable rules corresponding to this ?

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

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

发布评论

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

评论(1

柏拉图鍀咏恒 2025-01-05 09:15:19

试试这个:

iptables -t nat -A PREROUTING -p tcp --source-port 9876 --destination-port 22 -j DNAT --to-destination 192.168.1.1:5432

不要忘记更改目的地地址:)

Try this one:

iptables -t nat -A PREROUTING -p tcp --source-port 9876 --destination-port 22 -j DNAT --to-destination 192.168.1.1:5432

Don't forget to change address in destination :)

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