访问并更改 TCP 标头上的保留位

发布于 2024-10-01 12:46:32 字数 204 浏览 3 评论 0原文

在 rfc793,section-3.1 中,TCP header 标头有 6 个保留位,在 rfc3168。 我如何在 Linux 上或通过程序访问和更改这些位,甚至如何为此目标编写程序?

in rfc793, section-3.1, TCP header header have 6 reserved bits that decreased to 4 reserved bits on rfc3168.
How can i access and change these bits on Linux or with a program or even how can i write a program for this goal?

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

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

发布评论

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

评论(1

筱果果 2024-10-08 12:46:32

标准套接字 API 没有为应用程序提供直接更改 TCP 标头中的各个标志的方法。

我可以想到几种可能的方法来解决此问题:

  • 编写一个 TUN/TAP 网络设备,在将通过它的数据包转发到真实网络设备之前,对通过它的数据包执行所需的标头修改。内核配置为通过 TUN/TAP 设备发送所有传出数据包。

  • 使用 PF_PACKET 套接字从用户空间构造并发送完全自定义的 TCP 数据包。不过,您将负责自己实现所有 IP 和 TCP,包括 IP 片段重组等。我不建议这样做,除非您只想发送一些数据包而不是建立完整的 TCP 连接。

  • 创建一个实现 TCP 标志修改目标的 netfilter (iptables) 模块。您可以根据现有的 ipt_ECN.c 模块(只有 146 行)轻松完成此操作。

The standard sockets API does not provide a way for applications to directly change the individual flags in the TCP Header.

I can think of a couple of possible ways to approach this:

  • Write a TUN/TAP network device that performs the required header modifications on the packets that pass through it, before forwarding them on to the real network device. The kernel is configured to send all outgoing packets though your TUN/TAP device.

  • Use a PF_PACKET socket to construct and send completely custom TCP packets from userspace. You'll be responsible for implementing all of IP and TCP yourself, though, including things like IP fragment reassembly. I don't recommend this, unless you just want to fire off a few packets rather than establish a full TCP connection.

  • Create a netfilter (iptables) module that implements a TCP-flag-modification target. You could do this quite easily based on the existing ipt_ECN.c module, which is only 146 lines.

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