Mininet中文使用教程(7)
发布时间:2021-06-08
发布时间:2021-06-08
Mininet中文使用教程
mininet中的命令语法如上所示。host1 command host2。
在 Wireshark 中可以看到 OpenFlow 的控制流量,可以看到h1 ARPs h2的 mac,并将一个 packet_in发送到 c0,然后c0发送packet_out消息流广播到交换机(在本例中,唯一的其他数据端口)。第二个主机接受到的ARP请求,并发送一个广播答复。此回复进到控制器,该控制器将其发送到h1并且 pushes down a flow entry。
现在第一主机知道的第二个IP
地址,并且可以通过ICMP ping 来回显请求。这个请求,连同其从第二主机对应的应答,both go the controller and result in a flow entry pushed down (along with the actual packets getting sent out).
重复前一条命令:
这次 ping 的时间将比第一次低的多,
A flow entry covering ICMP ping traffic was previously installed in the switch, so no control traffic was generated, and the packets immediately pass through the switch.
使用pingall命令可以让每一个节点直接都产生上面的效果。
Run a simple web server and client