[RFE][L3][OVS] use controller (ovs-agent) send (packet-out) RA to (VMs) ports
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
neutron |
New
|
Wishlist
|
Unassigned |
Bug Description
Currently neutron l3 router will run radvd to send out RA packets about the ManagedFlag, LinkMTU and prefix of IPv6 subnet. But rememeber we have a distributed SDN controller, aka ovs-agent, which can do this work more naturally and gracefully.
Current radvd config looks like this:
interface qr-8fd65326-c4
{
AdvSendAdvert on;
MinRtrAdvInt
MaxRtrAdvInt
AdvLinkMTU 1500;
AdvManagedFlag on;
prefix fda7:a5cc:
{
AdvOnLink on;
};
};
While RYU supports Router Advertisement:
https:/
This can narrow down the burden of L3-agent management and run less process for a router.
description: | updated |
So this will have full feature parity with current solution for RA, right?