Jesin's Blog

Welcome to the Portal of Technology

  • Facebook
  • GitHub
  • RSS
  • Twitter
  • Home
  • Categories
    • Domains
    • Linux
    • Networking
    • PHP
    • Virtualization
    • Web Design
    • Web Servers
    • Windows
  • WordPress Plugins
    • Custom Error Pages
    • HTTP Digest Authentication
    • Mailgun Email Validator
  • Toolbox
    • DNS Lookup Tool
    • htdigest Generator Tool Online
    • htpasswd Generator Tool Online
    • HTTP Headers Lookup Tool
    • MD5 Encryption Tool
    • Open Port Check Tool
    • SHA-1 Encryption Tool
    • URL Encoding/Decoding Tool
  • About Me
  • Contact Me
  • Sitemap
Home ›
Networking ›
How to Configure a Cisco router as a Frame Relay Switch

How to Configure a Cisco router as a Frame Relay Switch

December 18, 2011 Networking Jesin A 1 Comment

networking category thumbnail

Frame relay is a WAN technology that uses packet switching methodology for communication. A frame relay switch is required for configuring a frame relay network. The previous article on Configuring Frame Relay on Cisco Packet Tracer explains it on a simulator, in this article I’ll show how a Cisco router can be used as a frame relay switch. The same hub and spoke topology is used, only the Frame Relay switch router configuration is explained here refer the previous article for the Hub router and spoke routers configuration instructions.

The Hub and Spoke network topology is shown below

frame relay-switching tutorial topology
Only the FrameRelaySwtich configuratiuon will be explained in this article

As noted above the Hub and Spoke routers are DTEs and the FrameRelaySwitch Router is DCE. The commands are as follows

FrameRelaySwitch>enable
FrameRelaySwitch#configure terminal
FrameRelaySwitch(config)#frame-relay switching

FrameRelaySwitch(config)#interface serial 0/0
FrameRelaySwitch(config-if)#encapsulation frame-relay
FrameRelaySwitch(config-if)#frame-relay intf-type dce
FrameRelaySwitch(config-if)#clock rate 56000
FrameRelaySwitch(config-if)#frame-relay route 102 interface serial 0/1 201
FrameRelaySwitch(config-if)#frame-relay route 103 interface serial 0/2 301
FrameRelaySwitch(config-if)#no shutdown
FrameRelaySwitch(config-if)#exit

FrameRelaySwitch(config)#interface serial 0/1
FrameRelaySwitch(config-if)#encapsulation frame-relay
FrameRelaySwitch(config-if)#frame-relay intf-type dce
FrameRelaySwitch(config-if)#clock rate 56000
FrameRelaySwitch(config-if)#frame-relay route 201 interface serial 0/0 102
FrameRelaySwitch(config-if)#no shutdown
FrameRelaySwitch(config-if)#exit

FrameRelaySwitch(config)#interface serial 0/2
FrameRelaySwitch(config-if)#encapsulation frame-relay
FrameRelaySwitch(config-if)#frame-relay intf-type dce
FrameRelaySwitch(config-if)#clock rate 56000
FrameRelaySwitch(config-if)#frame-relay route 301 interface serial 0/0 103
FrameRelaySwitch(config-if)#no shutdown
FrameRelaySwitch(config-if)#exit

Now check the frame relay route by typing the following command in the privilege mode

FrameRelaySwitch#show frame-relay route

The following table is displayed

Input Intf Input Dlci Output Intf Output Dlci Status
Serial0/0 102 Serial0/1 201 active
Serial0/0 103 Serial0/2 301 active
Serial0/1 201 Serial0/0 102 active
Serial0/2 301 Serial0/0 103 active

Initially the status is shown as inactive because the Hub and Spoke routers are yet to be configured, after configuration the status must be active. Configure the Hub and Spoke routers as outlined in the previous article.

Related posts:

networking category thumbnailHow to configure frame relay in Cisco Packet Tracer networking category thumbnailHow to Configure PPP in Cisco Routers networking category thumbnailConfigure Inter-VLAN routing on Cisco Router networking category thumbnailConfigure Cisco Console Password networking category thumbnailConfigure Cisco Routers and Switches for Telnet Access

Tags: cisco, frame relay

Comments

  1. Rave7337 says

    April 5, 2014 at 5:35 am

    thanks jesin, that was exactly i was looking for

    Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Get a wealth of information delivered to your inbox. Subscribe and never miss a single article.

  • Tutorials and howtos
  • Code, scripts and commands
  • Online Tools

* No spam, unsubscribe anytime

Hire Me

  • SSL installation and hardening (A+ on Qualys SSL test)
  • Apache & Nginx configuration
  • Email deliverability improvement (10/10 on Mail Tester & MailGenius)
  • WordPress customization, optimization and migration
  • and much more…

    Tools

    • DNS Lookup Tool
    • htdigest Generator Tool Online
    • htpasswd Generator Tool Online
    • HTTP Headers Lookup Tool
    • MD5 Encryption Tool
    • Open Port Check Tool
    • SHA-1 Encryption Tool
    • URL Encoding/Decoding Tool

    Nav

    • Home
    • About Me
    • Contact Me
    • Privacy Policy
    • Sitemap
    Vultr SSD VPS

    Creative Commons License
    Jesin's Blog by Jesin A is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
    Based on a work at websistent.com.