Jared Heinrichs

  • Technology Blog
  • Winnipeg Computer Repair
  • Winnipeg Photographer
  • Cooking With Jared
You are here: Home / 2014 / Archives for March 2014

Archives for March 2014

Mar 29, 2014 By Jared Heinrichs Leave a Comment

Multi-Area OSPF network Lab

image

Here’s a Packet Tracer 6 lab I created that tests a bunch of things outside just OSPF. Keep in mind that all the 1941 routers use the HWIC-4ESW to provide four switching ports. It’s important to remember that this is really just a switch attached to the router. You will have to find a way of routing traffic off the switch to the rest of the network.

You will need to be able to ping the router’s “router-id” from anywhere on the network.

I’ve included a picture what the 1941 routers physically look like:

image

Just for good measure here is the backbone router. I needed to add a NM-2FE2W Module. It provided me with two Fast-Ethernet interfaces which allowed me to have up to 4 connections on each backbone router.

image

Here’s the OSPF-Multi-area lab with Before and After Example. I’ve also included all the commands I put into the routers.

Filed Under: Cisco Certification

Mar 25, 2014 By Jared Heinrichs Leave a Comment

Cisco – IP routing not enabled error on Layer 3 switch

The first time I worked on a layer 3 switch I went to go an configure OSPF on the layer 3 switch or also called a “swouter”.

When I ran “router ospf 1” then command line spit back this error: “IP routing not enabled”.  You can see the screenshot below of the error:

image

It turns out that Layer 3 switches need to have routing enabled because it is disabled by default! But what is the command to enable routing on the layer 3 switch?

The command is:

ip routing

Yes. That’s all it takes to enable routing on the layer 3 switch! Once you have done that you should be able to finish setting up OSPF or any other routing protocol you wish!

In packet tracer the layer 3 switch I used was a “3560-24PS”.

Here’s an example of a layer 3 switch being setup:

  • en
  • conf t
  • ip routing
  • host 4.4.4.4
  • !
  • int lo0
  • ip address 4.4.4.4 255.255.255.255
  • no shut
  • !
  • int vlan1
  • ip address 192.168.2.2 255.255.255.252
  • no shut
  • !
  • int vlan30
  • ip address 192.168.30.1 255.255.255.0
  • no shut
  • !
  • int vlan40
  • ip addres 192.168.40.1 255.255.255.0
  • no shut
  • !
  • int fa0/1
  • switchport access vlan 30
  • !
  • int fa0/2
  • switchport access vlan 40
  • !
  • int gig0/1
  • switchport access vlan 1
  • !
  • exit
  • !
  • router ospf 1
  • router-id 4.4.4.4
  • !
  • network 4.4.4.4       0.0.0.0 area 2
  • network 192.168.2.2   0.0.0.0 area 2
  • network 192.168.30.1  0.0.0.0 area 2
  • network 192.168.40.1  0.0.0.0 area 2\
  • end
  • wr
  • !

Filed Under: Cisco Certification

Mar 11, 2014 By Jared Heinrichs Leave a Comment

CCNA – How to combine routing protocols on a network

While most businesses will tend to pick one routing protocol and stick with it, sometimes through mergers or collaborations with other companies you might need to use multiple protocols on a network.

When I first started out I thought that if a router obtained a bunch of routes from OSPF. any RIP peers would “auto-magically” learn of those learned routes by comparing it’s routing table and it’s RIP/OSPF database.

This is not the case. In order for the router to share it’s learned routes with a neighbor that uses a different routing protocol, you will need to use the “redistribute” command to allow it to share those learned routes.

Let’s look at an example BEFORE we use the redistribute command:

combining-routing-protocols-001

Here is the config for the routers:

ROUTER0

  • en
  • conf t
  • host router0
  • int gig0/0
  • ip address 172.10.10.1 255.255.255.252
  • no shut
  • int gig0/1
  • ip address 192.168.0.254 255.255.255.0
  • no shut
  • int se0/0/0
  • ip address 172.10.10.13 255.255.255.252
  • no shut
  • exit
  • router ospf 1
  • network 192.168.0.0  0.0.0.255 area 0
  • network 172.10.10.0  0.0.0.3   area 0
  • network 172.10.10.12 0.0.0.3   area 0

ROUTER1

  • en
  • conf t
  • host router1
  • int gig0/0
  • ip address 172.10.10.2 255.255.255.252
  • no shut
  • int gig0/1
  • ip address 172.10.10.5 255.255.255.252
  • no shut
  • int vlan01
  • ip address 192.168.1.254 255.255.255.0
  • no shut
  • int fa0/0/0
  • no shut
  • exit
  • router ospf 1
  • network 192.168.1.0  0.0.0.255 area 0
  • network 172.10.10.0  0.0.0.3   area 0
  • network 172.10.10.4  0.0.0.3   area 0

ROUTER2

  • en
  • conf t
  • host router2
  • int gig0/0
  • ip address 172.10.10.6 255.255.255.252
  • no shut
  • int gig0/1
  • ip address 192.168.2.254 255.255.255.0
  • no shut
  • int se0/0/0
  • ip address 172.10.10.14 255.255.255.252
  • no shut
  • int fa0/1/0
  • no shut
  • int vlan1
  • ip address 172.10.10.9 255.255.255.252
  • no shut
  • exit
  • router ospf 1
  • network 172.10.10.4  0.0.0.3   area 0
  • network 172.10.10.12 0.0.0.3   area 0
  • network 192.168.2.0  0.0.0.255 area 0
  • exit
  • router rip
  • version 2
  • no auto-summary
  • network 172.10.10.8

ROUTER3

  • en
  • conf t
  • host router3
  • int gig0/0
  • ip address 172.10.10.10 255.255.255.252
  • no shut
  • int gig0/1
  • ip address 192.168.3.254 255.255.255.0
  • no shut
  • exit
  • router rip
  • version 2
  • no auto-summary
  • network 172.10.10.8
  • network 192.168.3.0

What do the routing tables look like on Router2 and Router3?

combining-routing-protocols-router2-002

combining-routing-protocols-router3-003

Notice only networks that were added with RIP are showing up. All the learned OSPF networks are not relayed.

Let’s relay those routes to “router3”. On Router2 we will type these commands in:

combining-routing-protocols-router2-004

Next we will go over to “router3” to see if the OSPF learned routes on “router2” have been transferred over.

combining-routing-protocols-router3-005

Voila! Everything looks like it working the way we wanted!

Here’s the Before and After Packet Tracer config: CCNA – How to combine routing protocols on a network

Filed Under: Cisco Certification

Categories

  • Board Game Rules
  • Camera
  • Computer Hardware
    • Blackberry
    • drivers
    • iPad
    • Magic Jack
    • USB
  • Damn Small Linux
  • Exam Notes
  • Facebook
  • FREE Flashcards
  • Games
    • PC
      • League of Legends
    • Wii
    • xbox 360
  • Music
  • Networking
    • Cisco Certification
    • Mitel
    • Palo Alto Firewall
  • News
    • Google
    • Microsoft
  • Operating System
    • Active Directory (2003)
    • Android
    • Command Prompt
    • Damn Small Linux
    • Group Policy
    • Hyper-V
    • IIS
    • ISA 2006
    • Mac OS X
    • Microsoft Exchange Server
    • Powershell
    • Security
    • SME Server
    • Terminal Server 2003
    • Ubuntu Linux
      • Adito Web SSL VPN
      • OpenVpn-als
      • Webmin
    • Virtual Machine Manager
    • Windows 2003 SBS
    • Windows 2003 Server
    • Windows 2008
    • Windows 2008 R2
    • Windows 2012R2
    • Windows 7
    • Windows 8
    • Windows Command Line
    • Windows Deployment Services
    • Windows Server Backup
    • Windows Vista
    • Windows XP
  • Phones
  • Photography
  • Photos
    • Animals
    • Misc
    • Nature
    • Portraits
  • Portfolio
  • Programming
    • CSS
    • HTML
    • jQuery
    • MySQL
    • PHP
    • Script
  • Programs
    • Acrobat
    • Acrobat Reader
    • Adobe Dreamweaver
    • Adobe Illustrator
    • Adobe Photoshop
    • Anti-virus Software
    • Antivirus
    • Backup Exec
    • Bittorent
    • Blackberry BESADMIN
    • Internet Explorer 9
    • Lightroom
    • Microsoft Office
    • Netbeans
    • Onenote
    • Outlook
    • Shelby
    • Sysprep
    • Trend
    • Video Editing
    • Visual Studio
    • Windows Live Writer
    • WireShark
    • XP Mode
    • Zarafa
  • Recipe
  • Review
  • Software Links
  • Troubleshooting
  • Uncategorized
  • Videos
  • Web Applications
    • Brage
    • Google
    • Spiceworks
    • Wordpress
  • Web Browsers
    • Internet Explorer
  • Web Server
    • XAMPP
  • Winnipeg
    • ISP

Try searching this site!

Copyright © 2021 Winnipeg Web Design