文明之精神,野蛮之体魄。
全部博文(64)
发布时间:2013-06-03 10:56:19
网桥管理1.非ovsdb数据库操作添加名为br0的网桥root@ubuntu229:~# ovs-vsctl add-br br0列出所有网桥root@ubuntu229:~# ovs-vsctl list-br判断网桥br0是否存在root@ubuntu229:~# ovs-vsctl br-exists br0echo $? //0表示存在,否则不存在将网络接口eth0挂接到网桥br0上root@ubuntu229:~# ovs-vsctl add-port br0 .........【阅读全文】
发布时间:2013-05-28 11:54:59
准备工作在Open vSwitch 分布中编译userspace程序,需要下面软件- A make program, e.g. GNU make. BSD make should also work.- The GNU C compiler. We generally test with version 4.1, 4.2, or 4.3.- pkg-config. We test with version 0.22.- libssl, from OpenSSL, is optional but recommended if you plan to.........【阅读全文】
发布时间:2013-05-28 11:12:40
Open vSwitch可以作为一个在管理程序上运行的软开关,也可以作为开关控制堆栈。它已经被移植到多种虚拟化平台和交换芯片。......【阅读全文】