-
Notifications
You must be signed in to change notification settings - Fork 322
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
Flow based Load Balancer #495
Comments
IPRewriter, like a NAT, with something like RoundRobinIPMapper for pattern |
Hello @tbarbette thank you for your response. Sorry for the late reply. To be more precise, I would like to implement something like ECMP protocol. I don't know if this can be done with Click. Thank you! |
Remember ECMP is per-packet, so you would break flows and VNFs would see part of multiple flows, so they can't run NAT etc. But if you don't want something flow-aware, then you can simply use RoundRobinSwitch that will forward packets in a RR fashion. |
To be flow-aware, but independent of load, you have HashSwitch. Tom |
Hello Tom, Today I saw the RoundRobinSwitch element, thank you for the confirmation. So I can have:
And the inputs of the lb will be the in1 and in2 (after they passed from IPClassifier, etc..) Am I right? |
Yes, with the usual Queue etc |
Hello , I also want to create a per-packet load balancer, but it was a little difficult for me to implement it ,can you share the .click file? Thank you very much in advance. |
Hello everyone,
I want to create a flow-based load balancer.
Which elements should I use to be able to implement this functionality?
Thank you
The text was updated successfully, but these errors were encountered: