博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Frenetic Python实验(二)
阅读量:5222 次
发布时间:2019-06-14

本文共 1195 字,大约阅读时间需要 3 分钟。

实验3 packet_in_out

目的:模拟一个普通的双端口中继器.

This application implements a very simple 2 port repeater where all the traffic goes through the controller.

1.终端1启动控制器。

2.终端2执行mininet命令:

sudo mn --topo=single,2 --controller=remote

885822-20161130183840615-355724304.png

3.终端3执行应用脚本:

$ python -m frenetic.examples.packet_in_out

885822-20161130183854552-1737871082.png

控制器信息:

885822-20161130184036740-621997907.png

4.终端2中mininet执行pingall:

mininet> pingall

885822-20161130184104896-2064668150.png

控制器终端出现大量packet_out信息:

885822-20161130184126599-815965686.png

pingall in the Mininet window should yield 100% successfully sent packets. There will be a lot of Packet Out activity.

注意:虽然原文说会达到100%的pingall成功率,但是实际操作往往成功率比较低,大概是因为长时间没有更新。

实验4 port_count

目的:记录经过端口的包的数目。

This application polls for port statistics and prints them every five seconds. It implements a simple switch-based repeater for a single switch and an arbitrary number of ports.

在终端3每个5s打印一次端口信息。

1.运行控制器。

2.终端2创建mininet拓扑:

sudo mn --topo=single,10 --controller=remote

885822-20161130184904115-789497061.png

3.终端3运行应用脚本:

$ python -m frenetic.examples.port_count

885822-20161130184950724-2093018554.png

控制器端信息:

885822-20161130185038974-85172328.png

由于bug,h4的信息没有更新:

885822-20161130185103849-563780711.png

4.终端2执行pingall:

mininet> pingall

885822-20161130185206302-779674069.png

应用终端打印端口信息:

885822-20161130185228631-252407912.png

控制器端:

885822-20161130185305771-1997302179.png

pingall in the Mininet window should yield 100% successfully sent packets. Port counts should keep climbing as ping traffic gets forwarded.

同样,虽然它说100%成功,但是实际并不是这样子的,h4的流表信息没有更新。

2016/11/30

转载于:https://www.cnblogs.com/qq952693358/p/6119265.html

你可能感兴趣的文章
Idea 提交代码到码云(提交到github也大同小异)
查看>>
c#连接excel2007未安装ISAM解决
查看>>
Mono 异步加载数据更新主线程
查看>>
初识lua
查看>>
我是插件狂人,jDuang,jValidator,jModal,jGallery
查看>>
张季跃 201771010139《面向对象程序设计(java)》第四周学习总结
查看>>
如何解除循环引用
查看>>
android中fragment的使用及与activity之间的通信
查看>>
字典【Tire 模板】
查看>>
jquery的contains方法
查看>>
python3--算法基础:二分查找/折半查找
查看>>
Perl IO:随机读写文件
查看>>
Perl IO:IO重定向
查看>>
转:基于用户投票的排名算法系列
查看>>
WSDL 详解
查看>>
[转]ASP数组全集,多维数组和一维数组
查看>>
C# winform DataGridView 常见属性
查看>>
逻辑运算和while循环.
查看>>
Nhiberate (一)
查看>>
c#后台计算2个日期之间的天数差
查看>>