Frame Relay Configuration Practice
Frame Relay Configuration Practice
Learning Objectives
Change the Frame Relay encapsulation type from the Cisco default to IETF.
Change the Frame Relay LMI type from Cisco to ANSI.
Configure a Frame Relay subinterface.
Scenario: In this lab, you will learn how to configure Frame Relay encapsulation on serial
links using the network shown in the topology diagram. You will also learn how to configure a
router as a Frame Relay switch. There are both Cisco standards and Open standards that apply to
Frame Relay. You will learn both. Pay special attention in the lab section in which you
intentionally break the Frame Relay configurations. This will help you in the Troubleshooting
lab associated with this chapter.
Step 1: Cable a network that is similar to the one in the topology diagram.
Configure the R1 and R2 routers and the S1 switch according to the following guidelines:
#conf t
#no ip domain-lookup
#line console 0
#logging sync
#password cisco
2
National Polytechnic Institute of Cambodia WAN Technology
#login
#line vty 0 4
#password cisco
#login
#end
#conf t
#hostname [S1]
#no ip domain-lookup
#line console 0
#password cisco
#login
#line vty 0 15
#password cisco
#login
#end
R1
#int s0/1
#shutdown
#int f0/0
#no shutdown
3
National Polytechnic Institute of Cambodia WAN Technology
#router eigrp 1
#no auto-summary
#network 10.0.0.0
#network 192.168.10.0
R2
#int s0/1
#shutdown
#int loopback 0
#no auto-summary
#network 10.0.0.0
#network 209.165.200.0
You will now set up a basic point-to-point Frame Relay connection between R1 and R2. You first need
to configure FR Switch as a Frame Relay switch and create DLCLs.
Step 1: Configure FR Switch as a Frame Relay switch and create a PVC between R1 and R2.
FR-Switch(config)#frame-relay switching
FR-Switch(config)#int s0/0
FR-Switch(config-if)#encapsulation frame-relay
FR-Switch(config-if)#no shutdown
FR-Switch(config-if)#int s0/1
FR-Switch(config-if)#encapsulation frame-relay
FR-Switch(config-if)#no shutdown
Inverse ARP allows distant ends of a Frame Relay link to dynamically discover each other and provides
a dynamic method of mapping IP addresses to DLCIs. Although Inverse ARP is useful, it is not always reliable.
The best practice is to statically map IP addresses to DLCIs and to disable inverse-arp.
R1(config)#int s0/1
R1(config-if)#encapsulation frame-relay
R1(config-if)#no shutdown
R2(config)#int s0/1
R2(config-if)#encapsulation frame-relay
R2(config-if)#no shutdown
R1#show ip route
R2#show ip route
You should now be able to ping from R1 to R2. It may take several seconds after bringing up the
interfaces for the PVC to become active. You can also see EIGRP routes for each router.
5
National Polytechnic Institute of Cambodia WAN Technology
R1#ping 10.1.1.2
R2#ping 10.1.1.1
The show frame-relay pvc command displays information on all PVCs configured on the router. The
output also includes the associated DLCI.
The show frame-relay map command displays information on the static and dynamic mappings of Layer
3 addresses to DLCIs. Because inverse ARP has been turned off, there are only static maps.
Issue the debug frame-relay lmi command. The output gives detailed information on all LMI data.
Keepalives are sent every 10 seconds, so you may have to wait until you see any output.
The debug output shows two LMI packets: the first outgoing, the second incoming.
R1#undebug all
A variety of tools are available for troubleshooting Frame Relay connectivity issues. To learn about
troubleshooting, you will break the Frame Relay connection established earlier and then re-establish it.
R1#conf t
R1(config)#int s0/1
R1(config-if)#encapsulation frame-relay
6
National Polytechnic Institute of Cambodia WAN Technology
R2#ping 10.1.1.1
R1#debug ip icmp
R2#ping 10.1.1.1
R1#undebug all
R1#conf t
R1(config)#int s0/1
R1(config-if)#encapsulation frame-relay
R2#ping 10.1.1.1
Replace the Frame Relay map statement and include the broadcast keyword this time. Verify that the full
routing table is restored and that you have full end-to-end connectivity.
R1#conf t
R1(config)#int s0/1
R1(config-if)#encapsulation frame-relay
R1#show ip route
Cisco IOS software supports two types of Frame Relay encapsulation: the default Cisco encapsulation
and the standards-based IETF encapsulation. Change the Frame Relay encapsulation on serial0/1 on R2 to
IETF.
R2(config-if)#encapsulation frame-relay
7
National Polytechnic Institute of Cambodia WAN Technology
R2#conf t
R2(config)#int s0/1
R2(config-if)#encapsulation frame-relay
Frame Relay supports two types of sub-interfaces: point-to-point and point-to-multipoint. Point-to-multipoint
sub-interfaces support non-broadcast multi-access topologies. For examples, a hub and spoke topology would
use a point-to-multipoint sub-interface. In this lab, you will create a point-to-point sub-interface.
FR-Switch(config)#int s0/0
FR-Switch(config-if)#int s0/1
Create subinterface 112 as a point-to-point interface. Frame Relay encapsulation must be specified on the
physical interfaces can be created.
R1#ping 10.1.1.6
R2#ping 10.1.1.5
You can also verify the configuration using the show frame-relay pvc and show frame-relay map commands in
Task 4.
Note that two DLCIs are listed in the LMI message from FR Switch to R1.
Final Configuration
R1#show run
R2#show run
FR-Switch#show run