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

Static Routing Beginners Lab

Written by Rene Molenaar on . Posted in Static Routing

Scenario:

You are working as a networking specialist at a company called "Networks4All". One of their customers has 2 dedicated links to connect their New York site to the Washington site. You are not allowed to use routing protocols because they are paying for every single bit that's sent on these links. You need to do use static routing to get the job done and keep the customer happy.

Goal:

  • All IP addresses are preconfigured as shown in the topology picture.
  • There is a Loopback0 interface on the Washington router: IP Address 2.2.2.2/30.
  • There is a Loopback0 interface on the New York router: IP Address 1.1.1.1/30.
  • New York: create a static route pointing to the Loopback0 network on Washington, traffic should pass the 192.168.1.0 network.
  • Washington: create a default route pointing to the Loopback0 network on New York, traffic should pass the 192.168.2.0 network. In the routing table you should see a 0.0.0.0 entry.
  • New York: create a backup static route pointing to the Loopback0 network on Washington, administrative distance should be 100.
  • Washington: change the default route so it stays in the routing table even when the interface goes down

IOS:

c3640-jk9s-mz.124-16.bin

Topology:

Static Routing Network Topology

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 (4)

  • avatar
    fahad

    thank you i'm going to try the the labs

  • avatar
    pobrejuanito

    Hi I just wanted some feed back on my config since I can't find solution to this lab:

    New York:
    interface Loopback2
    ip address 1.1.1.1 255.255.255.252

    interface Serial0/0
    ip address 192.168.1.1 255.255.255.252
    !
    interface Serial0/1
    ip address 192.168.2.1 255.255.255.252
    !
    ip route 2.2.2.0 255.255.255.252 Serial0/0
    ip route 2.2.2.0 255.255.255.252 Serial0/1 100

    routing table

    Gateway of last resort is not set

    1.0.0.0/30 is subnetted, 1 subnets
    C 1.1.1.0 is directly connected, Loopback2
    2.0.0.0/30 is subnetted, 1 subnets
    S 2.2.2.0 is directly connected, Serial0/0
    192.168.1.0/30 is subnetted, 1 subnets
    C 192.168.1.0 is directly connected, Serial0/0
    192.168.2.0/30 is subnetted, 1 subnets
    C 192.168.2.0 is directly connected, Serial0/1

    Washington:
    interface Loopback1
    ip address 2.2.2.2 255.255.255.252
    interface Serial0/0
    ip address 192.168.1.2 255.255.255.252
    !
    interface Serial0/1
    ip address 192.168.2.2 255.255.255.252
    !
    ip route 0.0.0.0 0.0.0.0 Serial0/1

    routing table:

    Gateway of last resort is 0.0.0.0 to network 0.0.0.0

    2.0.0.0/30 is subnetted, 1 subnets
    C 2.2.2.0 is directly connected, Loopback1
    192.168.1.0/30 is subnetted, 1 subnets
    C 192.168.1.0 is directly connected, Serial0/0
    192.168.2.0/30 is subnetted, 1 subnets
    C 192.168.2.0 is directly connected, Serial0/1
    S* 0.0.0.0/0 is directly connected, Serial0/1

  • avatar
    ReneMolenaar

    The config looks fine. There's one thing left you could try:

    When the interface goes down the entry will be removed from the routing tabe. If you add the "permanent" command after the static route it will stay there even if the interface goes down.

  • avatar
    YEE_HD

    this was useful for learning about static route...