Closed qin-nz closed 8 years ago
I don't think so, but I might be misunderstanding something.
A bridge is a layer-2 device. Jool is a layer 3-4 mechanism.
Jool doesn't attach itself to an interface; it's more like it attaches itself to a namespace and only intercepts packets being forwarded through the IP stack. (We have proposals to do things differently, but I'm not sure some other paradigm will address your layer mixing.)
I think this is an approximation of what you're doing:
Would you say your packets are being forwarded through (not just receiving or being dispatched from) the IP stack?
@ydahhrk Oh, thank you.
ovs-vsctl add-port br1 veth1
will create a virtual port with a random mac address.
I can monitor the ipv6 traffic but the eth_dst is not equals to the random mac address.
I will try to set eth_dst filed now and will close the issue after I try it out.
I am using ovs as a customer edge. I try to add a virtual port using
After I make some flow entities, and config ipv6 address for it (both link-local and global). I can monitor ipv6 traffic (dst_ip is 64:ff9b::/96) on veth1 using
tcpdump
But I cannot get anything on the log (with-DDEBUG
)@Chenwh93