WAN Lab 2 Configuring Frame Relay
WAN Lab 2 Configuring Frame Relay
WAN Lab 2 Configuring Frame Relay
Topology
Addressing Table
Objectives
Part 1: Build the Network and Configure Basic Device Settings
Part 2: Configure a Frame Relay Switch
Part 3: Configure Basic Frame Relay
Page 1 of 8
Lab – Configuring Frame Relay
Background / Scenario
Frame Relay is a high-performance WAN protocol that operates at the physical and data link layers of the OSI
reference model. Unlike leased lines, Frame Relay requires only a single access circuit to the Frame Relay
provider to communicate with multiple sites that are connected to the same provider.
Frame Relay was one of the most extensively used WAN protocols, primarily because it was relatively
inexpensive compared to dedicated lines. In addition, configuring user equipment in a Frame Relay network is
fairly simple. With the advent of broadband services such as DSL and cable modem, GigaMAN (point-to-point
Ethernet service over fiber-optic cable), VPN, and Multiprotocol Label Switching (MPLS), Frame Relay has
become a less desirable solution for accessing the WAN. However, some rural areas do not have access to
these alternative solutions and still rely on Frame Relay for connectivity to the WAN.
In this lab, you will configure Frame Relay encapsulation on serial links. You will also configure a router to
simulate a Frame Relay switch.
Note: Make sure that the routers have been erased and have no startup configurations. If you are unsure,
contact your instructor.
R1(config)#interface g0/0
R1(config-if)#ip address 192.168.1.1 255.255.255.0
R1(config-if)#no shutdown
R1(config-if)#exit
FR(config)#interface s0/0/0
FR(config-if)#ip address 10.1.1.2 255.255.255.252
FR(config-if)#no shutdown
FR(config-if)#exit
FR(config)#interface s0/0/1
FR(config-if)#ip address 10.2.2.2 255.255.255.252
FR(config-if)#no shutdown
FR(config-if)# clock rate 128000
FR(config-if)#exit
R3(config)#interface s0/0/1
R3(config-if)#ip address 10.2.2.1 255.255.255.252
R3(config-if)#no shutdown
R3(config-if)#exit
R3(config)#interface g0/0
R3(config-if)#ip address 192.168.3.1 255.255.255.0
R3(config-if)#no shutdown
R3(config-if)#exit
DLCI = 103, DLCI USAGE = SWITCHED, PVC STATUS = INACTIVE, INTERFACE = Serial0/0/0
DLCI = 301, DLCI USAGE = SWITCHED, PVC STATUS = INACTIVE, INTERFACE = Serial0/0/1
b. Issue the show frame-relay route command. This is the Layer 2 route that Frame Relay traffic takes
through the network. (Do not confuse this with Layer 3 IP routing.)
FR# show frame-relay route
Input Intf Input Dlci Output Intf Output Dlci Status
Serial0/0/0 103 Serial0/0/1 301 inactive
Serial0/0/1 301 Serial0/0/0 103 inactive
c. Issue the show frame-relay pvc command to display PVC status information on R1 and R3.
R1# show frame-relay pvc
DLCI = 103, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0/0/0
DLCI = 301, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0/0/1
d. Issue the show frame-relay route command on FR to verify that status of the Frame Relay map
statements.
FR# show frame-relay route
Input Intf Input Dlci Output Intf Output Dlci Status
Serial0/0/0 103 Serial0/0/1 301 active
Serial0/0/1 301 Serial0/0/0 103 active
Reflection
1. What is a PVC and how is it used?
A PVC is a permanent virtual circuit. This is a Layer 2 connection created between endpoints through
a Frame Relay cloud. There can be multiple PVCs per physical interface, allowing multiple point-to-
point connections or point-to-multipoint connection.
2. What is the purpose of a DLCI?
DTE device will identify VC from DLCI number. Whatever number (usually 17 to 1000) we use here, we
must have to use the same number at DTE. DLCI number must be unique for a frame relay interface.
3. What purpose does the Local Management Interface (LMI) serve in a Frame Relay network?
The LMI is a signaling protocol that exchanges information between a router and a Frame Relay
switch. The LMI exchanges information on keepalives, PVC status (active, inactive, deleted, unused),
and IP addresses (when Inverse ARP is enabled). This information is used as a status mechanism
between the router (DTE) and the Frame Relay switch (DCE).
Router Model Ethernet Interface #1 Ethernet Interface #2 Serial Interface #1 Serial Interface #2
1800 Fast Ethernet 0/0 Fast Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(F0/0) (F0/1)
1900 Gigabit Ethernet 0/0 Gigabit Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(G0/0) (G0/1)
2801 Fast Ethernet 0/0 Fast Ethernet 0/1 Serial 0/1/0 (S0/1/0) Serial 0/1/1 (S0/1/1)
(F0/0) (F0/1)
2811 Fast Ethernet 0/0 Fast Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(F0/0) (F0/1)
2900 Gigabit Ethernet 0/0 Gigabit Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(G0/0) (G0/1)
Note: To find out how the router is configured, look at the interfaces to identify the type of router and how many
interfaces the router has. There is no way to effectively list all the combinations of configurations for each router
class. This table includes identifiers for the possible combinations of Ethernet and Serial interfaces in the device.
The table does not include any other type of interface, even though a specific router may contain one. An
example of this might be an ISDN BRI interface. The string in parenthesis is the legal abbreviation that can be
used in Cisco IOS commands to represent the interface.