全部博文(230)
标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
bash [ -flag ] CONDITIONAL EXPRESSIONS | 2719 | 0 | 0 | 2008-11-06 | |
shell 中的条件测试 | 2182 | 0 | 1 | 2007-04-02 | |
特定 shell 变量 | 3344 | 0 | 0 | 2007-04-02 | |
自动切换线路的 shell 脚本 | 4492 | 1 | 2 | 2007-02-06 | |
动态跟踪我爸 PPPoE 上网的 IP 并重定向到固定地址的脚本(bchyi.sh) | 2968 | 0 | 0 | 2006-11-07 | |
自己写 shell 来完成 HA(初试) | 2757 | 1 | 0 | 2006-01-26 | |
一个通用的NAT脚本,非常方便 | 4099 | 2 | 1 | 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,
}