No diagram today either. This is simply two routers connected together with a serial connection. I have faith that you can visualize this.
First, the way that I consider the "normal" way of configuring PPP Multilink:
interface Multilink 1
ip address 10.3.4.3 255.255.255.0
ppp multilink
ppp multilink group 1
!
interface Serial 0/1/0
encapsulation ppp
ppp multilink
ppp multilink group 1
!
Easy, simple, no problem-o. Our verification:
R3#sh ppp multilink
Multilink1
Bundle name: R4
Remote Endpoint Discriminator: [1] R4
Local Endpoint Discriminator: [1] R3
Bundle up for 00:03:12, total bandwidth 1544, load 1/255
Receive buffer limit 12000 bytes, frag timeout 1000 ms
0/0 fragments/bytes in reassembly list
0 lost fragments, 0 reordered
0/0 discarded fragments/bytes, 0 lost received
0x0 received sequence, 0x0 sent sequence
Member links: 1 active, 0 inactive (max not set, min not set)
Se0/1/0, since 00:03:12
No inactive multilink interfaces
R3#ping 10.3.4.4
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.3.4.4, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 28/28/32 ms
Now allow me to show you an alternate method.
multilink virtual-template 1
!
interface virtual-template 1
ip address 10.1.2.1 255.255.255.0
!
interface s0/1/0
encapsulation ppp
ppp multilink
!
That's right. A PPP Multilink using a Virtual-Template. Neat huh? Once again we verify:
R1#sh ppp mulI'm sure there's good reasons to use one over the other and what the real differences are, but on top they both seem to create a PPP Multilink and provide connectivity. I could really use someone that's smarter than me to throw me a bone on this one.
Virtual-Access2
Bundle name: R2
Remote Endpoint Discriminator: [1] R2
Local Endpoint Discriminator: [1] R1
Bundle up for 00:16:57, total bandwidth 1544, load 1/255
Receive buffer limit 12192 bytes, frag timeout 1000 ms
0/0 fragments/bytes in reassembly list
0 lost fragments, 0 reordered
0/0 discarded fragments/bytes, 0 lost received
0x0 received sequence, 0x0 sent sequence
Member links: 1 (max not set, min not set)
Se0/1/0, since 00:16:57
No inactive multilink interfaces
R1#ping 10.1.2.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.1.2.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 28/28/32 ms
I thank you in advance.
I have seem this same thing but using PPP over Frame-Relay
ReplyDelete'frame-relay interface-dlci 201 ppp Virtual-Template1'
http://networkdongle.wordpress.com/2010/07/23/ppp-over-frame-relay-with-ppp-multilink/
Nice example, thanks!
DeleteI'll have to configure that up and take a look at it. On first glance it looks to really be the same as the first method above but you're multilinking VT's instead of serial interfaces, and not using the VT as the multilink interface.
Shoot, I didn't realize there was 2 configs there... Very cool. I don't think my two examples above will work together... I'll have to verify that.
Delete