基础要求
1.验证hub
(1)h1 ping h2
(2)h1 ping h3
2.验证switch
(1)h1 ping h2
(2)h1 ping h3
3.L2_learning模块代码流程图
进阶要求
1.SendFlowInSingle3
(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)运行结果
个人总结
感觉这次试验的难度偏大,文档阅读会比之前的实验困难,需要学习的知识点多而杂。
基础部分要先学习用h2、h3端口抓包,按照文档按部就班地进行可以顺利做出来。但画L2_learning程序流程图需要仔细阅读L2_learning代码,这部分培养了我阅读能力和学习能力,通过POX验证hub和l2_learning模块,使我初步掌握了POX控制器的使用。
进阶的所有文件要创建在 pox文件下 与 pox.py文件同级,不然无法使用
pox 文件夹为只读文件 需要用 chmod 777 解锁