基于RYU restful api实现的VLAN网络虚拟化
基于RYU restful api实现的VLAN网络虚拟化
前言
本次实验是基于OVS的VLAN虚拟化简易实践方案的进一步的实验,采用RYU restful api进行配置。本质上和上次实验没什么差,究其原因还是因为上次不能较好使用RYU的restful api,现在学会了就实践一把吧。
RESTFUL API 下发流表
工具
- postman
- ryu/app/gui_topolog/gui_topology.py
- ovs
- mininet
实验步骤
之前的实验步骤不在赘述,主要是用RYU的restful api下发push_vlan
ACTION
tip:记得一定要大写
| Actions | Description | Example |
|---|---|---|
| OUTPUT | Output packet from "port" | {"type": "OUTPUT", "port": 3} |
| COPY_TTL_OUT | Copy TTL outwards | {"type": "COPY_TTL_OUT"} |
| COPY_TTL_IN | Copy TTL inwards | {"type": "COPY_TTL_IN"} |
| SET_MPLS_TTL | Set MPLS TTL using "mpls_ttl" | {"type": "SET_MPLS_TTL", "mpls_ttl": 64} |
| DEC_MPLS_TTL | Decrement MPLS TTL | {"type": "DEC_MPLS_TTL"} |
| PUSH_VLAN | Push a new VLAN tag with "ethertype" | {"type": "PUSH_VLAN", "ethertype": 33024} |
| POP_VLAN | Pop the outer VLAN tag | {"type": "POP_VLAN"} |
| PUSH_MPLS | Push a new MPLS tag with "ethertype" | {"type": "PUSH_MPLS", "ethertype": 34887} |
| POP_MPLS | Pop the outer MPLS tag with "ethertype" | {"type": "POP_MPLS", "ethertype": 2054} |
| SET_QUEUE | Set queue id using "queue_id" when outputting to a port | {"type": "SET_QUEUE", "queue_id": 7} |
| GROUP | Apply group identified by "group_id" | {"type": "GROUP", "group_id": 5} |
| SET_NW_TTL | Set IP TTL using "nw_ttl" | {"type": "SET_NW_TTL", "nw_ttl": 64} |
| DEC_NW_TTL | Decrement IP TTL | {"type": "DEC_NW_TTL"} |
| SET_FIELD | Set a "field" using "value"(The set of keywords available for "field" is the same as match field) | See Example of set-field action |
| PUSH_PBB | Push a new PBB service tag with "ethertype"(Openflow1.3+) | {"type": "PUSH_PBB", "ethertype": 35047} |
| POP_PBB | Pop the outer PBB service tag(Openflow1.3+) | {"type": "POP_PBB"} |
| COPY_FIELD | Copy value between header and register(Openflow1.5+) | {"type": "COPY_FIELD", "n_bits": 32, "src_offset": 1, "dst_offset": 2, "src_oxm_id": "eth_src", "dst_oxm_id": "eth_dst"} |
| METER | Apply meter identified by "meter_id"(Openflow1.5+) | {"type": "METER", "meter_id": 3} |
| EXPERIMENTER | Extensible action for the experimenter(Set "base64" or "ascii" to "data_type" field) | {"type": "EXPERIMENTER", "experimenter": 101, "data": "AAECAwQFBgc=", "data_type": "base64"} |
| GOTO_TABLE | (Instruction) Setup the next table identified by "table_id" | {"type": "GOTO_TABLE", "table_id": 8} |
| WRITE_METADATA | (Instruction) Setup the metadata field using "metadata" and "metadata_mask" | {"type": "WRITE_METADATA", "metadata": 0x3, "metadata_mask": 0x3} |
| METER | (Instruction) Apply meter identified by "meter_id"(deprecated in Openflow1.5) | {"type": "METER", "meter_id": 3} |
| WRITE_ACTIONS | (Instruction) Write the action(s) onto the datapath action set | {"type": "WRITE_ACTIONS", actions":[{"type":"POP_VLAN",},{ "type":"OUTPUT", "port": 2}]} |
| CLEAR_ACTIONS | (Instruction) Clears all actions from the datapath action set |
Example of set-field action
$ curl -X POST -d '{
"dpid": 1,
"match":{
"dl_type": "0x8000"
},
"actions":[
{
"type": "PUSH_VLAN", # Push a new VLAN tag if a input frame is non-VLAN-tagged
"ethertype": 33024 # Ethertype 0x8100(=33024): IEEE 802.1Q VLAN-tagged frame
},
{
"type": "SET_FIELD",
"field": "vlan_vid", # Set VLAN ID
"value": 4102 # Describe sum of vlan_id(e.g. 6) | OFPVID_PRESENT(0x1000=4096)
},
{
"type": "OUTPUT",
"port": 2
}
]
}' http://localhost:8080/stats/flowentry/add
postman

ovs
sudo ovs-ofctl -O OpenFlow13 dump-flows s1
得到结果
OFPST_FLOW reply (OF1.3) (xid=0x2):
cookie=0x0, duration=2350.981s, table=0, n_packets=0, n_bytes=0, priority=1,in_port=1 actions=push_vlan:0x8100,set_field:4096->vlan_vid,output:2
总结
可以基于此写自动化脚本,不过还是有通过restful api层面,感觉还不是太好。下面搞一个不通过restful api层面的下发过程。
参考链接
基于RYU restful api实现的VLAN网络虚拟化的更多相关文章
- 基于Ryu REST API的VLAN实现
目录 0.预备知识 1.实验内容 2.编写脚本addflow.sh一步实现流表下发 3.使用api查看流表 4.实验结果 0.预备知识 ryu控制器的API文档:ryu.app.ofctl_rest ...
- python 全栈开发,Day95(RESTful API介绍,基于Django实现RESTful API,DRF 序列化)
昨日内容回顾 1. rest framework serializer(序列化)的简单使用 QuerySet([ obj, obj, obj]) --> JSON格式数据 0. 安装和导入: p ...
- 基于轻量型Web服务器Raspkate的RESTful API的实现
在上一篇文章中,我们已经了解了Raspkate这一轻量型Web服务器,今天,我们再一起了解下如何基于Raspkate实现简单的RESTful API. 模块 首先让我们了解一下"模块&quo ...
- 基于Node的PetShop,RESTful API以及认证
前篇 - 基本认证,用户名密码 后篇 - OAuth2 认证 由于宠物店的业务发展需要,我们需要一种更加便捷的方式来管理日益增多的宠物和客户.最好的方法就是开发一个APP,我可以用这个APP来添加.更 ...
- 使用 node-odata 轻松创建基于 OData 协议的 RESTful API
前言 OData, 相信身为.NET程序员应该不为陌生, 对于他的实现, 之前也有童鞋进行过介绍(见:这里1,这里2). 微软的WCF Data Service即采用的该协议来进行通信, ASP.NE ...
- 在Ubuntu上快速搭建基于Beego的RESTful API
最近在研究Go,打算基于Go做点Web API,于是经过初步调研,打算用Beego这个框架,然后再结合其中提供的ORM以及Swagger的集成,可以快速搭建一个RESTful API的网站. 下面是具 ...
- 基于querybuilder的可根据现有数据表自动生成Restful API的dotnet中间件
AutoApi 基于SqlKata Query Builder的可根据数据表自动生成Restful API的dotnet中间件 项目地址 Github Gitee 支持的数据库 MySql AutoA ...
- 基于Node的PetShop,oauth2认证RESTful API
前篇 - 基本认证,用户名密码 后篇 - OAuth2 认证 前文使用包passport实现了一个简单的用户名.密码认证.本文改用oauth2来实现更加安全的认证.全部代码在这里. OAUTH2 用户 ...
- 基于Spring Boot的RESTful API实践(一)
1. RESTful简述 REST是一种设计风格,是一组约束条件及原则,而遵循REST风格的架构就称为RESTful架构,资源是RESTful的核心,一个好的RESTful架构,通过URL就能很 ...
随机推荐
- python第二十九课——文件读写(读取数据操作)
演示读取数据操作:path=r'a.txt' 1.打开文件f1=open(path,'r') 2.读取数据content1=f1.read(3)print(content1) content1=f1. ...
- intellij IDEA软件java项目No SDK配置jdk开发,安装IDEA软件步骤
我们在使用intellij idea开发java项目的时候,我们在创建的时候会发现提示No SDK,影响创建和使用项目,我们需要下载和配置需要的JDK 电脑 1我们使用intellij idea创建j ...
- Azkaban学习之路 (二)Azkaban的安装
安装过程 1.软件介绍 Azkaban Web 服务器:azkaban-web-server-2.5.0.tar.gz Azkaban Excutor 执行服务器:azkaban-executor-s ...
- input 内容改变的触发事件
1. onchange onchange 事件会在域的内容改变时触发.支持的标签<input type="text">, <textarea>, <s ...
- ASP.NET Response 下载文件
private void DownLoad(string fileName, string path) { FileInfo fi = new FileInfo(path); if (fi.Exist ...
- 所谓的液晶屏驱动IC是单独的IC还是在屏内就集成
所谓的液晶屏驱动IC是单独的IC还是在屏内就集成 时间:2016-12-05 作者:admin 其实无论什么液晶屏,想要正常工作必须包括两个人:玻璃屏+驱动IC:但是现在有一些液晶厂商他们不 ...
- C++ 怎么让静态变量只初始化一次
童鞋们在学习C++的时候,往往只是按照书本上的原文去强行记忆各种特性,比方说,静态变量只初始化一次.你心中一定在默念:一定要记住,static只会初始化一次云云,希望自己能够记住.告诉你,你为什么总是 ...
- python_basic
开始学习python ,欢迎一起进步.
- ss客户端的使用
这里假设读者已经搭建了ss服务.教程 客户端安装 客户端可以通过GitHub上搜索,这里就不写太详细了,避免文章被禁掉. 比如对于mac的用户,可以选择这个 客户端配置 点击程序图标以展开菜单栏 服务 ...
- 20155218 《网络对抗技术》 MAL_恶意代码分析
20155218 <网络对抗技术> MAL_恶意代码分析 实验内容: 1.使用schtasks指令监控系统运行 1.在C盘下新建一个文本文档,输入一下内容后,更名为netstatlog.b ...