I build a custom mininet topology: 2 hosts with 2 switches between them:
Host1====Switch1====Switch2====Host2
After filling the flowtables with ONOS, the setup works fine. But I have trouble with handling packets that are forwarded to the SDN-Controller.
As controller I use my own onos-app.
I tried some pinging and sniffed the interfaces with tcpdump. When one host pings the other host, the host sends an arp request. This request reaches the other host and it replies. Even the reply reaches correct the ping-host. But then... Nothing happens. I would expect the first host to send the ping after he had received the correct arp reply. But instead it does absolutely nothing. This even doesn't work using only one switch.
Why does the ping itself doesn't start? Have you any idea what I did wrong? Thank you.