Part 2 - Configuring Frame Relay
Welcome to part 2 of this series of video labs. Continuing on from Part 1 - Configuring the Cisco 3640 Router as a Frame Relay Switch. I'll now show you how to configure frame relay on the other routers in the lab. This lab will consist of a hub router which in this case is R3 and two spokes.
The network:

Configuration Video:
To configure the routers for frame relay you must:
- Set the encapsulation type to frame-relay.
- Give the each routers interface that will be used in the frame relay network a unique IP address.
- Configure frame relay map statements.
Below is the configuration for completing this lab. You can also watch the video.
R1>enable Password: R1#configure terminal R1(config)#interface serial 0/0 R1(config-if)#ip address 172.16.1.1 255.255.255.0 R1(config-if)#encapsulation frame-relay R1(config-if)#no frame-relay inverse-arp R1(config-if)#frame-relay map ip 172.16.1.3 100 R1(config-if)#frame-relay map ip 172.16.1.2 100 R1(config-if)#no shutdown R1(config-if)#^Z R1#wr Building configuration... R3# R3#configure terminal R3(config)#interface serial 0/0 R3(config-if)#ip address 172.16.1.3 255.255.255.0 R3(config-if)#encapsulation frame-relay R3(config-if)#no frame-relay inverse-arp R3(config-if)#frame-relay map ip 172.16.1.1 300 R3(config-if)#frame-relay map ip 172.16.1.2 301 R3(config-if)#no shutdown R3(config-if)#^Z R3#wr Building configuration... R2#configure terminal R2(config)#interface serial 0/0 R2(config-if)#ip address 172.16.1.2 255.255.255.0 R2(config-if)#encapsulation frame-relay R2(config-if)#no frame-relay inverse-arp R2(config-if)#frame-relay map ip 172.16.1.3 200 R2(config-if)#frame-relay map ip 172.16.1.1 200 R2(config-if)#no shutdown R2(config-if)#^Z R2#copy run start Destination filename [startup-config]? Building configuration... [OK]
Once you've finished configuring the routers it's time to verify we have connectivity. To do this we ping from R1-R2 and R2-R3, if everything is working as it should be we will see 100% success for our tests.
R2#ping 172.16.1.3 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.1.3, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/58/60 ms R2#ping 172.16.1.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.1.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 112/115/124 ms R1#ping 172.16.1.3 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.1.3, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/57/60 ms R1#ping 172.16.1.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.1.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 112/116/124 ms R3#ping 172.16.1.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.1.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/57/60 ms R3#ping 172.16.1.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.1.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/57/60 ms




