Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 Ryu 发送流条目以丢弃包?我从 ryu 官网了解到如何发送包外流入口。现在我想修改 simple_switch_13.py 以将数据包从 host1 丢弃到 host2。但是我找不到如何修改PacketIn,你能帮我吗?
为了实现这一点,我像这样修改应用程序代码:
但是你知道,它不符合网络中的通信。但我无法有任何想法。
要在 OpenFlow 中丢弃数据包,您只需要一个不执行任何操作的流。因此,只需从流中删除操作,匹配流的数据包就会被丢弃。
要拥有没有操作的流程,只需创建一个空列表。
# construct action list. actions = []