Author Archives: Humair
Demonstrating Python’s String “replace” Method via the Command-line
Python’s String “replace” method returns a copy of the string in which the occurrences of the old substring are replaced with the new substring. You can optionally restrict the number of replacements to a max amount by adding another number … Continue reading
EIGRP and OSPF Redistribution on Cisco Routers
This was a quick lab I threw together which I thought was pretty cool. In this lab I use five Cisco 3725 routers [IOS 12.4(15)T10] in which I have two groups of routers each on a different subnet and running … Continue reading
Setup and Troubleshoot EIGRP
I discussed Enhanced Interior Gateway Routing Protocol (EIGRP) briefly in a prior blog, Load Balancing with EIGRP, however, in this lab I use two Cisco 3725 routers [IOS 12.4(15)T10] to demonstrate how to configure EIGRP; additionally, I’ll discuss some useful … Continue reading
Configuring PVST+ on Cisco Switches
Per VLAN Spanning Tree Plus (PVST+) is a flavor of Spanning Tree Protocol (see prior blog, Default STP Behavior on Cisco Switches) which maintains a spanning tree instance for each VLAN in the network. This means certain VLAN trunks (using … Continue reading
The Rise of the Hybrid Cloud
As many organizations move their corporate services to private clouds to cut costs, enable rapid provisioning of resources, enable advanced monitoring, and increase up-time, I believe we will see a continuous uptake of solutions which tie private cloud services and … Continue reading
Cisco – Filtering Unwanted Packets with Standard Access Lists
Access lists (ACLs) are basically statements that packets are compared against for the purpose of taking some action if a match occurs. After an access list is created, it can be applied to inbound or outbound traffic; in some cases … Continue reading
Perl – Changing the Input Line Separator and Using the “chomp” Function
In this blog I demonstrate how you can change the input line separator in Perl and use Perl’s “chomp” function. Note, the input line separator is operating system dependent; see the following prior blog of mine where I discuss this … Continue reading
Perl – Uppercase to Lowercase Conversion via the Translation Operator
Perl’s translation operator provides a way to substitute one group of characters for another. In the below script I demonstrate how easy it is to use the translation operator to convert standard input from the command prompt from uppercase letters … Continue reading