全部博文(230)
标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
【推荐】 一次穿透 iptables 防火墙的 UDP 攻击报文真实案例分析 | 13231 | 2 | 10 | 2013-01-02 | |
NVidia 调优 | 2444 | 0 | 0 | 2010-07-15 | |
解决 USB 的 FAT32 系统挂载后乱码的方法 | 2740 | 0 | 1 | 2010-06-21 | |
Creating separate debug info | 1444 | 0 | 0 | 2010-06-19 | |
gentoo 下生成和使用二进制包 | 1900 | 0 | 0 | 2010-06-19 | |
KDE4 的一些备忘 | 2053 | 1 | 1 | 2010-06-19 | |
Nero Linux 4.0.0 serial | 1033 | 0 | 0 | 2010-06-19 | |
Redhat 官方对于 Linux 内存使用的解释 | 3475 | 1 | 0 | 2008-04-17 | |
Gentoo Quick Guide | 2302 | 0 | 0 | 2007-11-03 | |
HOWTO Maintain Gentoo - | 2961 | 0 | 0 | 2007-11-03 | |
Gentoo 安装初试 | 2477 | 0 | 0 | 2007-10-11 | |
我 vmware 下 linux 的时钟超快 | 1712 | 1 | 0 | 2007-08-16 | |
pptpd MPPE+MPPC 的感受 | 3276 | 0 | 0 | 2006-01-26 | |
一个 dhcpd.conf 的例子 | 5011 | 0 | 0 | 2006-01-26 | |
架设 PPPoE Server 笔记 | 4476 | 0 | 1 | 2006-01-26 | |
查找某个文件属于哪个RPM包 | 2843 | 0 | 0 | 2006-01-26 | |
直接用命令行设置系统用户密码 | 2489 | 0 | 0 | 2006-01-26 | |
sudo 小例子 | 2439 | 0 | 0 | 2006-01-26 |
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,
}