全部博文(230)
标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
VMware Server 1.0.x 的序列号 | 4264 | 0 | 3 | 2010-09-23 | |
Firefox 3.6 上无法使用 vmware-server plugin 的解决办法 | 3666 | 0 | 0 | 2010-09-22 | |
SOFTRAID 的一些实验笔记 | 4117 | 0 | 0 | 2010-09-21 | |
让 terminal 的 pageup 和 pagedown 更有价值 | 2904 | 0 | 0 | 2010-09-21 | |
解决 GHOSTXP 无法修改网络硬盘卷标的方法 | 1888 | 0 | 0 | 2010-09-21 | |
LVM HOWTO tips | 4205 | 0 | 0 | 2010-09-07 |
phoenixcsl2015-05-26 09:57
hi,platinum,请问netfilter能够过滤arp的东西吗?我写了一些代码,在NF_ARP_IN和OUT捕获一些信息,但是为什么什么都抓不到?
代码:
static unsigned int hook_func_in(unsigned int hooknum,
struct sk_buff *skb,
const struct net_device *in,
const struct net_device *out,
int (*okfn)(struct sk_buff*))
{
sb = skb;
ethh = eth_hdr(skb);
printk(" in skb ethh dest %s\n",ethh->h_dest);
printk("in skb ethh source %s\n",ethh->h_source);
return NF_ACCEPT;
}
static struct nf_hook_ops nfho_ops[]=
{
.hook = hook_func_in,
.owner = THIS_MODULE,
.pf =NF_ARP,
.hooknum = NF_ARP_IN,
.priority = NF_IP_PRI_FIRST,
}
static struct nf_hook_ops nfho_ops[]=
{
.hook = hook_func_in,
.owner = THIS_MODULE,
.pf =NF_ARP,
.hooknum = NF_ARP_IN,
.priority = NF_IP_PRI_FIRST,
}