5月份的时候做的,一直懒的写文档。今天终于鼓起勇气写完了。内容较多,只给出目录。由于文件超过限制。请至下载中心下载:CloudStack-OpenvSwitch+高级网络部署案例.pdf文中如有不妥的或错误,欢迎指出。前言需求规划及部署一、现状1.1服务器信息1.2网络信息1.3网络拓扑二、方..
分类:
其他好文 时间:
2014-08-06 19:31:02
阅读次数:
202
安装前准备软件包及版本Gccpkg-configautoconfautomakem4python2.X下载OVS软件包http://openvswitch.org/releases/openvswitch-1.9.0.tar.gz解压后进入ovs文件夹中在依次进行下列步骤:./boot.sh./co...
分类:
其他好文 时间:
2014-08-05 00:09:28
阅读次数:
278
1.去掉bridge模块,为下面用OVS的模块奠定基础rmmod bridge2.insmod datapath/linux/openvswitch_mod.ko3.insmod datapath/linux/brcompat_mod.ko4.nkdir -p /usr/local/etc/open...
分类:
其他好文 时间:
2014-08-04 23:58:48
阅读次数:
402
openvswitch的安装是参考其INSTALL.Debian文件(要先从官网上下载openvswitch文件),通过生成.deb文件安装:安装基础的依赖:sudoapt-getinstallpython-simplejsonpython-qt4python-zopeinterfacepython-twisted-conchautomakeautoconfgcckvmuml-utilitiesvirt-managerqemu-kvmk..
分类:
其他好文 时间:
2014-07-21 19:35:52
阅读次数:
191
neutron-openvswitch-agent代码分析neutron.plugins.openvswitch.agent.ovs_neutron_agent:main# init ovs first by agent_config:# setup plugin_rpc, state_rpc, m...
分类:
其他好文 时间:
2014-07-18 00:28:37
阅读次数:
434
在内核编程中哈希链表hlist使用非常多,比如在openvswitch中流表的存储中就使用了(见[1])。hlist的表头仅有一个指向首节点的指针,而没有指向尾节点的指针,这样在有很多个buckets的HASH表中存储的表头就能减少一半的空间消耗。
和hlist相关的数据结构如下,桶中存储的 hlist_head 是具有相同hash值的entry构成的链表,每个entry包含一个 hl...
分类:
系统相关 时间:
2014-07-01 09:05:52
阅读次数:
880
这一节我们将flow table flow table主要由ovs-ofctl命令操作 ovs-ofctl可以走和openflow controller一样的协议: ssl:ip[:port]: The specified SSL port (default: 6633) on the host a...
分类:
其他好文 时间:
2014-06-27 14:37:24
阅读次数:
206
通过这几天对openvswitch代码的分析,以及项目的须要,须要对openflow1.0进行一定的扩展,发现网上没有这方面的教程,尽管在搞懂ovs代码架构,floodlightcontroller中利用的事件驱动模型之后,会认为并非难事,可是对于刚入门SDN的同学来说,须要一番折腾,这里简单记录一...
分类:
其他好文 时间:
2014-06-26 15:54:36
阅读次数:
361
我们来看Interfaces ofport: OpenFlow port number for this interface. type: system: An ordinary network device, e.g. eth0 on Linux. internal: A simulated ne...
分类:
其他好文 时间:
2014-06-24 12:23:51
阅读次数:
316
ovs-vsctl的DB的操作 如果你在命令行里面找不到相应的命令创建和删除对象,则可以直接删除数据库 [??if?exists] [??columns=column[,column]...] list table [record]... $ sudo ovs-vsctl list bridge _...
分类:
其他好文 时间:
2014-06-24 12:19:17
阅读次数:
372