Monday, May 23, 2011

LAB: PPP over Frame Relay

Requirements:  no router may use subinterface

==============================================
100.100.100.0/24

R2
int virtual-template 1
ip address 100.100.100.2 255.255.255.0 
bandwidth  64

int s0/1/0
encapsulation frame-relay
no frame-relay inverse-arp
frame-relay interface-dlci 204 ppp virtual-template 1
frame-relay interface-dlci 205 ppp virtual-template 1
frame-relay interface-dlci 206 ppp virtual-template 1

R4
int virtual-template 1
ip address 100.100.100.4 255.255.255.0 
bandwidth  64

int s0/0/0
encapsulation frame-relay
no frame-relay inverse-arp
frame-relay interface-dlci 402 ppp virtual-template 1

R5
int virtual-template 1
ip address 100.100.100.5 255.255.255.0
bandwidth  64

int s0/1/0
encapsulation frame-relay
no frame-relay inverse-arp
frame-relay interface-dlci 502 ppp virtual-template 1

R6
int virtual-template 1
ip address 100.100.100.6 255.255.255.0
bandwidth  64

int s0/1/0
encapsulation frame-relay
no frame-relay inverse-arp
frame-relay interface-dlci 602 ppp virtual-template 1

note:
- virtual access interface nos. issuing shut/no shut it will not assume always the same nos of virtual access interface.
- show ip route - will show /32 for virtual access. so might create problem on some dynamic routing.


==============================================
100.100.110.0/24


R2
int virtual-template2
ip address 100.100.110.2 255.255.255.0 
bandwidth  64

int s0/1/0
encapsulation frame-relay
no frame-relay inverse-arp
frame-relay interface-dlci 215 ppp virtual-template 2
frame-relay interface-dlci 216 ppp virtual-template 2


R5
int virtual-template 2
ip address 100.100.110.5 255.255.255.0
bandwidth  64

int s0/1/0
ip address 100.100.100.5 255.255.255.0
frame-relay interface-dlci 512 ppp virtual-template 2

R6
int virtual-template2
ip address 100.100.110.6 255.255.255.0

int s0/1/0
encapsulation frame-relay
no frame-relay inverse-arp
frame-relay interface-dlci 612 ppp virtual-template 2

verification
show int virtual access 2 - information inherited shows 100M link from virtual template
need to update the BW at virtual template

==============================================
100.100.120.0/24 128K 2 pvcs are active using 64k
note: there will be no load sharing / you can use multilink.

R2
int virtual-template 3
ip address 100.100.120.2 255.255.255.0 
bandwidth  64  
ppp multilink

int s0/1/0
encapsulation frame-relay
no frame-relay inverse-arp
frame-relay interface-dlci 224 ppp virtual-template 3
frame-relay interface-dlci 214 ppp virtual-template 3


R4
int virtual-template 3
ip address 100.100.120.4 255.255.255.0 
bandwidth  64  
ppp multilink

int s0/0/0
encapsulation frame-relay
no frame-relay inverse-arp
frame-relay interface-dlci 412 ppp virtual-template 3
frame-relay interface-dlci 422 ppp virtual-template 3


verification:

show ip route - there will one single set of /32 virutal access #
show int virtual-access # - will show only inherited 64k from virtual-template
show ppp multilink  - will show 2 member w total of 128K (definitive answer)

No comments:

Post a Comment