-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Data plane VXLAN HLD - initial version #1
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
vxlan coments
In small-scale datacenters, to reduce costs instead of BGP deployement, L3 forwarding could be based, either, on static configuration or usage of simpler protocol (such as OSPF or IS-IS). | ||
|
||
Thus, in these cases, pure Layer2 VNI provides simple, flexible and cost-efficient solution. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
controller base vxlan network – supported by cisco / vmware
edge data centers
leaf vni { | ||
mandatory true; | ||
type stypes:vnid_type; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this mean per leaf and map one remove vtep ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it is either this or list of vni's per remote VTEP
|
||
VXLAN_REMOTE_VTEP_TABLE|{{remote_vtep_name}} | ||
"src_ip" : {{ipv4_address}} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this can be refered as rempte ip ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you mean change the name from "src_ip" to "remote_ip" ? Done
In the current implementation P2MP tunnel creation flow exist with the exception of a bridgeport not created for P2MP tunnel. To support using P2MP tunnel for L2 purposes a bridge port is created for the P2MP tunnel object. | ||
|
||
* Can/should it be supported in case of data plane tunnel ? | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please explain the npon creating brg port , i think i does create on tunnel termination
if we support p2mp it means that user must configure every mac statically so i dont think this is needed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Brigdeport explanation is taken from old HLD by mistake.
I rephrased the section, please changed text.
No description provided.