全部博文(230)
发布时间:2015-04-21 09:03:30
一、open vswitch简介open vswitch是一个高质量的、多层虚拟交换机,使用开源apache2.0许可协议,由nicira networks开发,主要实现代码为可移植的c代码。它的目的是让大规模网络自动化可以通过编程扩展,同时仍然支持标准的管理接口和协议(例如netflow, sflow, span, rspan, cli, lacp, 802.1ag)。此外,它被设计.........【阅读全文】
发布时间:2015-04-21 09:03:25
openvswitch完全使用手册(一)-总览overview本文主要参考overview of functionality and components以及frequently asked questions以及结合自己的理解。1 什么是openvswitchopenvswitch,简称ovs是一个虚拟交换软件,主要用于虚拟机vm环境,作为一个虚拟交换机,支持xen/xenserver, kvm, and virtual.........【阅读全文】
发布时间:2015-04-21 09:00:07
原创文章,转载请注明: 转载自pagefault 本文链接地址: linux kernel 2.6.35中rfs特性详解 前面我介绍过google对内核协议栈的patch,rps,它主要是为了软中断的负载均衡,这次继续来介绍google 的对rps的增强path rfs(receive flow steering),rps是把软中断map到对应cpu,而这个时候还会有另外.........【阅读全文】
发布时间:2015-04-21 08:59:54
随着单核cpu速度已经达到极限,cpu向多核方向发展,要持续提高网络处理带宽,传统的提升硬件设备、智能处理(如gso、tso、ufo)处理办法已不足够。如何充分利用多核优势来进行并行处理提高网络处理速度就是rps解决的课题。以一个具有8核cpu和一个nic的,连接在网络中的主机来说,对于由该主机产生并通过nic发送到网络中的.........【阅读全文】
发布时间:2015-04-10 20:58:22
......
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,
}
platinum2013-05-24 10:01
luodeke:博主你好,我有个问题想请教你,看你的博文里面你好像有看过内核代码,内核代码你是从哪里得到的呢?直接在kernel.org里面的源码包得到的吗?多谢
两种方法
1、去 kernel.org 下载
2、用 git 直接托追最新版:git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git