如何将数据包重新注入到Iptables中?

发布于 2024-10-05 04:03:20 字数 253 浏览 1 评论 0原文

我在数据包内有一个数据包,又称为隧道。所以它的形式是[IP HEADER 1][IP HEADER 2][PAYLOAD]。读取第一个标头(由库完成)后,我将在 iptables 的 INPUT 链上获取带有 [ IP HEADER 2] 的数据包。我想将数据包重新注入到 iptables 的开头,即 PREROUTING 链中。最终目标是将数据包转发到远程主机(这就是为什么我希望数据包位于 PREROUTING 链中)。我读过一些关于 libipq 的内容,但我不太确定这是最好的方法。

I have a packet inside a packet a.k.a tunneling. So it's of the form [IP HEADER 1][IP HEADER 2][PAYLOAD]. After reading the first header(done by a library) I will get the packet with [ IP HEADER 2] at the INPUT chain of the iptables. I want to re-inject the packet to the starting of the iptables i.e. in the PREROUTING chain. Ultimate aim is to forward the packet to a remote host (that's why I want the packet to be in the PREROUTING chain). I have read something about the libipq but I am not really sure that it is the best way to do it.

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

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

发布评论

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

评论(1

疯到世界奔溃 2024-10-12 04:03:20

尽管可能有一些附加目标可以做到这一点。我的直觉是,您可以使用 MARK 目标来标记此数据包,然后使用 iproute2 设置您想要它去的地方的路由。

类似于:

iptables -t mangle -A INPUT -s 192.168.1.2 -j MARK --set-mark 0xAA

ip Rule add fwmark 0xAA table Reroute_Tunnel

然后由您添加并决定 Reroute_Tunnel 表的作用

Although there may be some add-on target to do this. My gut feeling is that you would use the MARK target to mark this packet then use iproute2 to set up the routing of where you want it to go.

Something like:

iptables -t mangle -A INPUT -s 192.168.1.2 -j MARK --set-mark 0xAA

ip rule add fwmark 0xAA table Reroute_Tunnel

Then it's up to you to add and decide what the Reroute_Tunnel table does

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