<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>BenchAddix &#187; cisco</title>
	<atom:link href="http://benchaddix.com/tag/cisco/feed/" rel="self" type="application/rss+xml" />
	<link>http://benchaddix.com</link>
	<description>Resource for IT Professionals</description>
	<lastBuildDate>Sat, 04 Feb 2012 17:58:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>PacketLife.net Community Cisco Lab</title>
		<link>http://benchaddix.com/2012/02/04/packetlife-net-community-cisco-lab/</link>
		<comments>http://benchaddix.com/2012/02/04/packetlife-net-community-cisco-lab/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 17:57:00 +0000</pubDate>
		<dc:creator>Nerm</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[lab]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[packet]]></category>

		<guid isPermaLink="false">http://benchaddix.com/?p=213</guid>
		<description><![CDATA[If you are on a tight budget and can&#8217;t afford to build your own Cisco lab then head over to PacketLife.net. They have a community Cisco lab that is free. All you have to do is register for a free account, schedule an open time slot, and get to playing. Whether your are studying for [...]]]></description>
			<content:encoded><![CDATA[<p>If you are on a tight budget and can&#8217;t afford to build your own Cisco lab then head over to <a href="http://packetlife.net/lab" target="_blank">PacketLife.net</a>. They have a community Cisco lab that is free. All you have to do is register for a free account, schedule an open time slot, and get to playing. Whether your are studying for your CCNA or just want to do some pre-project simulation this site is very useful. </p>
<p>Here is a list of their currently available lab hardware:</p>
<ul>
Block A</p>
<li>1x Cisco 2811 (with 2x WIC-2T)</li>
<li>2x Cisco 1841 (with 1x WIC-2T)</li>
<li>1x Cisco Catalyst 3560-24</li>
<li>1x Cisco Catalyst 3550-24 (with Inline Power)</li>
<li>1x Cisco ASA 5505</li>
</ul>
<ul>
Block B</p>
<li>1x Cisco 2811 (with 2x WIC-2T)</li>
<li>2x Cisco 1841 (with 1x WIC-2T)</li>
<li>1x Cisco Catalyst 3560G-24 (with IEEE 802.3af PoE)</li>
<li>1x Cisco Catalyst 3550-24</li>
<li>1x Cisco ASA 5505</li>
<li>1x Cisco Aironet 1232AG</li>
</ul>
<ul>
Block C</p>
<li>1x Force10 S25N</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://benchaddix.com/2012/02/04/packetlife-net-community-cisco-lab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring DHCP relay in Cisco IOS</title>
		<link>http://benchaddix.com/2012/01/27/configuring-dhcp-relay-in-cisco-ios/</link>
		<comments>http://benchaddix.com/2012/01/27/configuring-dhcp-relay-in-cisco-ios/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 02:19:25 +0000</pubDate>
		<dc:creator>Nerm</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[dhcp]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[relay]]></category>

		<guid isPermaLink="false">http://benchaddix.com/?p=176</guid>
		<description><![CDATA[There are times when you don&#8217;t want to use the routers built in DHCP server and want to use say a Windows Server to hand out your networks DHCP scopes. This guide is for basic DHCP relay configuration in Cisco IOS. In this example we are going to be configuring the &#8220;ip helper&#8221; command on [...]]]></description>
			<content:encoded><![CDATA[<p>There are times when you don&#8217;t want to use the routers built in DHCP server and want to use say a Windows Server to hand out your networks DHCP scopes. This guide is for basic DHCP relay configuration in Cisco IOS.</p>
<p>In this example we are going to be configuring the &#8220;ip helper&#8221; command on interface FastEthernet0/1. Our IP for the interface will be 10.10.20.1/24 and the IP of our DHCP server will be 10.10.10.5/24.</p>
<p>After you have accessed the command line of the router the first thing you will need to do is get into configuration mode by issuing the following command:</p>
<blockquote><p>conf t</p></blockquote>
<p>&nbsp;</p>
<p>The DHCP server and relay agent should be enabled by default, however if for some reason they are not already enabled they can be enabled by issuing the following command:</p>
<blockquote><p>service dhcp</p></blockquote>
<p>&nbsp;</p>
<p>Next we will want to enable the DHCP relay agent information option:</p>
<blockquote><p>ip dhcp relay information option</p></blockquote>
<p>&nbsp;</p>
<p>Now we need to configure the actual interface via the following commands:</p>
<blockquote><p>interface fastethernet0/1<br />
ip address 10.10.20.1 255.255.255.0<br />
ip helper-address 10.10.10.5<br />
no shut</p></blockquote>
<p>&nbsp;</p>
<p>We now have a working DHCP relay pointing to our Windows DHCP Server for clients that connect to interface FastEthernet0/1. There are tons more ways to utilize and configure this functionality. For example you could assign &#8220;ip helper&#8221; to sub-interfaces for vlans. We will dive into the more advanced functionality in later articles, but for now this gives you the basic principal of the commands for configuring DHCP relay.</p>
]]></content:encoded>
			<wfw:commentRss>http://benchaddix.com/2012/01/27/configuring-dhcp-relay-in-cisco-ios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Misconfigured Cisco AP could allow unwanted access</title>
		<link>http://benchaddix.com/2010/06/30/misconfigured-cisco-ap-could-allow-unwanted-access/</link>
		<comments>http://benchaddix.com/2010/06/30/misconfigured-cisco-ap-could-allow-unwanted-access/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 03:58:32 +0000</pubDate>
		<dc:creator>Nerm</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[aironet]]></category>
		<category><![CDATA[ap]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://benchaddix.com/?p=16</guid>
		<description><![CDATA[According to an article at networkworld researchers have found a potential security risk in Cisco&#8217;s Aironet 1200 Series Access Points if the devices are configured incorrectly. This is not an actual bug as it has more to do with user error. &#8220;The issue has to do with Cisco&#8217;s Aironet 1200 Series Access Point, which is [...]]]></description>
			<content:encoded><![CDATA[<p>According to an article at <a href="http://www.networkworld.com" target="_blank">networkworld</a> researchers have found a potential security risk in Cisco&#8217;s Aironet  1200 Series Access Points if the devices are configured incorrectly. This is not an actual bug as it has more to do with user error.</p>
<p><span id="more-16"></span></p>
<blockquote><p>&#8220;The issue has to do with Cisco&#8217;s <a href="http://www.cisco.com/en/US/products/hw/wireless/ps430/">Aironet  1200 Series Access Point</a>, which is used to power centrally managed  wireless LANs. The Aironet 1200 can be set to a WPA (Wi-Fi Protected  Access) migration    mode, in which it provides wireless access for devices that use  either the insecure WEP (Wired Equivalent Privacy) protocol    or the more secure WPA standard.</p>
<p>This gives companies a way to gradually move from WEP to WPA without  immediately buying all-new, WPA-capable equipment. But    while auditing the network of a customer who used the product, Core  researchers discovered that even networks that had stopped    using WEP devices could still be vulnerable, so long as the Aironet&#8217;s  migration mode was enabled.</p>
<p>Researchers were able to force the access point to issue WEP  broadcast packets, which they then used to crack the encryption    key and gain access to the network.&#8221;</p></blockquote>
<p>Anyone that is using this series of access points from Cisco might want to check and make sure that migration mode is not enabled unless absolutely necessary.</p>
<p>[<a href="http://www.networkworld.com/news/2010/062810-misconfigured-cisco-gear-could-lead.html?t51hb" target="_blank">networkworld</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://benchaddix.com/2010/06/30/misconfigured-cisco-ap-could-allow-unwanted-access/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

