Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save joe820912boy/525c4fc6699d27c426e4c51b83ecb3bc to your computer and use it in GitHub Desktop.
Save joe820912boy/525c4fc6699d27c426e4c51b83ecb3bc to your computer and use it in GitHub Desktop.
from ryu.base import app_manager
from ryu.controller import ofp_event
from ryu.controller.handler import CONFIG_DISPATCHER, MAIN_DISPATCHER
from ryu.controller.handler import set_ev_cls
from ryu.ofproto import ofproto_v1_3
from ryu.lib.packet import packet
from ryu.lib.packet import ethernet
class SimpleSwitch13(app_manager.RyuApp):
OFP_VERSIONS = [ofproto_v1_3.OFP_VERSION]
def __init__(self, *args, **kwargs):
super(SimpleSwitch13, self).__init__(*args, **kwargs)
# 新增一個儲存 Host MAC 的資料結構,類別為 dict(字典)
self.mac_to_port = {}
@set_ev_cls(ofp_event.EventOFPSwitchFeatures, CONFIG_DISPATCHER)
def switch_features_handler(self, ev):
# 一開始 Switch 連上 Controller 時的初始設定 Function
datapath = ev.msg.datapath # 接收 OpenFlow 交換器實例
ofproto = datapath.ofproto # OpenFlow 交換器使用的 OF 協定版本
parser = datapath.ofproto_parser # 處理 OF 協定的 parser
# 以下片段用於設定 Table-Miss FlowEntry
# 首先新增一個空的 match,也就是能夠 match 任何封包的 match rule
match = parser.OFPMatch()
# 指定這一條 Table-Miss FlowEntry 的對應行為
# 把所有不知道如何處理的封包都送到 Controller
actions = [parser.OFPActionOutput(ofproto.OFPP_CONTROLLER,
ofproto.OFPCML_NO_BUFFER)]
# 把 Table-Miss FlowEntry 設定至 Switch,並指定優先權為 0 (最低)
self.add_flow(datapath, 0, match, actions)
def add_flow(self, datapath, priority, match, actions):
# 取得與 Switch 使用的 IF 版本 對應的 OF 協定及 parser
ofproto = datapath.ofproto
parser = datapath.ofproto_parser
# Instruction 是定義當封包滿足 match 時,所要執行的動作
# 因此把 action 以 OFPInstructionActions 包裝起來
inst = [parser.OFPInstructionActions(ofproto.OFPIT_APPLY_ACTIONS,
actions)]
# FlowMod Function 可以讓我們對 Switch 寫入由我們所定義的 Flow Entry
mod = parser.OFPFlowMod(datapath=datapath, priority=priority,
match=match, instructions=inst)
# 把定義好的 FlowEntry 送給 Switch
datapath.send_msg(mod)
@set_ev_cls(ofp_event.EventOFPPacketIn, MAIN_DISPATCHER)
def _packet_in_handler(self, ev):
# 收到來自 Switch 不知如何處理的封包(Match 到 Table-Miss FlowEntry)
msg = ev.msg
datapath = msg.datapath
ofproto = datapath.ofproto
parser = datapath.ofproto_parser
# in_port 相當於封包從 Switch 的哪個 port 進到 Switch 中
# 同時也代表 source Host MAC 要往 in_port 送,才能送達
in_port = msg.match['in_port']
pkt = packet.Packet(msg.data)
eth = pkt.get_protocols(ethernet.ethernet)[0]
dst = eth.dst # 得到封包目的端 MAC address
src = eth.src # 得到封包來源端 MAC address
dpid = datapath.id # Switch 的 datapath id (獨一無二的 ID)
# 如果 MAC 表內不曾儲存過這個 Switch 的 MAC,則幫他新增一個預設值
# ex. mac_to_port = {'1': {'AA:BB:CC:DD:EE:FF': 2}}
# 但是目前 dpid 為 2 不存在,執行後 mac_to_port 會變成
# mac_to_port = {'1': {'AA:BB:CC:DD:EE:FF': 2}, '2': {}}
self.mac_to_port.setdefault(dpid, {})
self.logger.info("packet in %s %s %s %s", dpid, src, dst, in_port)
# 我們擁有來源端 MAC 與 in_port 了,因此可以學習到 src MAC 要往 in_port 送
self.mac_to_port[dpid][src] = in_port
# 如果 目的端 MAC 在 mac_to_port 表中的話,就直接告訴 Switch 送到 out_port
# 否則就請 Switch 用 Flooding 送出去
if dst in self.mac_to_port[dpid]:
out_port = self.mac_to_port[dpid][dst]
else:
out_port = ofproto.OFPP_FLOOD
# 把剛剛的 out_port 作成這次封包的處理動作
actions = [parser.OFPActionOutput(out_port)]
# 如果沒有讓 switch flooding,表示目的端 mac 有學習過
# 因此使用 add_flow 讓 Switch 新增 FlowEntry 學習此筆規則
if out_port != ofproto.OFPP_FLOOD:
match = parser.OFPMatch(in_port=in_port, eth_dst=dst)
self.add_flow(datapath, 1, match, actions)
data = None
if msg.buffer_id == ofproto.OFP_NO_BUFFER:
data = msg.data
# 把要 Switch 執行的動作包裝成 Packet_out,並讓 Switch 執行動作
out = parser.OFPPacketOut(datapath=datapath, buffer_id=msg.buffer_id,
in_port=in_port, actions=actions, data=data)
datapath.send_msg(out)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment