zoukankan      html  css  js  c++  java
  • 实验 4:Open vSwitch 实验——Mininet 中使用 OVS 命令

    一、实验目的

    Mininet 安装之后,会连带安装 Open vSwitch,可以直接通过 Python 脚本调用

    Open vSwitch 命令,从而直接控制 Open vSwitch,通过实验了解调用控制的方法。

    二、实验任务

    在本实验中,使用 Mininet 基于 Python 的脚本,调用“ovs-vsctl”命令直接控制

    Open vSwitch。使用默认的交换机泛洪规则,设置更高的优先级规则进行预先定

    义 IP 报文的转发。在多个交换机中通过设置不同 TOS 值的数据包将通过不同的

    方式到达目的地址,验证主机间的连通性及到达目的地址的时间。

    三、实验步骤

    1. 实验环境

    安装了 Ubuntu 18.04.5 Desktop amd64 的虚拟机

    2. 实验过程

    SDNLAB 实验参考资料:https://www.sdnlab.com/15083.html

    (1)创建 ovsSingleBr.py 脚本并添加内容,代码参考 SDNLAB

    拓扑1

    运行结果如下:

    1结果1

    1结果2

    (2)创建 ovsMultiBr.py 脚本并添加内容,代码参考 SDNLAB拓扑2

    运行结果如下:

    2结果1

    2结果2

    (3)将 h0 和 h2 划分在 VLAN 0 中,h1 和 h3 划分在 VLAN 1 中,利用 ovs 命令直接下发 VLAN 设置的流表项,最终测试 h0 和 h2 互通,h1 和 h3 互通,其余主机均不通。

    拓扑3

    代码如下:

    #!/usr/bin/python
     
    from mininet.net import Mininet
    from mininet.node import Node
    from mininet.link import Link
    from mininet.log import  setLogLevel, info
     
    def myNet():
        "Create network from scratch using Open vSwitch."
     
        info( "*** Creating nodes
    " )
        switch0 = Node( 's0', inNamespace=False )
        switch1 = Node( 's1', inNamespace=False )
    
        h0 = Node( 'h0' )
        h1 = Node( 'h1' )
        h2 = Node( 'h2' )
        h3 = Node( 'h3' )
    
        info( "*** Creating links
    " )
        Link( h0, switch0)
        Link( h1, switch0)
        Link( h2, switch1)
        Link( h3, switch1)
        Link( switch0, switch1)
    
        info( "*** Configuring hosts
    " )
        h0.setIP( '192.168.123.1/24' )
        h1.setIP( '192.168.123.2/24' )
        h2.setIP( '192.168.123.3/24' )
        h3.setIP( '192.168.123.4/24' )
       
        info( "*** Starting network using Open vSwitch
    " )
        switch0.cmd( 'ovs-vsctl del-br dp0' )
        switch0.cmd( 'ovs-vsctl add-br dp0' )
        switch1.cmd( 'ovs-vsctl del-br dp1' )
        switch1.cmd( 'ovs-vsctl add-br dp1' )
    
        for intf in switch0.intfs.values():
            print (intf)
            print (switch0.cmd( 'ovs-vsctl add-port dp0 %s' % intf ))
     
        for intf in switch1.intfs.values():
            print (intf)
            print (switch1.cmd( 'ovs-vsctl add-port dp1 %s' % intf ))
      
     
        print (switch0.cmd(r'ovs-ofctl -O OpenFlow13 add-flow dp0 priority=1,in_port=1,actions=push_vlan:0x8100,set_field:4096->vlan_vid,output:3' ))
        print (switch0.cmd(r'ovs-ofctl -O OpenFlow13 add-flow dp0 priority=1,in_port=2,actions=push_vlan:0x8100,set_field:4097->vlan_vid,output:3' ))
        print (switch0.cmd(r'ovs-ofctl -O OpenFlow13 add-flow dp0 priority=1,dl_vlan=0,actions=pop_vlan,output:1' ))
        print (switch0.cmd(r'ovs-ofctl -O OpenFlow13 add-flow dp0 priority=1,dl_vlan=1,actions=pop_vlan,output:2' ))
      
        print (switch1.cmd(r'ovs-ofctl -O OpenFlow13 add-flow dp1 priority=1,in_port=1,actions=push_vlan:0x8100,set_field:4096->vlan_vid,output:3' ))
        print (switch1.cmd(r'ovs-ofctl -O OpenFlow13 add-flow dp1 priority=1,in_port=2,actions=push_vlan:0x8100,set_field:4097->vlan_vid,output:3' ))
        print (switch1.cmd(r'ovs-ofctl -O OpenFlow13 add-flow dp1 priority=1,dl_vlan=0,actions=pop_vlan,output:1' ))
        print (switch1.cmd(r'ovs-ofctl -O OpenFlow13 add-flow dp1 priority=1,dl_vlan=1,actions=pop_vlan,output:2' ))
    
        info( "*** Running test
    " )
        h0.cmdPrint( 'ping -c 3 ' + h1.IP() )
        h0.cmdPrint( 'ping -c 3 ' + h2.IP() )
        h0.cmdPrint( 'ping -c 3 ' + h3.IP() )
        h1.cmdPrint( 'ping -c 3 ' + h2.IP() )
        h1.cmdPrint( 'ping -c 3 ' + h3.IP() )
        h2.cmdPrint( 'ping -c 3 ' + h3.IP() )
    
        info( "*** Stopping network
    " )
        switch0.cmd( 'ovs-vsctl del-br dp0' )
        switch0.deleteIntfs()
        switch1.cmd( 'ovs-vsctl del-br dp1' )
        switch1.deleteIntfs()
        info( '
    ' )
     
    if __name__ == '__main__':
        setLogLevel( 'info' )
        info( '*** Scratch network demo (kernel datapath)
    ' )
        Mininet.init()
        myNet()
    

    运行结果如下:

    3结果1

    3结果2

    四、实验心得

    • 初步了解了ovs命令的使用
    • Python3.x版本中,print结果要跟括号:print (Result)
  • 相关阅读:
    mssql 循环的写法,备用
    用了十几年的windows记录下我不知道的几个快捷键
    折腾了下java下webservice,折腾了大半天,居然是eclipse的版本不对
    连接Linux 下mysql 慢的问题,解决之
    解决windows7蓝屏的方法
    MySQL錯誤:Value '00000000' can not be represented as java.sql.Date解決方法[转]
    jdbc连接三种数据库的连接语句写法(备查)
    遇到一个json解析的错误,费了好大的劲,最后发现是少了一个包
    【转】The reference to entity "characterEncoding" must end with the ';' delimiter
    synaptics 插入USB鼠标禁用,网上
  • 原文地址:https://www.cnblogs.com/bergscl/p/13720402.html
Copyright © 2011-2022 走看看