On Fri, 26 Feb 2016 14:22:03 -0800, Jesse Gross wrote: > Given that VXLAN_GPE_MODE_L3 will eventually come to be used by NSH, > MPLS, etc. in addition to IPv4/v6, most of which are not really L3, it > seems like something along the lines of NO_ARP might be better since > that's what it really indicates.
I have no problem naming this differently. Not sure NO_ARP is the best name, though - this is more about absence of the L2 header in received packets than about ARP. > Once that is in, I don't really see > the need to explicitly block Ethernet packets from being handled in > this mode. If they are received, then they can just be handed off to > the stack - at that point it would look like an extra header, the same > as if an NSH packet is received. You mean returning ETH_P_TEB in skb->protocol? That's not much useful, unfortunately. You won't get such packet processed by the kernel IP stack, rendering the VXLAN-GPE device unusable outside of ovs. It would effectively became a packet sink when used standalone, as it cannot be added to bridge and received packets are not processed by anything - there's no protocol handler for ETH_P_TEB. With this patchset, you can create a VXLAN-GPE interface and use it as any other point to point interface, and it works as expected with routing etc. The distinction between Ethernet and no Ethernet is needed, the interface won't work otherwise. Jiri