我正在尝试制作 mininet 拓扑 L3 OVS OF13,例如:
sudo mn --controller=remote,ip=127.0.0.1 --topo linear,2 --switch ovsk,protocols=OpenFlow13
- H1:IP 10.0.0.1/24
- H2:IP 10.0.1.1/24
添加路线:
- h1 路由添加默认 gw 10.0.0.254
- h2路由添加默认gw 10.0.1.254
我添加了以下流程:
- sh ovs-ofctl add-flow -OOpenflow13 s1 优先级=500,dl_type=0x800,nw_src=10.0.0.0/24,nw_dst=10.0.1.0/24,actions=normal
- sh ovs-ofctl add-flow -OOpenflow13 s2 优先级=500,dl_type=0x800,nw_src=10.0.1.0/24,nw_dst=10.0.0.0/24,actions=normal
- sh ovs-ofctl add-flow -OOpenflow13 s1 arp,nw_dst=10.0.0.1,actions=ouput:1
- sh ovs-ofctl add-flow -OOpenflow13 s2 arp,nw_dst=10.0.1.1,actions=ouput:1
在接口 s1-eth1 IP 10.0.0.254 和接口 s2-eth1 IP 10.0.1.254 中。我确实 ping 以查看连接,但我总是无法访问目标主机 谁能帮我谢谢..