Master CCNA

How to Master CCNA Ebook

 

 

My book will help you Master CCNA

Master CCNP SWITCH

How to master CCNP SWITCH ebook

 

 

My book will help you Master CCNP SWITCH

Master CCNP ROUTE

How to master CCNP ROUTE Ebook

 

 

My book will help you Master CCNP ROUTE

Print

Frame Relay Point to Point Subinterface

Written by Rene Molenaar on . Posted in Frame Relay

Scenario

Most toons from the fairy tale forest have switched their career to become network engineers. Cinderella has been trying to reach Hansel and Gretel through the frame relay network but hasn't had any luck. Think you can take this dance?

Goal:

  • Configure all routers to use frame-relay encapsulation.
  • Configure the IP addresses as specified in the topology picture on point-to-point subinterfaces.
  • Ensure you can ping both routers from router Cinderella.

IOS:

c3640-jk9s-mz.124-16.bin

Topology:

Frame Relay Point to Point Subinterface

Video Solution:

You need to a flashplayer enabled browser to view this YouTube video

You need to register to download the GNS3 Topology File. (Registration is Free!)

Only registered users can write comments!

Comments (2)

  • avatar
    jlashari

    Here is my config

    Cinderella
    interface Serial0/0
    no ip address
    encapsulation frame-relay
    serial restart-delay 0
    !
    interface Serial0/0.1 point-to-point
    ip address 192.168.12.1 255.255.255.0
    frame-relay interface-dlci 102
    !
    interface Serial0/0.2 point-to-point
    ip address 192.168.13.1 255.255.255.0
    frame-relay interface-dlci 103


    Serial0/0.2 (up): point-to-point dlci, dlci 103(0x67,0x1870), broadcast
    status defined, active
    Serial0/0.1 (up): point-to-point dlci, dlci 102(0x66,0x1860), broadcast
    status defined, active


    Gretel

    interface Serial0/0
    no ip address
    encapsulation frame-relay
    serial restart-delay 0
    !
    interface Serial0/0.1 point-to-point
    ip address 192.168.13.3 255.255.255.0
    frame-relay interface-dlci 301


    Hansel

    interface Serial0/0
    no ip address
    encapsulation frame-relay
    serial restart-delay 0
    !
    interface Serial0/0.1 point-to-point
    ip address 192.168.12.2 255.255.255.0
    frame-relay interface-dlci 201
    !