实验5:开源控制器实践——POX(作业完成部分)
1. 开启新终端使用代码创建拓扑(不能关闭)
sudo mn --topo=single,3 --controller=remote,ip=127.0.0.1,port=6633 --switch ovsk,protocols=OpenFlow10
此时的拓扑没有流表 所以pingall 显示全为 X
2. 开启Hub模块
开启新终端 进入pox文件夹 在文件夹下输入命令(不能加sudo) 不能关闭和结束进程
./pox.py log.level --DEBUG forwarding.hub
3. 开启 主机终端
在拓扑的终端中(mininet>)输入
mininet> xterm h2 h3
分别在开启的主机终端中 输入
h2主机终端:tcpdump -nn -i h2-eth0
h3主机终端:tcpdump -nn -i h3-eth0
4. 在拓扑终端中 h1 ping h2 抓包截图
——————————————————————————————————————
1. 关闭所有终端
2. 开启新终端 使用 sudo mn -c 代码清除拓扑
3. 开启新终端使用代码创建拓扑(不能关闭)
sudo mn --topo=single,3 --controller=remote,ip=127.0.0.1,port=6633 --switch ovsk,protocols=OpenFlow13
4. 开启Switch模块
开启新终端 进入pox文件夹 在文件夹下输入命令(不能加sudo)不能关闭和结束进程
./pox.py log.level --DEBUG forwarding.l2_learning
5. 开启 主机终端
在拓扑的终端中(mininet>)输入
mininet> xterm h2 h3
分别在开启的主机终端中 输入
h2主机终端:tcpdump -nn -i h2-eth0
h3主机终端:tcpdump -nn -i h3-eth0
6. 在拓扑终端中 h1 ping h2 抓包截图
基础题结束
——————————————————————————————————————
进阶题
1. 在pox文件夹下创建 SendFlowInSingle3.py 文件 代码如下
from pox.core import core import pox.openflow.libopenflow_01 as of from pox.openflow.of_json import * def _handle_ConnectionUp(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.openflow.addListenerByName("ConnectionUp", _handle_ConnectionUp)
2. 在pox文件夹下创建 SendPoxHardTimeOut.py 文件 代码如下
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
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)
3. 按基础题创建拓扑 此时交换机没有流表 所以 pingall 为 X
注意:此实验流表只有一条 必须mininet中只能 h1 ping h3
./pox.py SendPoxHardTimeOut
自此实验结束