- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2022
10:33 AM
- last edited on
04-11-2022
08:47 AM
by
Translator
This is a QoS lab
R4(config)#interface serial 1/1
R4(config-if)#encapsulation ppp
R4(config-if)#ppp multilink
R4(config-if)#ppp multilink group 1
R4(config-if)#bandwidth 64
R4(config-if)#no shutdown
R4(config)#interface serial 1/2
R4(config-if)#encapsulation ppp
R4(config-if)#ppp multilink
R4(config-if)#ppp multilink group 1
R4(config-if)#bandwidth 64
R4(config-if)#no shutdown
they're creating PPP betweent TrafGen and R3
I understand the author wants to vundle the links
In this scenario is there a different way other than PPP to bundle the links? If so what's the typical reason of using PPP over the two?
Thanks
Solved! Go to Solution.
- Labels:
-
Other Routing
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2022 11:08 AM
Considering this is a Lab, they might be testing or teaching fundamentals on how to bond two links. But, today exist much more updated technologies like SDWAN for example.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2022 10:46 AM - edited 04-08-2022 11:39 AM
Double BW if you use two ppp config with ppp multilink.
This lab for QoS lab and core for QoS is BW and how we can increase and handle traffic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2022 11:08 AM
Considering this is a Lab, they might be testing or teaching fundamentals on how to bond two links. But, today exist much more updated technologies like SDWAN for example.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2022 03:18 PM - edited 04-14-2022 03:19 PM
"In this scenario is there a different way other than PPP to bundle the links?"
As an actual bundle of two serial links, I don't recall there being much if any other choice(s) beyond, as you have routers, using two routed links and doing packet by packet load sharing (the latter, packet by packet, is usually highly recommended NOT to use).
"If so what's the typical reason of using PPP over the two?"
PPS will load balance packets across multiple links, providing, often, a very equal physical load average on each link. It will further insure, far side doesn't re-order a packet flow's sequence of packets (unlike routing packet by packet [why it's NOT recommended]).
You might also do "ordinary" multiple link routing, but then, your link usage, as least short term, isn't well balanced. For example, a single flow will only use just one link (PPP will balance across all links). Multiple flows, may, or may not, use multiple links.
The big disadvantage of PPP, is the additional overhead it introduces, both for link bandwidth, and/or CPU consumption on both routers on both sides of the PPP links. (Typically, as classical serial links are "slow", i.e. low bandwidth, getting the most effective bandwidth from them was a great trade for the resource consumption of PPP. As serial links have been, now a days, often, replaced by much faster, i.e. higher bandwidth, links, "ordinary" routing is often used now, or "ordinary" routing is done directed by something like PfR which moves multiple flows about to load balance your links. [PfR, though, I recall, will still not redirect a single flow across multiple links as would PPP.})
