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

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

时间:2022-10-31 15:00:33浏览次数:41  
标签:__ -- self py REST headers API SDN requests

一、实验目的

能够编写程序调用OpenDaylight REST API实现特定网络功能;
能够编写程序调用Ryu REST API实现特定网络功能。

二、实验环境

下载虚拟机软件Oracle VisualBox或VMware;
在虚拟机中安装Ubuntu 20.04 Desktop amd64,并完整安装Mininet、OpenDaylight(Carbon版本)、Postman和Ryu;

三、实验要求

(一)基本要求

1.编写Python程序,调用OpenDaylight的北向接口实现以下功能

(1) 利用Mininet平台搭建下图所示网络拓扑,并连接OpenDaylight

  • 连接OpenDaylight
./distribution-karaf-0.6.4-Carbon/bin/karaf
  • 创建拓扑
sudo mn --topo=single,3 --controller=remote,ip=127.0.0.1,port=6633 --switch ovsk,protocols=OpenFlow13

图片

(2) 下发指令删除s1上的流表数据

  • 编写Python程序,代码delete.py如下
#!/usr/bin/python
import requests
from requests.auth import HTTPBasicAuth
if __name__ == "__main__":
    url = 'http://127.0.0.1:8181/restconf/config/opendaylight-inventory:nodes/node/openflow:1/'
    headers = {'Content-Type': 'application/json'}
    res = requests.delete(url, headers=headers, auth=HTTPBasicAuth('admin', 'admin'))
    print (res.content)
  • 运行delete.py
    sudo python delete.py
  • 查看流表
    ``dpctl dump-flows```
    图片

(3) 下发硬超时流表,实现拓扑内主机h1和h3网络中断20s

  • 编写Python程序,代码hardtime.py
import requests
from requests.auth import HTTPBasicAuth

if __name__ == "__main__":
    url = 'http://127.0.0.1:8181/restconf/config/opendaylight-inventory:nodes/node/openflow:1/flow-node-inventory:table/0/flow/1'
    with open("./hardtime.json") as f:
        jstr = f.read()
    headers = {'Content-Type': 'application/json'}
    res = requests.put(url, jstr, headers=headers, auth=HTTPBasicAuth('admin', 'admin'))
    print (res.content)
  • 代码hardtime.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",
      "cookie": "2",
      "table_id": "0"
    }
  ]
}
  • 结果如下
    图片

(4) 获取s1上活动的流表数

  • 编写Python程序,代码getflow.py
#!/usr/bin/python
import requests
from requests.auth import HTTPBasicAuth
if __name__ == "__main__":
    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'}
    res = requests.get(url,headers=headers, auth=HTTPBasicAuth('admin', 'admin'))
    print (res.content)
  • 运行getflow.py
    sudo python getflow.py
    图片

2.编写Python程序,调用Ryu的北向接口实现以下功能

(1) 实现上述OpenDaylight实验拓扑上相同的硬超时流表下发。

  • 关闭ODL控制器,关闭上次的拓扑并清除拓扑后 sudo mn -c
  • 使用命令打开Ryu控制器
    ryu-manager ryu.app.simple_switch_13 ryu.app.ofctl_rest
  • 重新创建拓扑
    sudo mn --topo=single,3 --mac --controller=remote,ip=127.0.0.1,port=6633 --switch ovsk,protocols=OpenFlow13
  • 代码Ryuhardtime.py
#!/usr/bin/python
import requests

if __name__ == "__main__":
    url = 'http://127.0.0.1:8080/stats/flowentry/add'
    with open("./Ryuhardtime.json") as f:
        jstr = f.read()
    headers = {'Content-Type': 'application/json'}
    res = requests.post(url, jstr, headers=headers)
    print (res.content)
  • 代码Ryuhardtime.json
{
    "dpid": 1,
    "cookie": 1,
    "cookie_mask": 1,
    "table_id": 0,
    "hard_timeout": 20,
    "priority": 65535,
    "flags": 1,
    "match":{
        "in_port":1,
    },
    "actions":[

    ]
 }
  • 运行Ryuhardtime.py sudo python Ryuhardtime.py
    图片

(2) 参考Ryu REST API的文档,基于VLAN实验的网络拓扑,编程实现相同的VLAN配置。

  • 关闭ODL控制器,关闭上次的拓扑并清除拓扑后 sudo mn -c
  • 使用命令打开Ryu控制器
    ryu-manager ryu.app.simple_switch_13 ryu.app.ofctl_rest
  • 重新创建拓扑
    sudo mn --topo=single,3 --mac --controller=remote,ip=127.0.0.1,port=6633 --switch ovsk,protocols=OpenFlow13
  • 代码topo.py
#topo.py
from mininet.topo import Topo

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

        self.addSwitch("s1")
        self.addSwitch("s2")

        self.addHost("h1")
        self.addHost("h2")
        self.addHost("h3")
        self.addHost("h4")

        self.addLink("s1", "h1")
        self.addLink("s1", "h2")
        self.addLink("s2", "h3")
        self.addLink("s2", "h4")
        self.addLink("s1", "s2")

topos = {'mytopo': (lambda: MyTopo())}
  • 运行Ryuvlan.py
    图片

提示:拓扑生成后需连接Ryu,且Ryu应能够提供REST API服务

VLAN_ID Hosts
0 h1 h3
1 h2 h4

(二)进阶要求

OpenDaylight或Ryu任选其一,编程实现查看前序VLAN实验拓扑中所有节点(含交换机、主机)的名称,以及显示每台交换机的所有流表项。

(三)实验报告

标签:__,--,self,py,REST,headers,API,SDN,requests
From: https://www.cnblogs.com/islinbei/p/16844122.html

相关文章

  • 实验7:基于REST API的SDN北向应用实践
    实验7:基于RESTAPI的SDN北向应用实践一、实验目的1.能够编写程序调用OpenDaylightRESTAPI实现特定网络功能;2.能够编写程序调用RyuRESTAPI实现特定网络功能。二、实......
  • 实验7:基于REST API的SDN北向应用实践
    实验7:基于RESTAPI的SDN北向应用实践一、实验目的能够编写程序调用OpenDaylightRESTAPI实现特定网络功能;能够编写程序调用RyuRESTAPI实现特定网络功能。二、实验......
  • C#MSDN简体中文 最后一版本 2007年的
    我在学习C#需要先看MSDN文档,英文看的很吃力,就找了好久MSDN简体中文版本的;因为微软已经关闭网站(MSDN中文的链接),我找到的就是 磁力链接的;我分享出来,有需要的自行下......
  • JavaDoc生成自己的API文档
    JavaDoc的注释参数@author作者名@version版本号@since需要的最早java版本@param 函数参数@return返回值@throws异常抛出情况 生成JavaDoc步骤如下代码......
  • 实验7:基于REST API的SDN北向应用实践
    实验7:基于RESTAPI的SDN北向应用实践一、实验目的能够编写程序调用OpenDaylightRESTAPI实现特定网络功能;能够编写程序调用RyuRESTAPI实现特定网络功能。二、实验......
  • 实验7:基于REST API的SDN北向应用实践
    一、实验目的能够编写程序调用OpenDaylightRESTAPI实现特定网络功能;能够编写程序调用RyuRESTAPI实现特定网络功能。二、实验环境下载虚拟机软件OracleVisualB......
  • 反射API
    获取反射类:Student.classstudent.getClass()Class<?>aClass=Class.forName("student")构造器Objecto=aClass.newInstance();//默认构造器Constructor<?>con......
  • Python简单api实现
    flask作用及简单使用Flask的简单介绍及使用方法简介_珂鸣玉的博客-CSDN博客_flask 简单api搭建importflaskapi=flask.Flask(__name__)@api.route('/test1',......
  • asyncapi event-gateway
    支持的功能消息验证消息操作消息聚合消息过滤验证节流路由监控(包括追踪)参考架构说明目前来说官方的似乎还只支持基于kafka的处理,当前基于事件消息模式玩法......
  • 实验7:基于REST API的SDN北向应用实践
    实验目的能够编写程序调用OpenDaylightRESTAPI实现特定网络功能;能够编写程序调用RyuRESTAPI实现特定网络功能。实验要求(一)基本要求编写Python程序,调用OpenDayl......