目录
一、基础要求
1、搭建下图所示SDN拓扑,协议使用Open Flow 1.0,控制器使用部署于本地的POX(默认监听6633端口)
2、阅读Hub模块代码,使用 tcpdump 验证Hub模块
3、阅读L2_learning模块代码,画出程序流程图,使用 tcpdump 验证Switch模块
(1)流程图
(2)验证结果
二、进阶结果
1、重新搭建(一)的拓扑,此时交换机内无流表规则,拓扑内主机互不相通;编写Python程序自定义一个POX模块SendFlowInSingle3,并且将拓扑连接至SendFlowInSingle3(默认端口6633),实现向s1发送流表规则使得所有主机两两互通。
(1)重新搭建(一)的拓扑,并使用命令dpctl del-flows删除流表,执行该命令后,所有主机都无法ping通
(2)Python程序自定义一个POX模块SendFlowInSingle3
from pox.core import core
import pox.openflow.libopenflow_01 as of
class SendFlowInSingle3(object):
def __init__(self):
core.openflow.addListeners(self)
def _handle_ConnectionUp(self, event):
msg = of.ofp_flow_mod()
msg.priority = 1
msg.match.in_port = 1
msg.actions.append(of.ofp_action_output(port=2))
msg.actions.append(of.ofp_action_output(port=3))
event.connection.send(msg)
msg = of.ofp_flow_mod()
msg.priority = 1
msg.match.in_port = 2
msg.actions.append(of.ofp_action_output(port=1))
msg.actions.append(of.ofp_action_output(port=3))
event.connection.send(msg)
msg = of.ofp_flow_mod()
msg.priority = 1
msg.match.in_port = 3
msg.actions.append(of.ofp_action_output(port=1))
msg.actions.append(of.ofp_action_output(port=2))
event.connection.send(msg)
def launch():
core.registerNew(SendFlowInSingle3)
(3)运行SendFlowInSingle3模块后,所有主机两两互通
2、基于进阶1的代码,完成ODL实验的硬超时功能。
(1)代码
from pox.core import core
import pox.openflow.libopenflow_01 as of
class SendFlowInSingle3(object):
def __init__(self):
core.openflow.addListeners(self)
def _handle_ConnectionUp(self, event):
msg = of.ofp_flow_mod()
msg.priority = 1
msg.match.in_port = 1
msg.actions.append(of.ofp_action_output(port=2))
# msg.actions.append(of.ofp_action_output(port=3))
event.connection.send(msg)
msg = of.ofp_flow_mod()
msg.priority = 1
msg.match.in_port = 2
msg.actions.append(of.ofp_action_output(port=1))
msg.actions.append(of.ofp_action_output(port=3))
event.connection.send(msg)
msg = of.ofp_flow_mod()
msg.priority = 1
msg.match.in_port = 3
# msg.actions.append(of.ofp_action_output(port=1))
msg.actions.append(of.ofp_action_output(port=2))
event.connection.send(msg)
def launch():
core.registerNew(SendFlowInSingle3)
(2)运行结果
三、个人总结
本次实验基础部分较为简单,阅读相关文档并理解代码后按照pdf的步骤做,会遇到点小问题,但大体上可以比较顺利得完成,进阶部分比较难,需要比较深刻的理解Hub模块和Swith模块,代码的编写的比较困难,通过自己的不断学习理解和同学的帮助下逐渐解决。
遇到的问题和解决方法:
问题:运行SendFlowInSingle3时显示6633端口被占用导致无法运行
解决方法:通过sudo lsof-i:6633查看PId后 sudo kill 该pid即可/关机重启虚拟机
问题:pox文件夹被锁住,无法添加py文件
解决方法:运行sudo chmod 777 pox即可解锁文件夹