创建topo
user@user-VirtualBox:~$ sudo mn --topo single,2
基本操作:
dockernet>sh ovs-ofctl dump-flows s1 -->(显示规则)
dockernet>sh ovs-ofctl del-flows s1 -->(删除规则)
dockernet>sh ovs-ofctl add-flow s1 -->(新增规则)
注意
我们现在练习手动设定规则:
首先,我们在创建topo时,因为有一个controller,他会自动内定规则,使得h1、h2能够互相沟通。
这时,我们必须要先将contorller干掉,手动写入规则(删除规则后h1、h2便无法通讯了)
user@user-VirtualBox:~$ sudo ps -ef | grep controller
user@user-VirtualBox:~$ sudo kill -9 (这边写contorller的进程号)
dockernet>sh ovs-ofctl add-flow s1 in_port=1,actions=output:2
当我们新增完后,
我们可以另外开一个terminal然后输入下列指令查看当前s1的规则
user@user-VirtualBox:~$ sudo ovs-ofctl show s1
在上图中,会看到:
同理,在新增回覆的规则
dockernet>sh ovs-ofctl add-flow s1 in_port=2,actions=output:1
dockernet>xterm h1 h2
进到h1 h2
arp -n --->(查看目前有的arp)
arp -d 10.0.0.2(这里要看目前有哪一个arp的纪录,就删除哪一个,这样才方便下面做通讯的观察)
在h2:
tcpdump -i h2-eht0
在h1:
ping -c 3 10.0.0.2
从上图h2监听的过程会发现,ARP Request,ARP reply,三组ICMP(去回)的封包(因为ping -c 3),加上后面持续的ARP Request以及ARP reply,总共10个封包。
我们开启另外一个terminal来看:
其中,两个规则的n_packets皆等于5,所以刚好可以匹配上面监听的传送10个封包(双向传输,每一个方向各五个)
特别注意:在每一次实验完后,都要执行sudo mn-c 将上一个实验的规则完全清除干净,避免下面产生问题
user@user-VirtualBox:~$ sudo mn --topo single,2 --mac
dockernet> sh ovs-ofctl add-flow s1 priority=1,in_port=1,action=output:2
dockernet> sh ovs-ofctl add-flow s1 priority=2,in_port=1,action=output:1
dockernet> sh ovs-ofctl dump-flows s1
dockernet> sh ovs-ofctl add-flow s1 priority=10,ip,nw_dst=10.0.0.1,actions=output:1
dockernet>sh ovs-ofctl add-flow s1 priority=10,dl_type=0x0800,nw_dst=10.0.0.2,actions=output:2 (dl_type=0x0800 等于 ip )
dockernet>xterm h1 h2
进到h1 h2
arp -n --->(查看目前有的arp)
arp -d 10.0.0.2(这里要看目前有哪一个arp的纪录,就删除哪一个,这样才方便下面做通讯的观察)
在h2:
tcpdump -i h2-eht0
在h1:
ping -c 3 10.0.0.2
原文地址:http://blog.51cto.com/12098022/2102951