【Open vSwitch】Open vSwitch使用案例扩展实验

实验参考:

Open vSwitch使用案例扩展实验

实验步骤:

1. 实验任务一。

1.创建新文件ovsSingleBr.py并编辑以下内容:

 

 1 #!/usr/bin/python
 2  
 3 from mininet.net import Mininet
 4 from mininet.node import Node
 5 from mininet.link import Link
 6 from mininet.log import  setLogLevel, info
 7  
 8 def myNet():
 9     "Create network from scratch using Open vSwitch."
10  
11     info( "*** Creating nodes\n" )
12     switch0 = Node( 's0', inNamespace=False )
13  
14     h0 = Node( 'h0' )
15     h1 = Node( 'h1' )
16     h2 = Node( 'h2' )
17  
18     info( "*** Creating links\n" )
19     Link( h0, switch0)
20     Link( h1, switch0)
21     Link( h2, switch0)
22  
23     info( "*** Configuring hosts\n" )
24     h0.setIP( '192.168.123.1/24' )
25     h1.setIP( '192.168.123.2/24' )
26     h2.setIP( '192.168.123.3/24' )
27        
28     info( "*** Starting network using Open vSwitch\n" )
29     switch0.cmd( 'ovs-vsctl del-br dp0' )
30     switch0.cmd( 'ovs-vsctl add-br dp0' )
31  
32     for intf in switch0.intfs.values():
33         print intf
34         print switch0.cmd( 'ovs-vsctl add-port dp0 %s' % intf )
35  
36     # Note: controller and switch are in root namespace, and we
37     # can connect via loopback interface
38     #switch0.cmd( 'ovs-vsctl set-controller dp0 tcp:127.0.0.1:6633' )
39   
40     print switch0.cmd(r'ovs-vsctl show')
41  
42     print switch0.cmd(r'ovs-ofctl add-flow dp0 idle_timeout=0,priority=1,in_port=1,actions=flood' ) 
43     print switch0.cmd(r'ovs-ofctl add-flow dp0 idle_timeout=0,priority=1,in_port=2,actions=flood' )
44     print switch0.cmd(r'ovs-ofctl add-flow dp0 idle_timeout=0,priority=1,in_port=3,actions=flood' )
45   
46     print switch0.cmd(r'ovs-ofctl add-flow dp0 idle_timeout=0,priority=10,ip,nw_dst=192.168.123.1,actions=output:1' ) 
47     print switch0.cmd(r'ovs-ofctl add-flow dp0 idle_timeout=0,priority=10,ip,nw_dst=192.168.123.2,actions=output:2' ) 
48     print switch0.cmd(r'ovs-ofctl add-flow dp0 idle_timeout=0,priority=10,ip,nw_dst=192.168.123.3,actions=output:3')
49  
50     #switch0.cmd('tcpdump -i s0-eth0 -U -w aaa &')
51     #h0.cmd('tcpdump -i h0-eth0 -U -w aaa &')
52     info( "*** Running test\n" )
53     h0.cmdPrint( 'ping -c 3 ' + h1.IP() )
54     h0.cmdPrint( 'ping -c 3 ' + h2.IP() )
55  
56     #print switch0.cmd( 'ovs-ofctl show dp0' )    
57     #print switch0.cmd( 'ovs-ofctl dump-tables  dp0' )
58     #print switch0.cmd( 'ovs-ofctl dump-ports   dp0' )
59     #print switch0.cmd( 'ovs-ofctl dump-flows  dp0' )
60     #print switch0.cmd( 'ovs-ofctl dump-aggregate  dp0' )
61     #print switch0.cmd( 'ovs-ofctl queue-stats dp0' )
62  
63     info( "*** Stopping network\n" )
64     switch0.cmd( 'ovs-vsctl del-br dp0' )
65     switch0.deleteIntfs()
66     info( '\n' )
67  
68 if __name__ == '__main__':
69     setLogLevel( 'info' )
70     info( '*** Scratch network demo (kernel datapath)\n' )
71     Mininet.init()
72     myNet()

 

2.改为可执行文件并将其执行:

 

 

 

2. 实验任务二。

1. 创建新文件ovsMultiBr.py并编辑以下内容:

 

  1 #!/usr/bin/python
  2  
  3 from mininet.net import Mininet
  4 from mininet.node import Node
  5 from mininet.link import TCLink
  6 from mininet.log import  setLogLevel, info
  7  
  8 def myNet():
  9     "Create network from scratch using Open vSwitch."
 10  
 11     info( "*** Creating nodes\n" )
 12     switch0 = Node( 's0', inNamespace=False )
 13     switch1 = Node( 's1', inNamespace=False )
 14     switch2 = Node( 's2', inNamespace=False )
 15     switch3 = Node( 's3', inNamespace=False )
 16     switch4 = Node( 's4', inNamespace=False )
 17     h0 = Node( 'h0' )
 18     h1 = Node( 'h1' )
 19  
 20     info( "*** Creating links\n" )
 21     linkopts0=dict(bw=100, delay='1ms', loss=0)
 22     linkopts1=dict(bw=1, delay='100ms', loss=0)
 23     linkopts2=dict(bw=10, delay='50ms', loss=0)
 24     linkopts3=dict(bw=100, delay='1ms', loss=0)
 25     TCLink( h0, switch0, **linkopts0)
 26     TCLink( switch0, switch1, **linkopts0)
 27     TCLink( switch0, switch2, **linkopts0)
 28     TCLink( switch0, switch3, **linkopts0)
 29     TCLink( switch1, switch4,**linkopts1)
 30     TCLink( switch2, switch4,**linkopts2)
 31     TCLink( switch3, switch4,**linkopts3)
 32     TCLink( h1, switch4, **linkopts0)
 33  
 34     info( "*** Configuring hosts\n" )
 35     h0.setIP( '192.168.123.1/24' )
 36     h1.setIP( '192.168.123.2/24' )
 37     info( str( h0 ) + '\n' )
 38     info( str( h1 ) + '\n' )
 39        
 40     info( "*** Starting network using Open vSwitch\n" )
 41     switch0.cmd( 'ovs-vsctl del-br dp0' )
 42     switch0.cmd( 'ovs-vsctl add-br dp0' )
 43     switch1.cmd( 'ovs-vsctl del-br dp1' )
 44     switch1.cmd( 'ovs-vsctl add-br dp1' )
 45     switch2.cmd( 'ovs-vsctl del-br dp2' )
 46     switch2.cmd( 'ovs-vsctl add-br dp2' )
 47     switch3.cmd( 'ovs-vsctl del-br dp3' )
 48     switch3.cmd( 'ovs-vsctl add-br dp3' )
 49     switch4.cmd( 'ovs-vsctl del-br dp4' )
 50     switch4.cmd( 'ovs-vsctl add-br dp4' )
 51  
 52     for intf in switch0.intfs.values():
 53         print intf
 54         print switch0.cmd( 'ovs-vsctl add-port dp0 %s' % intf )
 55  
 56     for intf in switch1.intfs.values():
 57         print intf
 58         print switch1.cmd( 'ovs-vsctl add-port dp1 %s' % intf )
 59  
 60     for intf in switch2.intfs.values():
 61         print intf
 62         print switch2.cmd( 'ovs-vsctl add-port dp2 %s' % intf )
 63  
 64     for intf in switch3.intfs.values():
 65         print intf
 66         print switch3.cmd( 'ovs-vsctl add-port dp3 %s' % intf )
 67  
 68     for intf in switch4.intfs.values():
 69         print intf
 70         print switch4.cmd( 'ovs-vsctl add-port dp4 %s' % intf )
 71    
 72     print switch1.cmd(r'ovs-ofctl add-flow dp1 idle_timeout=0,priority=1,in_port=1,actions=flood' )
 73     print switch1.cmd(r'ovs-ofctl add-flow dp1 idle_timeout=0,priority=1,in_port=1,actions=output:2' ) 
 74     print switch1.cmd(r'ovs-ofctl add-flow dp1 idle_timeout=0,priority=1,in_port=2,actions=output:1' )
 75     print switch2.cmd(r'ovs-ofctl add-flow dp2 idle_timeout=0,priority=1,in_port=1,actions=output:2' )
 76     print switch2.cmd(r'ovs-ofctl add-flow dp2 idle_timeout=0,priority=1,in_port=2,actions=output:1' )
 77     print switch3.cmd(r'ovs-ofctl add-flow dp3 idle_timeout=0,priority=1,in_port=1,actions=output:2' )    
 78     print switch3.cmd(r'ovs-ofctl add-flow dp3 idle_timeout=0,priority=1,in_port=2,actions=output:1' )
 79     print switch4.cmd(r'ovs-ofctl add-flow dp4 idle_timeout=0,priority=1,in_port=1,actions=output:4' )
 80     print switch4.cmd(r'ovs-ofctl add-flow dp4 idle_timeout=0,priority=1,in_port=2,actions=output:4' )
 81     print switch4.cmd(r'ovs-ofctl add-flow dp4 idle_timeout=0,priority=1,in_port=3,actions=output:4' )
 82     print switch4.cmd(r'ovs-ofctl add-flow dp4 idle_timeout=0,priority=1,in_port=4,actions=output:3' )
 83    
 84     #print switch0.cmd(r'ovs-ofctl add-flow dp0 idle_timeout=0,priority=10,ip,nw_dst=192.168.123.2,actions=output:4')
 85     print switch0.cmd(r'ovs-ofctl add-flow dp0 idle_timeout=0,priority=10,ip,nw_dst=192.168.123.2,nw_tos=0x10,actions=output:2') 
 86     print switch0.cmd(r'ovs-ofctl add-flow dp0 idle_timeout=0,priority=10,ip,nw_dst=192.168.123.2,nw_tos=0x20,actions=output:3')
 87     print switch0.cmd(r'ovs-ofctl add-flow dp0 idle_timeout=0,priority=10,ip,nw_dst=192.168.123.2,nw_tos=0x30,actions=output:4') 
 88     #print switch0.cmd(r'ovs-ofctl add-flow dp0 idle_timeout=0,priority=10,ip,nw_dst=192.168.123.1,actions=output:1')
 89  
 90     #switch0.cmd('tcpdump -i s0-eth0 -U -w aaa &')
 91     #h0.cmd('tcpdump -i h0-eth0 -U -w aaa &')
 92     info( "*** Running test\n" )
 93     h0.cmdPrint( 'ping -Q 0x10 -c 3 ' + h1.IP() )
 94     h0.cmdPrint( 'ping -Q 0x20 -c 3 ' + h1.IP() )
 95     h0.cmdPrint( 'ping -Q 0x30 -c 3 ' + h1.IP() )
 96     #h1.cmdPrint('iperf -s -p 12345 -u &')
 97     #h0.cmdPrint('iperf -c ' + h1.IP() +' -u -b 10m -p 12345 -t 10 -i 1')
 98  
 99     #print switch0.cmd( 'ovs-ofctl show dp0' )    
100     #print switch1.cmd( 'ovs-ofctl show dp1' )
101     #print switch2.cmd( 'ovs-ofctl show dp2' )
102     #print switch3.cmd( 'ovs-ofctl show dp3' )
103     #print switch4.cmd( 'ovs-ofctl show dp4' )  
104     #print switch0.cmd( 'ovs-ofctl dump-tables  dp0' )
105     #print switch0.cmd( 'ovs-ofctl dump-ports   dp0' )
106     #print switch0.cmd( 'ovs-ofctl dump-flows  dp0' )
107     #print switch0.cmd( 'ovs-ofctl dump-aggregate  dp0' )
108     #print switch0.cmd( 'ovs-ofctl queue-stats dp0' )
109  
110     #print "Testing video transmission between h1 and h2"
111     #h1.cmd('./myrtg_svc -u > myrd &')
112     #h0.cmd('./mystg_svc -trace st 192.168.123.2')
113  
114     info( "*** Stopping network\n" )
115     switch0.cmd( 'ovs-vsctl del-br dp0' )
116     switch0.deleteIntfs()
117     switch1.cmd( 'ovs-vsctl del-br dp1' )
118     switch1.deleteIntfs()
119     switch2.cmd( 'ovs-vsctl del-br dp2' )
120     switch2.deleteIntfs()
121     switch3.cmd( 'ovs-vsctl del-br dp3' )
122     switch3.deleteIntfs()
123     switch4.cmd( 'ovs-vsctl del-br dp4' )
124     switch4.deleteIntfs()
125     info( '\n' )
126  
127 if __name__ == '__main__':
128     setLogLevel( 'info' )
129     info( '*** Scratch network demo (kernel datapath)\n' )
130     Mininet.init()
131     myNet()

 

2. 改为可执行文件并将其执行:

 

实验结论:

此实验并未连接控制器,只通过脚本在单个/多个交换机中下发静态流表实现主机间的通信。在给多个交换机下发流表时,通过ping操作测试验证主机间的连通性,并通过-Q参数设置不同的tos值验证主机间的连通性及到达目的地址的时间,通过验证发现,tos值设置越大,时间使用越少。

转载于:https://www.cnblogs.com/ptolemy/p/11257052.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/549952.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【Open vSwitch】Open vSwitch的GRE隧道实验网络

实验参考: Open vSwitch的GRE隧道实验网络 实验步骤: 1. 配置VM: 1. 本次要实现的拓扑如下: 先验证虚拟机VM1的OvS服务是否被启动好: 2. 在VM1中创建两个bridge: 1 # ovs-vsctl add-br br0 2 # ovs-vsctl add-br br1 3…

php web音视频通话,实现音视频通话(Web)

实现音视频通话(Web)网易云信音视频通话产品的基本功能包括高质量的实时音视频通话。当您成功初始化 SDK 之后,您可以简单体验本产品的基本业务流程。本文档为您展示音视频通话提供的基本业务流程。前提条件请确认您已完成以下操作:快速跑通Sample Code注…

【Open vSwitch】Open vSwitch的VxLAN隧道网络实验

验参考: Open vSwitch的VxLAN隧道网络实验 实验步骤: 1. 预先配置: 1. 验证两虚拟机的OvS服务是否被启动好: # ps –ef|grep ovs 2. 登陆两台安装Mininet的虚拟机,分别查看IP地址: VM1(192.168.0.102&#…

centos oracle创建库,CentOS Oracle安装必要的软件创建数据库

CentOS Oracle安装系统的特性,既可作为高校计算机专业CentOS Oracle安装学习,也可以作为CentOS系统开源爱好者、CentOS系统用户CentOS Oracle安装系统的特性,,既可作为高校计算机专业CentOS Oracle安装学习,也可以作为…

【Open vSwitch】Open vSwitch流表应用实战

实验参考: Open vSwitch流表应用实战 如何在ubuntu系统下搭建一个opendaylight Beryllium版本环境 实验步骤: 1. 前期准备。 1.创建2个虚拟机,一个是选择OpenDaylight镜像的虚拟机作为控制器(注:内存大于2G&#xff09…

oracle sql loop merge,Oracle之存储过程和MERGE INTO语句

一、MERGE INTO语句1、merge into语句的功能:我们操作数据库的时候,有时候会遇到insert或者Update这种需求。我们操纵代码时至少需要写一个插入语句和更新语句并且还得单独写方法效验数据是否存在,这种操作完全可以用merge into语句代替&…

七月暴雨

狼是弱者 是生命无从着落的弱者 是黯然神伤的异族 它们此刻在星光月夜里 悲情地凝望厮守缠绵过的故园 在逡巡的感伤里作别 为了生命 为了延续 选择死亡或者选择离去 就像时间无意从指间滑过一样 悄悄的溜走 没有…

【OpenFlow】OpenFlow1.3协议基于Mininet部署与验证

实验参考: OpenFlow1.3协议基于Mininet部署与验证 实验步骤: 1. 安装mininet,具体步骤请看实验参考。 2. Mininet创建拓扑后连接支持OpenFlow1.3的控制器: 在连接前,可以通过命令确认控制器的端口号: 3. 进…

【OpenDaylight】OpenDaylight的C/S模式实验

实验参考: OpenDaylight的C/S模式实验 实验步骤: 1. 启动OpenDaylight: 查看是否开启: 或: 2. 查看OpenDaylight的IP地址: 3. 用Miniet创建简易拓扑并连接ODL: 4. 在OpenDaylight虚拟机上查看监…

linux vnc 改端口号,基于Linux中vnc配置端口号的修改方法

vnc的默认端口是自己配置的,并不是这有一个端口号。通过打开/etc/sysconfig/vncservers。 这里就配置了2个桌面,一个桌面号是1, 一个是2.这里的配置的参数VNCSERVERS"2:root"VNCSERVERARGS[2]"-geometry 1280x800"就可以…

linux怎么查看本地磁盘空间,linux怎么查看磁盘空间

如果你在使用Linux过程中遇到无法读写磁盘,应用程序无法执行,请求响应不了等问题,那多半是Linux系统磁盘空间满了,那么怎么查看Linux磁盘空间呢?下面跟着学习啦小编一起来了解一下吧。linux怎么查看磁盘空间首先如果需要查看整个…

[hdu5629]Clarke and tree

首先由一个神奇的序列叫做Purfer序列,他可以表示一棵树,且每个节点出现此时为度数-1(因此总长为n-2)。 然后dp,用f[i][j][k]表示用前i个点中的j个点构成了一个长度为k的Purfer序列(当然要符合条件),那么有$…

linux指令与数据库,Linux指令每日背诵(第一天)

了解:Linux 命令的分类:内部指令、外部指令。Shell 在用户和内核之间充当了“翻译官”的角色。掌握:四种指令方式:1、命令字;2、命令字选项;3、命令之参数;4、命令字选项参数;命令字…

Scott Mitchell 的ASP.NET 2.0数据教程之五:: 声明参数

导言 在上一章的教程中,我们看了GridView、DetailsView和FormView绑定到OjbectDataSource控件显示数据,ObjectDataSource调用了类ProductsBLL的GetProducts()方法。方法GetProducts()返回一个有Northwind数据库的Products表的所有记录组成的强类型数据表…

IArea

用于获取一个几何对象的面积 IArea接口的第一个属性Area(只读,返回一个double类型的数值,为此Area的面积)IArea接口的第二个属性Centroid(只读,返回一个IPoint类型的变量,为此Area的重心&#x…

linux coreutils升级,Coreutils

Coreutils提供了配置工具,定义颜色代码更加方便;Coreutils包含的不仅仅是ls,同时作为Linux用户,我更习惯于使用GNU的各种shell工具。其实就是安装了Coreutils,就可以使用Linux下的程序,【ls/mkdir/mv】等等…

IDEA插件:search with bing、search with baidu

//转载请注明出处:https://www.cnblogs.com/nreg/p/11267169.html 当项目出现错误时,经常需要复制错误信息粘贴到浏览器查询,但是手动复制再粘贴太麻烦了, 因此IDEA官方给了右键菜单search with google, 感觉上方便了许多&#xf…

oracle 游标(学校)

这段时间实在是很忙,结婚、赶项目进度、被迫出书、教学。每件事都是不能得罪的。。。。前几天帮教务处修正oracle数据库数据问题,把代码贴出来防止以后找不到了 declareCURSORcurTTT isselectXN,XM,XQ,KCMC,XF,BJMC fromCJB;XN1 VARCHAR2(10);XM1 VARCHA…

[原创]公布读取瑞星注册码的小程序源代码

大概一年多了,瑞星一直都没更改其序列号保存方式。这还是偶在学校时无聊研究的。偶是菜鸟,就不多说了。 关键代码如下: 1stringrisingpath;2inti, j 0; longsnoffset, idoffset;34//以下读取5//HKEY_LOCAL_MACHINE\SOFTWARE\rising\Rav,并存在…

Selenium 2自动化测试实战4(引用模块)

一、模组1.模组也叫类库或模块,引用模块 在python中,通过import….或from….import….的方式引用模块,下面引用time模块 import time print (time.ctime())#输出结果为“Tue Jul 30 11:34:32 2019”在time模块下面有一个ctime()方法用于获得当…