zoukankan      html  css  js  c++  java
  • SDN实验 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. 实验过程

    学习 ovsSingleBr.py 和 ovsMultiBr.py, 在下图拓扑中实现一个 VLAN。

    部分代码:

    • 拓扑结构
    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
    " )
        linkopts0=dict(bw=100, delay='5ms', loss=0)
        linkopts1=dict(bw=200, delay='5ms', loss=0)
        TCLink( h0, switch0, **linkopts0)
        TCLink( h1, switch0, **linkopts0)
        TCLink( h2, switch1, **linkopts0)
        TCLink( h3, switch1, **linkopts0)
        TCLink( switch0, switch1,**linkopts1)
     
        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' )
    
    • 流表:
    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 -Q 0x10 -c 3 ' + h1.IP() )
        h0.cmdPrint( 'ping -Q 0x20 -c 3 ' + h2.IP() )
        h0.cmdPrint( 'ping -Q 0x30 -c 3 ' + h3.IP() )
        h1.cmdPrint( 'ping -Q 0x40 -c 3 ' + h2.IP() )
        h1.cmdPrint( 'ping -Q 0x50 -c 3 ' + h3.IP() )
        h2.cmdPrint( 'ping -Q 0x60 -c 3 ' + h3.IP() )
    

    实验结果

  • 相关阅读:
    JSP简单练习-数组应用实例
    Android中的动画具体解释系列【4】——Activity之间切换动画
    php学习之道:WSDL具体解释(三)
    破解电信光猫(个人真实经验)
    POj 1879 Tempus et mobilius Time and motion (模拟+群)
    使用mysql-mmm实现MySQL高可用集群
    德克萨斯扑克_百度百科
    姜饼屋_百度百科
    阿根廷探戈----中英文对照
    波尔卡舞_百度百科
  • 原文地址:https://www.cnblogs.com/3xxxv5/p/13720729.html
Copyright © 2011-2022 走看看