首页 > 其他分享 >实验7:基于REST API的SDN北向应用实践

实验7:基于REST API的SDN北向应用实践

时间:2022-11-08 00:45:15浏览次数:57  
标签:__ url self flow REST headers API SDN type

基本要求
一.编写Python程序,调用OpenDaylight的北向接口实现以下功能
(1) 利用Mininet平台搭建下图所示网络拓扑,并连接OpenDaylight;
打开OpenDaylight控制器
./distribution-karaf-0.6.4-Carbon/bin/karaf
建立odl.py

#!/usr/bin/python
import requests
from requests.auth import HTTPBasicAuth

if __name__ == "__main__":  #下发指令删除s1上的流表数据
    url = 'http://127.0.0.1:8181/restconf/config/opendaylight-inventory:nodes/node/openflow:1/'
    headers = {'Content-Type': 'application/json'}
    resp = requests.delete(url, headers=headers, auth=HTTPBasicAuth('admin', 'admin'))
    print (resp.content)

if __name__ == "__main__": #下发硬超时流表,实现拓扑内主机h1和h3网络中断20s
    url = 'http://127.0.0.1:8181/restconf/config/opendaylight-inventory:nodes/node/openflow:1/flow-node-inventory:table/0/flow/1'
    with open("./hardtimeout.json") as f:
        jstr = f.read()
    headers = {'Content-Type': 'application/json'}
    resp = requests.put(url, jstr, headers=headers, auth=HTTPBasicAuth('admin', 'admin'))
    print (resp.content)


if __name__ == "__main__": #获取s1上活动的流表数
    url = 'http://127.0.0.1:8181/restconf/operational/opendaylight-inventory:nodes/node/openflow:1/flow-node-inventory:table/0/opendaylight-flow-table-statistics:flow-table-statistics'
    headers = {'Content-Type': 'application/json'}
    resp = requests.get(url,headers=headers, auth=HTTPBasicAuth('admin', 'admin'))
    print (resp.content)

建立hardtimeout.json

{
  "flow": [
    {
      "id": "1",
      "match": {
        "in-port": "1",
        "ethernet-match": {
          "ethernet-type": {
            "type": "0x0800"
          }
        },
        "ipv4-destination": "10.0.0.3/32"
      },
      "instructions": {
        "instruction": [
          {
            "order": "0",
            "apply-actions": {
              "action": [
                {
                  "order": "0",
                  "drop-action": {}
                }
              ]
            }
          }
        ]
      },
      "flow-name": "flow1",
      "priority": "65535",
      "hard-timeout": "20", #设置硬超时时间为20s
      "cookie": "2",
      "table_id": "0"
    }
  ]

运行结果:

二.编写Python程序,调用Ryu的北向接口实现以下功能
(1) 实现上述OpenDaylight实验拓扑上相同的硬超时流表下发。
建立ryupy.py

#!/usr/bin/python
import requests

if __name__ == "__main__":
    url = 'http://127.0.0.1:8080/stats/flowentry/add'
    with open("./flow.json") as f:
        jstr = f.read()
    headers = {'Content-Type': 'application/json'}
    res = requests.post(url, jstr, headers=headers)
    print (res.content)

建立flow.json

{
    "dpid": 1,
    "cookie": 1,
    "cookie_mask": 1,
    "table_id": 0,
    "hard_timeout": 20,
    "priority": 65535,
    "flags": 1,
    "match":{
        "in_port":1
    },
    "actions":[

    ]
 }

运行结果:

(2)参考Ryu REST API的文档,基于VLAN实验的网络拓扑,编程实现相同的VLAN配置。
提示:拓扑生成后需连接Ryu,且Ryu应能够提供REST API服务
创建拓扑 topo.py

from mininet.topo import Topo

class MyTopo(Topo):

     def __init__(self):
     
         #initilaize topology
         Topo.__init__(self)

         #add hosts 
         h1=self.addHost('h1')
         h2=self.addHost('h2')
         h3=self.addHost('h3')
         h4=self.addHost('h4')
     
         #add Switches
         s1=self.addSwitch('s1')
         s2=self.addSwitch('s2')
     
         #add Links
         self.addLink(h1,s1,1,1) 
         self.addLink(h2,s1,1,2) 
         self.addLink(h3,s2,1,1) 
         self.addLink(h4,s2,1,2) 
         self.addLink(s1,s2,3,3)
     
topos = {'mytopo' : (lambda:MyTopo())}

建立ryu_vlan.py

#!/usr/bin/python
import json

import requests

if __name__ == "__main__":
    url = 'http://127.0.0.1:8080/stats/flowentry/add'
    headers = {'Content-Type': 'application/json'}
    flow1 = {
        "dpid": 1,
        "priority": 1,
        "match":{
            "in_port": 1
        },
        "actions":[
            {
                "type": "PUSH_VLAN",    
                "ethertype": 33024      
            },
            {
                "type": "SET_FIELD",
                "field": "vlan_vid",    
                "value": 4096           
            },
            {
                "type": "OUTPUT",
                "port": 3
            }
        ]
    }
    flow2 = {
        "dpid": 1,
        "priority": 1,
        "match":{
            "in_port": 2
        },
        "actions":[
            {
                "type": "PUSH_VLAN",     
                "ethertype": 33024      
            },
            {
                "type": "SET_FIELD",
                "field": "vlan_vid",     
                "value": 4097           
            },
            {
                "type": "OUTPUT",
                "port": 3
            }
        ]
    }
    flow3 = {
        "dpid": 1,
        "priority": 1,
        "match":{
            "vlan_vid": 0
        },
        "actions":[
            {
                "type": "POP_VLAN",    
                "ethertype": 33024     
            },
            {
                "type": "OUTPUT",
                "port": 1
            }
        ]
    }
    flow4 = {
        "dpid": 1,
        "priority": 1,
        "match": {
            "vlan_vid": 1
        },
        "actions": [
            {
                "type": "POP_VLAN", 
                "ethertype": 33024  
            },
            {
                "type": "OUTPUT",
                "port": 2
            }
        ]
    }
    flow5 = {
        "dpid": 2,
        "priority": 1,
        "match": {
            "in_port": 1
        },
        "actions": [
            {
                "type": "PUSH_VLAN", 
                "ethertype": 33024 
            },
            {
                "type": "SET_FIELD",
                "field": "vlan_vid", 
                "value": 4096  
            },
            {
                "type": "OUTPUT",
                "port": 3
            }
        ]
    }
    flow6 = {
        "dpid": 2,
        "priority": 1,
        "match": {
            "in_port": 2
        },
        "actions": [
            {
                "type": "PUSH_VLAN",  
                "ethertype": 33024  
            },
            {
                "type": "SET_FIELD",
                "field": "vlan_vid",  
                "value": 4097 
            },
            {
                "type": "OUTPUT",
                "port": 3
            }
        ]
    }
    flow7 = {
        "dpid": 2,
        "priority": 1,
        "match": {
            "vlan_vid": 0
        },
        "actions": [
            {
                "type": "POP_VLAN", 
                "ethertype": 33024  
            },
            {
                "type": "OUTPUT",
                "port": 1
            }
        ]
    }
    flow8 = {
        "dpid": 2,
        "priority": 1,
        "match": {
            "vlan_vid": 1
        },
        "actions": [
            {
                "type": "POP_VLAN", 
                "ethertype": 33024  
            },
            {
                "type": "OUTPUT",
                "port": 2
            }
        ]
    }
    resp1 = requests.post(url, json.dumps(flow1), headers=headers)
    resp2 = requests.post(url, json.dumps(flow2), headers=headers)
    resp3 = requests.post(url, json.dumps(flow3), headers=headers)
    resp4 = requests.post(url, json.dumps(flow4), headers=headers)
    resp5 = requests.post(url, json.dumps(flow5), headers=headers)
    resp6 = requests.post(url, json.dumps(flow6), headers=headers)
    resp7 = requests.post(url, json.dumps(flow7), headers=headers)
    resp8 = requests.post(url, json.dumps(flow8), headers=headers)

运行结果:

进阶要求
实现查看前序VLAN实验拓扑中所有节点(含交换机、主机)的名称,以及显示每台交换机的所有流表项。
建立ryu_show.py

import requests
import time
import re
class GetNodes:
    def __init__(self, ip):
        self.ip = ip
        
    def get_switch_id(self): #查找所有节点名称
        url = 'http://' + self.ip + '/stats/switches'
        re_switch_id = requests.get(url=url).json()
        switch_id_hex = []
        for i in re_switch_id:
            switch_id_hex.append(hex(i))

        return switch_id_hex

    def getflow(self):  #查找所有交换机流表项
        url = 'http://' + self.ip + '/stats/flow/%d'
        switch_list = self.get_switch_id()
        ret_flow = []
        for switch in switch_list:
            new_url = format(url % int(switch, 16))
            re_switch_flow = requests.get(url=new_url).json()
            ret_flow.append(re_switch_flow)
        return ret_flow

    def show(self):
        flow_list = self.getflow()
        for flow in flow_list:
            for dpid in flow.keys():
                dp_id = dpid
                switchnum= '{1}'.format(hex(int(dp_id)), int(dp_id))        
                print('s'+switchnum)
                switchnum = int(switchnum)
            for list_table in flow.values():
                for table in list_table:          
                    string1 = str(table)
                    if re.search("'dl_vlan': '(.*?)'", string1) is not None:
                       num = re.search("'dl_vlan': '(.*?)'", string1).group(1);
                       if num == '0' and switchnum == 1:
                          print('h1')
                       if num == '1' and switchnum == 1:
                          print('h2')
                       if num == '0' and switchnum == 2:
                          print('h3')
                       if num == '1' and switchnum == 2:
                          print('h4')
                          
        flow_list = self.getflow()
        for flow in flow_list:
            for dpid in flow.keys():
                dp_id = dpid
                print('switch:s{1}'.format(hex(int(dp_id)), int(dp_id)))
            for list_table in flow.values():
                for table in list_table:
                    print(table)
s1 = GetNodes("127.0.0.1:8080")
s1.show()

总结
个人总结:在这次实验中我学习了解了如何编写程序来调用OpenDaylight REST API和Ryu REST API实现特定的网络功能。本次实验主要是编写代码,参考了老师实验文档的例子以及网上查找的资料,操作起来不是很难,主要是对于代码的理解。在进阶部分中,我学习参考了前面同学的代码,对于整个代码的流程还需要再理解及进一步的学习。

标签:__,url,self,flow,REST,headers,API,SDN,type
From: https://www.cnblogs.com/zxy-0402/p/16867988.html

相关文章

  • Certificates API
    (1)用户创建了key(2)然后使用该key,生成证书签名请求,附带上自己的名字(3)然后,发送该请求到管理员(4)管理员使用一个key,创建证书签名请求对象(5)证书签名请求对象,像创建其他kuber......
  • Windows API与MFC的关系
    Windows应用程序编程接口(WindowsApplicationProgrammingInterface),程序员想编写Windows平台上的软件,必须借助WindowsAPI,Win32API也就是MicrosoftWindows32位平台的应......
  • JavaScript之数组高阶API—reduce()
    一文搞懂JavaScript数组中最难的数组API——reduce()前面我们讲了数组的一些基本方法,今天给大家讲一下数组的reduce(),它是数组里面非常重要也是比较难的函数,那么这篇文章......
  • (Redis使用系列) Springboot 使用redis实现接口Api限流 十
    前言 该篇介绍的内容如题,就是利用redis实现接口的限流( 某时间范围内最大的访问次数) 。正文 惯例,先看下我们的实战目录结构:首先是pom.xml核心依赖: <!--用于redis......
  • Mediapipe在安卓上运行
    一、安装Linux虚拟机,选择Ubuntu版本二、在Ubuntu上安装Mediapipe1.安装编译环境Bazel,我选择的是二进制文件安装,查看Bazel文档:使用Bazelisk安装/更新Bazel 1)安装......
  • 使用tp6的.env文件 api 设置
    使用tp6的.env文件设置bug调试设置成这样的话可以显示错误信息并且api调试的时候也不会出现div样式config.php.env文件......
  • APICloud实战案例:如何封装AVM组件?(以声网组件为例)
    AVM.js(Application-View-Model)是一个移动优先的高性能跨端JavaScript框架,支持一次编写多端渲染。它提供更趋近于原生的编程体验,通过简洁的模型来分离应用的用户界面、业......
  • Vue3, setup语法糖、Composition API全方位解读
    起初Vue3.0暴露变量必须return出来,template中才能使用;Vue3.2中只需要在script标签上加上setup属性,组件在编译的过程中代码运行的上下文是在setup()函数中,无......
  • nginx -s reload 与 service nginx restart 的区别
    官方文档:https://nginx.org/en/docs/beginners_guide.html1.语法nginx-ssignalsignal的值如下:stop:fastshutdown,快速的停止nginxquit:gracefulshutdown,不再接受......
  • 企微外部群Api
    个人微信开发API文档地址:wkteam.gitbook.io所有个人号模块分析:登录模块登录微控平台member/login获取微信二维码user/login执行微信登录getIPadLoginInfo获取联系人......