1. 程式人生 > >linux下清空連線跟蹤表的方法

linux下清空連線跟蹤表的方法

做linux下iptables規則,特別是nat規則時,有時候增加的規則並沒有立刻生效,其中原因多半是配置的規則已經連線跟蹤表

裡了,這時候需要手動清空一下連線表,linux提供的連線表操作庫比較複雜,我寫了一個簡單的清空跟蹤表的方法。

#include <stdio.h>
#include <string.h>
#include <sys/socket.h>
#include <linux/netlink.h>
#include <linux/netfilter/nfnetlink.h>
#include <linux/netfilter/nfnetlink_conntrack.h>

int main()
{
	char buf[64]={0};
	int fd;
	struct sockaddr_nl sa;
	struct nlmsghdr *nh=(struct nlmsghdr *)buf;
	
	fd = socket(AF_NETLINK, SOCK_RAW, NETLINK_NETFILTER);
	nh->nlmsg_len =  NLMSG_SPACE(sizeof(struct nfgenmsg));
	struct iovec iov = { nh, nh->nlmsg_len };
	struct msghdr msg = { &sa, sizeof(sa), &iov, 1, NULL, 0, 0 };
	memset(&sa, 0, sizeof(sa));
	sa.nl_family = AF_NETLINK;
	nh->nlmsg_type = (NFNL_SUBSYS_CTNETLINK<<8 |IPCTNL_MSG_CT_DELETE);
	nh->nlmsg_flags |= NLM_F_REQUEST;

	sendmsg(fd, &msg, 0);

}