gpt4 book ai didi

c - 发送数据包时如何设置iptables标记?

转载 作者:太空宇宙 更新时间:2023-11-04 10:04:21 26 4
gpt4 key购买 nike

Linux 的 iptable 和 iproute 允许我们标记数据包并稍后匹配标记(fwmark),从而在配置路由和防火墙方面提供了极大的灵 active 。

有没有办法在通过普通套接字接口(interface)或通过特定的 linux 系统调用从 C 程序发送数据包时设置这些标记?

最佳答案

我在 socket(7) 手册页中找到了 SO_MARK 套接字选项:

   SO_MARK (since Linux 2.6.25)
          Set the mark for each packet sent through this socket (similar
to the netfilter MARK target but socket-based). Changing the
mark can be used for mark-based routing without netfilter or
for packet filtering. Setting this option requires the
CAP_NET_ADMIN capability.

正如我最初要求的那样,它不是按数据包计算的,适合我的目的。您可以使用 setsockopt() 进行设置:

int fwmark;
//fwmark = <some value>;

if (setsockopt(sockfd, SOL_SOCKET, SO_MARK, &fwmark, sizeof fwmark) == -1)
perror("failed setting mark for socket packets");

关于c - 发送数据包时如何设置iptables标记?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53670895/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com