Just another Cisco blog
Colby
Colby Glass has been in IT since 2002. He is currently a network engineer with a large Cisco partner and holds the CCNP, CCDP, CCIP, CCNA: Voice, CCNA, JNCIA-ER and ITILv3: Foundations certifications. He has also passed the CCIE R&S Written exam and is studying for the Lab exam.
Posts by Colby
HSRP Tutorial
Aug 21st
Today’s topic is HSRP (Hot Standby Routing Protocol). HSRP is a Cisco proprietary “First Hop Redundancy Protocol”. It is typically used for redundancy at the first hop from a client segment. It is used with two or more routers in a group who share a virtual IP address. One router is active at a given time and will reply to ARP requests. In this example, we have R1 and R2 in standby group 100 with a virtual IP of 192.168.100.1. This IP will be the default gateway for all hosts in VLAN 100. Here is the topology:

This is a basic topology, both R1 and R2 have connections to the internet. They are running HSRP on their FastEthernet 0/0 interfaces. Here’s the basic HSRP config:
R1(config)#interface fa0/0 R1(config-if)#ip address 192.168.100.2 255.255.255.0 R1(config-if)#standby 100 ip 192.168.100.1 R2(config)#interface fa0/0 R2(config-if)#ip address 192.168.100.3 255.255.255.0 R2(config-if)#standby 100 ip 192.168.100.1 |
Very simple so far. We use the “standby [0-255] ip [virtual ip address]” command.
Let’s verify the config:
Passed ITILv3!!!
Aug 18th
It’s finally over, haha. Now I can get back to Cisco stuff! That was a pretty tough test. The material itself wasn’t easy for me to get into, but eventually I was able to push through it and things started clicking. I feel like I learned some valuable stuff here and there, but all in all, I’m glad it’s over.
Hopefully I’ll come up with some good topics to post about soon.
IOS Macros
Aug 16th
Here’s another short (but hopefully useful) post. We’ll be going through IOS Macros.
I’ve never used IOS Macros before, but I was asked about a problem today, and a macro seems to be an ideal solution. A friend of mine is an engineer for a service provider with a very large network. He has been tasked with implementing passive interfaces as the default for OSPF across the network. Most of the devices which will be modified rely on OSPF for management connectivity. When he runs the “passive-interface default” command, he will lose connectivity before he is able to run “no passive-interface [interface]” to restore connectivity. Macros tell the router to run the predetermined commands for us, which will save us from getting locked out.
The topology is simple and not worth a diagram. R1 and R2 are connected via their FastEthernet0/0 interfaces. They are running OSPF on this interface.
Secondary IP Addresses
Jul 25th
This is going to be a short post. I feel guilty for neglecting my blog (stupid ITIL), so I’m throwing this one together real quick.
There was a thread on Tech Exams recently, the poster was trying to figure out how to connect two subnets to a single Ethernet interface on a router. This was due to changing the address scheme within his company. Here’s what it looked like:

Very simple topology. The PC is part of the new address scheme and the printer is using a static IP from the old scheme. One of the easiest solutions here is to use a secondary IP on the Fa0/0 interface of R1. Here’s how it works:
EDGE(config)#int fa0/0 EDGE(config-if)#ip add 192.168.10.1 255.255.255.0 EDGE(config-if)#ip add 10.1.1.1 255.255.255.0 secondary |
Very simple commands. Let’s verify:
interface FastEthernet0/0 ip address 10.1.1.1 255.255.255.0 secondary ip address 192.168.10.1 255.255.255.0 |
It worked, the interface now has two IPs. Now we would just configure the IPs on the hosts (or DHCP server) using the proper subnet and gateway. Once the hosts are configured, everything will work as desired.
Topic Ideas…
Jul 25th
As I explained awhile back, I’m working on the ITILv3 cert and haven’t really been digging into any Cisco/CCIE material. I’m not sure how much longer I’ll be at this ITIL stuff, but I really hate not posting. Without studying, I don’t have a ton of ideas for posts. I have one I’m doing later today on Secondary IP Addresses, but it’s short and simple.
Please post some article ideas in the comments section if you have any. Anything you guys would like to see, let me know. I can’t promise that I’ll do all of them immediately, but I will keep them on the backburner and post when I have time to throw something together or learn the topic well enough to get something decent up.
Go!
Recent Comments