一、实验目的
能够理解 POX 控制器的工作原理;
通过验证POX的forwarding.hub和forwarding.l2_learning模块,初步掌握POX控制器的使用方法;
能够运用 POX控制器编写自定义网络应用程序,进一步熟悉POX控制器流表下发的方法。
实验要求
搭建下图所示SDN拓扑,协议使用Open Flow 1.0,控制器使用部署于本地的POX(默认监听6633端口)
sudo mn --topo=single,3 --mac --controller=remote,ip=127.0.0.1,port=6633 --switch ovsk,protocols=OpenFlow10
![](/i/l/?n=22&i=blog/2973885/202210/2973885-20221020113153489-
572385536.jpg)
使用pox控制器
h1 ping h2
h1 ping h3
tcpdump -nn -i h2-eth0 #抓取h2-eth0端口的数据包
tcpdump -nn -i h3-eth0 #抓取h3-eth0端口的数据包
l2_learning 模块:
h1 ping h2
h2 ping h3
重新搭建(一)的拓扑,此时交换机内无流表规则,拓扑内主机互不相通;编写Python程序自定义一个POX模块SendFlowInSingle3,并且将拓扑连接至SendFlowInSingle3(默认端口6633),实现向s1发送流表规则使得所有主机两两互通。
2.2 基于进阶1的代码,完成ODL实验的硬超时功能。(直接运行SendPoxHardTimeOut,先断后通,能验证流表项生效即可
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):
#设置数据包从端口1进,从端口2和端口3出
msg = of.ofp_flow_mod()# 使用ofp_flow_mod()的方法向交换机来下发流表
msg.priority = 1#设置msg的优先级
msg.match.in_port = 1#设置在端口1接收数据包
msg.actions.append(of.ofp_action_output(port = of.OFPP_ALL))#增加转发向所有端口的动作
event.connection.send(msg)#通过send函数向交换机发送所设定的消息
#设置数据包从端口2进,从端口1和端口3出
msg = of.ofp_flow_mod()
msg.priority = 1
msg.match.in_port = 2
msg.actions.append(of.ofp_action_output(port = of.OFPP_ALL))
event.connection.send(msg)
#设置数据包从端口3进,从端口1和端口2出
msg = of.ofp_flow_mod()
msg.priority = 1
msg.match.in_port = 3
msg.actions.append(of.ofp_action_output(port = of.OFPP_ALL))
event.connection.send(msg)
def launch ():
core.registerNew(SendFlowInSingle3)
SendPoxHardTimeOut代码
from pox.core import core
import pox.openflow.libopenflow_01 as of
class SendPoxHardTimeOut(object):
def __init__(self):
core.openflow.addListeners(self)
def _handle_ConnectionUp(self, event):
msg = of.ofp_flow_mod()
msg.priority = 3
msg.match.in_port = 1
msg.hard_timeout = 10 #硬超时10秒
event.connection.send(msg)
msg = of.ofp_flow_mod()
msg.priority = 1
msg.match.in_port = 1
msg.actions.append(of.ofp_action_output(port = of.OFPP_ALL))
event.connection.send(msg)
msg = of.ofp_flow_mod()
msg.priority = 3
msg.match.in_port = 3
msg.hard_timeout = 10
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 = of.OFPP_ALL))
event.connection.send(msg)
def launch():
core.registerNew(SendPoxHardTimeOut)
个人总结
本实验难度还是有一些的,python代码要设置优先级,共同执行,参考优先级的大小进行先后,在实现硬超时部分时运行SendFlowSingle3后,要按Ctrl+alt+c退出,再次运行SendPoxHardTimeOut,理解了pox控制器的工作原理,掌握运用pox控制器编写自定义网络应用程序