 




<?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>Network technologies and trends &#187; IP Address</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/network-technologies/tag/ip-address/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/network-technologies</link>
	<description></description>
	<lastBuildDate>Wed, 15 May 2013 18:52:38 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>How to configure HRSP between Nexus 7000 and Cisco Catalyst 6500 Series Switches?</title>
		<link>http://itknowledgeexchange.techtarget.com/network-technologies/how-to-configure-hrsp-between-nexus-7000-and-cisco-catalyst-6500-series-switches/</link>
		<comments>http://itknowledgeexchange.techtarget.com/network-technologies/how-to-configure-hrsp-between-nexus-7000-and-cisco-catalyst-6500-series-switches/#comments</comments>
		<pubDate>Sun, 22 May 2011 05:15:13 +0000</pubDate>
		<dc:creator>Yasir Irfan</dc:creator>
				<category><![CDATA[0000.0c07.ac22]]></category>
		<category><![CDATA[Cisco Catalyst 6500 Switch]]></category>
		<category><![CDATA[Cisco Catalyst 6506-E Switch]]></category>
		<category><![CDATA[Cisco Configuration]]></category>
		<category><![CDATA[Cisco configuration tips]]></category>
		<category><![CDATA[Data Centre]]></category>
		<category><![CDATA[Default MAC]]></category>
		<category><![CDATA[Forwarding threshold]]></category>
		<category><![CDATA[Hellotime]]></category>
		<category><![CDATA[How to configure HSRP between Nexus 7000 and Cisco 6500 Switch]]></category>
		<category><![CDATA[HSRP]]></category>
		<category><![CDATA[interface vlan]]></category>
		<category><![CDATA[IP Address]]></category>
		<category><![CDATA[Nexus 7000 Series Switch]]></category>
		<category><![CDATA[sho hsrp group]]></category>
		<category><![CDATA[sho standby brief]]></category>
		<category><![CDATA[standby]]></category>
		<category><![CDATA[subnet]]></category>
		<category><![CDATA[Virtual IP]]></category>
		<category><![CDATA[Virtual MAC address]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/network-technologies/how-to-configure-hrsp-between-nexus-7000-and-cisco-catalyst-6500-series-switches/</guid>
		<description><![CDATA[Configuring HRSP in a Cisco Nexus 7000 Series Switch is often an easy task and it takes slight different approach. Recently we had some issues in our Data Centre and then I was forced to configuring the HSRP between a Cisco Nexus 7010 Switch and Cisco Catalyst 6506 E Switch. The configuration was quite simple, [...]]]></description>
				<content:encoded><![CDATA[<p>Configuring HRSP in a Cisco Nexus 7000 Series Switch is often an easy task and it takes slight different approach. Recently we had some issues in our Data Centre and then I was forced to configuring the HSRP between a Cisco Nexus 7010 Switch and Cisco Catalyst 6506 E Switch. The configuration was quite simple, I would like to share the steps need to configure HSRP between a Cisco Nexus 7000 Series and Cisco Catalyst 6500 Series Switches.</p>
<p>In the below example I will configure HRSP for VLAN 34 with a subnet of 10.204.34.0/24</p>
<p><strong><span style="color: #0000ff">Cisco Catalyst 6500 Series Switch Configuration</span></strong></p>
<p><span style="color: #800000">Step 1 &#8211; Create VLAN 34 in Cisco Catalyst Switch and assign an IP Address</span></p>
<p>MBGF-DAC-6500-BB01(config)#interface vlan 34</p>
<p>MBGF-DAC-6500-BB01(config-if)#ip address 10.204.34.3 255.255.255.0</p>
<p><span style="color: #800000">Step 2 &#8211; Configure HSRP group id, priority and timers, my active switch will be Cisco 6500 Switch due to its priority</span></p>
<p>MBGF-DAC-6500-BB01(config-if)# standby 34 ip 10.204.34.1</p>
<p>MBGF-DAC-6500-BB01(config-if)# standby 34 timers 1 3</p>
<p>MBGF-DAC-6500-BB01(config-if)# standby 34 priority 150</p>
<p>MBGF-DAC-6500-BB01(config-if)# standby 34 preempt</p>
<p><strong><span style="color: #000080">Cisco Nexus 7000 Series Switch Configuration</span></strong></p>
<p><span style="color: #800000">Step 1 &#8211; Create VLAN 34 in Cisco Nexus Switch and assign an IP Address</span></p>
<p>VDC-Admin-AG01-MB-1256-002(config)# interface vlan 34</p>
<p>VDC-Admin-AG01-MB-1256-002(config-if)# ip address 10.204.34.2/24</p>
<p><span style="color: #800000">Step 2 &#8211; Configure HSRP group id, priority and timers , Nexus will be in standby mode</span></p>
<p>VDC-Admin-AG01-MB-1256-002(config-if)#hsrp 34</p>
<p>VDC-Admin-AG01-MB-1256-002(config-if-hsrp)# priority 110</p>
<p>VDC-Admin-AG01-MB-1256-002(config-if-hsrp)# timers 1 3</p>
<p>VDC-Admin-AG01-MB-1256-002(config-if-hsrp)# ip 10.204.34.1</p>
<p><strong>Verify the HSRP States</strong></p>
<p><span style="color: #800000">Cisco Catalyst 6500 Switch Status</span></p>
<p>MBGF-DAC-6500-BB01:1#sho standby brief</p>
<p>P indicates configured to preempt.</p>
<p>|</p>
<p>Interface   Grp Prio P State    Active          Standby         Virtual IP</p>
<p>Vl34        34  150  P Init     local           10.204.34.3         10.204.34.1</p>
<p>MBGF-DAC-6500-BB01:1#</p>
<p><span style="color: #800000">Nexus 7000 Series Switch HSRP Status</span></p>
<p>VDC-Admin-AG01-MB-1256-002# sho hsrp group 34</p>
<p>Vlan34 &#8211; Group 34 (HSRP-V1) (IPv4)</p>
<p>Local state is Standby, priority 110 (Cfged 110)</p>
<p>Forwarding threshold(for vPC), lower: 1 upper: 110</p>
<p>Hellotime 1 sec, holdtime 3 sec</p>
<p>Next hello sent in 0.179000 sec(s)</p>
<p>Virtual IP address is 10.204.34.1 (Cfged)</p>
<p>Active router is 10.204.34.2</p>
<p>Standby router is local</p>
<p>Virtual mac address is 0000.0c07.ac22 (Default MAC)</p>
<p>2 state changes, last state change 2d18h</p>
<p>IP redundancy name is hsrp-Vlan34-34 (default)</p>
<p>VDC-Admin-AG01-MB-1256-002#</p>
<p>Configuring HRSP is a quite a simple and if you are facing any problems configuring you can post your scenario in the comments area of this post.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/network-technologies/how-to-configure-hrsp-between-nexus-7000-and-cisco-catalyst-6500-series-switches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Telnet by default disabled in NX-OS devices</title>
		<link>http://itknowledgeexchange.techtarget.com/network-technologies/telnet-by-default-disabled-in-nx-os-devices/</link>
		<comments>http://itknowledgeexchange.techtarget.com/network-technologies/telnet-by-default-disabled-in-nx-os-devices/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 06:13:06 +0000</pubDate>
		<dc:creator>Yasir Irfan</dc:creator>
				<category><![CDATA[Cisco Command]]></category>
		<category><![CDATA[Cisco IOS Commands]]></category>
		<category><![CDATA[Cisco Switch tips]]></category>
		<category><![CDATA[Cisco Tips]]></category>
		<category><![CDATA[configuring Cisco Nexus 7000 Switch]]></category>
		<category><![CDATA[domain name]]></category>
		<category><![CDATA[how to enable the Telnet Server in NX-OS devices]]></category>
		<category><![CDATA[IP Address]]></category>
		<category><![CDATA[Network technologies & trends]]></category>
		<category><![CDATA[Nexus 5000 and 2000 Series Switches]]></category>
		<category><![CDATA[Nexus 7000]]></category>
		<category><![CDATA[Nexus configuration]]></category>
		<category><![CDATA[Nexus configuration tips]]></category>
		<category><![CDATA[Nexus tips]]></category>
		<category><![CDATA[NX-OS]]></category>
		<category><![CDATA[remote device address]]></category>
		<category><![CDATA[TCP/IP connections]]></category>
		<category><![CDATA[Telnet]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/network-technologies/telnet-by-default-disabled-in-nx-os-devices/</guid>
		<description><![CDATA[  As I am working with Nexus 7000, Nexus 5000 and 2000 Series Switches, I discovered by default  Telnet Server is disabled in a NX-OS devices such as Nexus 7000, Nexus 5000 and 2000 Series Switches. We all know Telnet protocol enables TCP/IP connections to a host. Telnet allows a user at one site to [...]]]></description>
				<content:encoded><![CDATA[<p> </p>
<p>As I am working with Nexus 7000, Nexus 5000 and 2000 Series Switches, I discovered by default  Telnet Server is disabled in a NX-OS devices such as Nexus 7000, Nexus 5000 and 2000 Series Switches.</p>
<p>We all know Telnet protocol enables TCP/IP connections to a host. Telnet allows a user at one site to establish a TCP connection to a login server at another site and then passes the keystrokes from one device to the other. Telnet can accept either an IP address or a domain name as the remote device address.</p>
<p>I will show you how to enable the Telnet Server in NX-OS devices</p>
<p> </p>
<p><span style="color: #000080">VDC-Admin(config)# feature telnet</span></p>
<p><span style="color: #000080">VDC-Admin(config)# show telnet server</span></p>
<p><span style="color: #000080">telnet service enabled</span></p>
<p><span style="color: #000080">VDC-Admin(config)#</span></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/network-technologies/telnet-by-default-disabled-in-nx-os-devices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring Multiple SSIDs in Cisco 1250 Access Points Series 3</title>
		<link>http://itknowledgeexchange.techtarget.com/network-technologies/configuring-multiple-ssids-in-cisco-1250-access-points-series-3/</link>
		<comments>http://itknowledgeexchange.techtarget.com/network-technologies/configuring-multiple-ssids-in-cisco-1250-access-points-series-3/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 04:53:27 +0000</pubDate>
		<dc:creator>Yasir Irfan</dc:creator>
				<category><![CDATA[Cisco Access Points]]></category>
		<category><![CDATA[Cisco Aironet 1250]]></category>
		<category><![CDATA[Cisco Aironet 1250 Access Point]]></category>
		<category><![CDATA[Cisco Aironet 1250 Series Access Points]]></category>
		<category><![CDATA[Cisco Catalyst 3560 Switch]]></category>
		<category><![CDATA[Cisco Catalyst 6500 Series Switch]]></category>
		<category><![CDATA[Cisco Configurations]]></category>
		<category><![CDATA[Cisco IOS]]></category>
		<category><![CDATA[Cisco Wireless]]></category>
		<category><![CDATA[configuration scenarios]]></category>
		<category><![CDATA[Configuring Multiple SSID in Cisco Access Point]]></category>
		<category><![CDATA[configuring multiple SSIDs]]></category>
		<category><![CDATA[DHCP Server]]></category>
		<category><![CDATA[IOS version 12.2(18) SXF14]]></category>
		<category><![CDATA[IOS version 12.2(44) SE1]]></category>
		<category><![CDATA[IOS Version 12.4(10b) JDA3]]></category>
		<category><![CDATA[IP Address]]></category>
		<category><![CDATA[Multiple SSID]]></category>
		<category><![CDATA[Native VLAN]]></category>
		<category><![CDATA[Sample Configurations]]></category>
		<category><![CDATA[SSIDs]]></category>
		<category><![CDATA[VLANS]]></category>
		<category><![CDATA[Windows 2003 Server]]></category>
		<category><![CDATA[Wireless]]></category>
		<category><![CDATA[Wireless Clients]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/network-technologies/configuring-multiple-ssids-in-cisco-1250-access-points-series-3/</guid>
		<description><![CDATA[  In today’s entry we will focus on configuration of VLANs and SSIDs in a Cisco Aironet 1250 Series Access Point. The procedure is as follows.   Configure   In this section, you will see the configuration steps required to complete the above mentioned scenario.   1st Step: Configure the Native VLAN on the Cisco [...]]]></description>
				<content:encoded><![CDATA[<p> </p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: small"><span style="font-family: Calibri"><span style="color: black">In today’s entry we will focus on configuration of VLANs and SSIDs in a </span><span style="color: black"><a href="http://www.cisco.com/en/US/products/ps8382/index.html"><span style="color: black">Cisco Aironet 1250 Series Access Point</span></a>. The procedure is as follows. </span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><strong><span style="color: #943634"><span style="font-family: Calibri;font-size: small"> </span></span></strong></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><strong><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">Configure</span></span></span></strong></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><strong><span style="color: #943634"><span style="font-family: Calibri;font-size: small"> </span></span></strong></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">In this section, you will see the configuration steps required to complete the above mentioned scenario.</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #984806"><span style="font-family: Calibri;font-size: small">1<sup>st</sup> Step: Configure the Native VLAN on the </span></span><a href="http://www.cisco.com/en/US/products/ps8382/index.html"><span style="color: #984806"><span style="font-family: Calibri;font-size: small">Cisco Aironet 1250 Series Access Point</span></span></a><span></span></p>
<p><span style="font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;font-size: 11pt">The Native VLAN is a VLAN to which the </span><a href="http://www.cisco.com/en/US/products/ps8382/index.html"><span style="font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;color: #003399;font-size: 11pt">Cisco Aironet 1250 Series Access Point</span></a><span style="font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;font-size: 11pt"> and the Cisco Catalyst 3560 Switch are connected. Native VLAN of the </span><a href="http://www.cisco.com/en/US/products/ps8382/index.html"><span style="font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;color: #003399;font-size: 11pt">Cisco Aironet 1250 Series Access Point</span></a><span style="font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;font-size: 11pt"> is usually different from the other VLANS configured in the </span><a href="http://www.cisco.com/en/US/products/ps8382/index.html"><span style="font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;color: #003399;font-size: 11pt">Cisco Aironet 1250 Series Access Point</span></a><span style="font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;font-size: 11pt"> (In our case VLAN 101 and VLAN 102). The IP address used for the management of the </span><a href="http://www.cisco.com/en/US/products/ps8382/index.html"><span style="font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;color: #003399;font-size: 11pt">Cisco Aironet 1250 Series Access Point</span></a><span style="font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;font-size: 11pt"> is assigned to its <strong>BVI Interface </strong>and the IP address assigned is in the native VLAN. (In our case VLAN 100).<span style="color: black"> . The traffic, for example, management traffic, sent to and by </span>the Point itself<span style="color: black"> assumes the native VLAN (VLAN 100), and it is untagged. All untagged traffic that is received on an IEEE 802.1Q (dot1q) trunk port is forwarded with the native VLAN (VLAN 100) that is configured for the port. If a packet has a VLAN ID that is the same as the native VLAN ID of the sending port, the </span>Cisco Catalyst 3560 Switch<span style="color: black"> sends the packet without a tag. Otherwise, the switch sends the packet with a tag. </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: black"><span style="font-family: Calibri;font-size: small">In order to configure a native VLAN on a </span></span><a href="http://www.cisco.com/en/US/products/ps8382/index.html"><span style="color: #003399"><span style="font-family: Calibri;font-size: small">Cisco Aironet 1250 Series Access Point</span></span></a><span style="color: black"><span style="font-family: Calibri;font-size: small">, issue the following commands in the global configuration mode on the </span></span><a href="http://www.cisco.com/en/US/products/ps8382/index.html"><span style="color: #003399"><span style="font-family: Calibri;font-size: small">Cisco Aironet 1250 Series Access Point</span></span></a><span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-family: Calibri"><span style="font-size: small">ITKE-AP-01(config)#interface gigabitEthernet 0.100</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-family: Calibri"><span style="font-size: small"><span style="color: #943634">ITKE-AP-01(config-subif)#</span><span> <span style="color: #943634">encapsulation dot1Q 100 native</span></span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-family: Calibri"><span style="font-size: small">ITKE-AP-01(config-subif)#exit</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #365f91"><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #365f91"><span style="font-family: Calibri"><span style="font-size: small">(The above commands will configure the encapsulation as dot1q and assign VLAN 100 as the native VLAN on the Giga Ethernet interface.)</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-family: Calibri"><span style="font-size: small">ITKE-AP-01(config)#interface dot11radio 0.100</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-family: Calibri"><span style="font-size: small">ITKE-AP-01(config-subif)# encapsulation dot1Q 100 native</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-family: Calibri"><span style="font-size: small">ITKE-AP-01(config-subif)#exit</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #365f91"><span style="font-family: Calibri"><span style="font-size: small">(The above commands will configure the encapsulation as dot1q and assign VLAN 100 as the native VLAN on the radio interface.)</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #984806"><span style="font-family: Calibri;font-size: small">2<sup>nd</sup> Step: Configure the SSIDs on the </span></span><a href="http://www.cisco.com/en/US/products/ps8382/index.html"><span style="color: #984806"><span style="font-family: Calibri;font-size: small">Cisco Aironet 1250 Series Access Point</span></span></a><span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri"><span style="font-size: small">In this step we will configure two VLANs (VLAN 101 &amp; VLAN 102) one for the ITKE administration department and other for the guest users only with an internet access.<span>  </span>The SSIDs are also need to be associated with specific VLANS as shown below.</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt 0.5in"><span style="font-family: Symbol"><span><span style="font-size: small">·</span><span style="font: 7pt &quot;Times New Roman&#038;quot">         </span></span></span><span><span style="font-family: Calibri"><span style="font-size: small">VLAN 101 for the ITKE administration department and uses the SSID <strong><span style="color: #e36c0a">ADMIN</span></strong>.</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt 0.5in"><span style="font-family: Symbol"><span><span style="font-size: small">·</span><span style="font: 7pt &quot;Times New Roman&#038;quot">         </span></span></span><span><span style="font-size: small"><span style="font-family: Calibri">VLAN 102 for the guest users and uses the SSID <strong><span style="color: #e36c0a">GUEST</span></strong>.</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt 0.25in"><span><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: black"><span style="font-family: Calibri;font-size: small">In order to configure a VLAN101 and 102 on a </span></span><a href="http://www.cisco.com/en/US/products/ps8382/index.html"><span style="color: #003399"><span style="font-family: Calibri;font-size: small">Cisco Aironet 1250 Series Access Point</span></span></a><span style="color: black"><span style="font-family: Calibri;font-size: small">, issue the following commands in the global configuration mode on the </span></span><a href="http://www.cisco.com/en/US/products/ps8382/index.html"><span style="color: #003399"><span style="font-family: Calibri;font-size: small">Cisco Aironet 1250 Series Access Point</span></span></a><span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config)#dot11 ssid ADMIN</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config-ssid)#authentication open</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config-ssid)#vlan 101</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #365f91"><span style="font-size: small"><span style="font-family: Calibri"><span> </span>(The above commands will create an ssid ADMIN, assigned to VLAN 101 and with an open authentication.)</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config)#dot11 ssid GUEST</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config-ssid)#authentication open</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config-ssid)#vlan 102</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #365f91"><span style="font-size: small"><span style="font-family: Calibri">(The above commands will create an ssid GUEST, assigned to VLAN 102 and with an open authentication).</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #365f91"><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config)#interface gigabitEthernet 0.101</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config-subif)#encapsulation dot1Q 101</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config-subif)#bridge-group 101</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config-subif)#exit</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config)#</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #365f91"><span style="font-size: small"><span style="font-family: Calibri">(The above commands will set the encapsulation dot1q for VLAN 101 and assigns the sub interface to bridge group 101 to the giga Ethernet).</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #365f91"><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config)#interface dot11Radio 0.101</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config-subif)#encapsulation dot1Q 101</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config-subif)#bridge-group 101</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config-subif)#exit</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config)#</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #365f91"><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #365f91"><span style="font-size: small"><span style="font-family: Calibri">(The above commands will set the encapsulation dot1q for VLAN 101 and assigns the sub interface to bridge group 101 to the sub interface on the radio interface).</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #365f91"><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config)#interface gigabitEthernet 0.102</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config-subif)#encapsulation dot1Q 102</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config-subif)#bridge-group 102</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config-subif)#exit</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: small"><span style="font-family: Calibri"><span style="color: #943634">ITKE-AP-01(config)#</span><span style="color: #365f91"></span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #365f91"><span style="font-size: small"><span style="font-family: Calibri">(The above commands will set the encapsulation dot1q for VLAN 102 and assigns the sub interface to bridge group 102 to the giga Ethernet).</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #365f91"><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config)#interface dot11Radio 0.102</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config-subif)#encapsulation dot1Q 102</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config-subif)#bridge-group 102</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config-subif)#exit</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config)#</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #365f91"><span style="font-size: small"><span style="font-family: Calibri">(The above commands will set the encapsulation dot1q for VLAN 101 and assigns the sub interface to bridge group 101 to the sub interface on the radio interface).</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #365f91"><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #984806"><span style="font-family: Calibri;font-size: small">3<sup>rd</sup> Step: Assign the multiple SSIDs to the radio interface on the </span></span><a href="http://www.cisco.com/en/US/products/ps8382/index.html"><span style="color: #984806"><span style="font-family: Calibri;font-size: small">Cisco Aironet 1250 Series Access Point</span></span></a><span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #365f91"><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config)#interface dot11Radio 0</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config-if)#ssid ADMIN</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config-if)#ssid GUEST</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #943634"><span style="font-size: small"><span style="font-family: Calibri">ITKE-AP-01(config-if)#mbssid</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #365f91"><span style="font-size: small"><span style="font-family: Calibri">(The above commands assigns the multiple SSIDs ADMIN and GUEST<span>  </span>to the radio interface dot11radio 0 ).</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #365f91"><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: red"><span style="font-family: Calibri;font-size: small">Note: The SSIDs ADMIN and GUEST are configured for open authentication, For information on how to configure different authentication types on the </span></span><a href="http://www.cisco.com/en/US/products/ps8382/index.html"><span style="color: red"><span style="font-family: Calibri;font-size: small">Cisco Aironet 1250 Series Access Point</span></span></a><span style="color: red"><span style="font-family: Calibri;font-size: small"> , refer the Cisco document “</span></span><a href="http://www.cisco.com/en/US/docs/wireless/access_point/12.3_8_JA/configuration/guide/s38auth.html"><span style="color: red"><span style="font-family: Calibri;font-size: small">Configuring Authentication Types</span></span></a><span style="color: red"><span style="font-size: small"><span style="font-family: Calibri">”.</span></span></span></p>
<p><span style="color: red"><span style="font-family: Calibri;color: #000000;font-size: small"></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt">In next post we will look at the configuration for the Cisco 3560 Switch .</p>
<p></span></span></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/network-technologies/configuring-multiple-ssids-in-cisco-1250-access-points-series-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring Multiple SSIDs in Cisco 1250 Access Points Series 2</title>
		<link>http://itknowledgeexchange.techtarget.com/network-technologies/configuring-multiple-ssids-in-cisco-1250-access-points-series-2/</link>
		<comments>http://itknowledgeexchange.techtarget.com/network-technologies/configuring-multiple-ssids-in-cisco-1250-access-points-series-2/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 08:56:26 +0000</pubDate>
		<dc:creator>Yasir Irfan</dc:creator>
				<category><![CDATA[Cisco Access Points]]></category>
		<category><![CDATA[Cisco Aironet 1250]]></category>
		<category><![CDATA[Cisco Aironet 1250 Access Point]]></category>
		<category><![CDATA[Cisco Aironet 1250 Series Access Points]]></category>
		<category><![CDATA[Cisco Catalyst 3560 Switch]]></category>
		<category><![CDATA[Cisco Catalyst 6500 Series Switch]]></category>
		<category><![CDATA[Cisco Configurations]]></category>
		<category><![CDATA[Cisco IOS]]></category>
		<category><![CDATA[Cisco Wireless]]></category>
		<category><![CDATA[configuration scenarios]]></category>
		<category><![CDATA[Configuring Multiple SSID in Cisco Access Point]]></category>
		<category><![CDATA[configuring multiple SSIDs]]></category>
		<category><![CDATA[DHCP Server]]></category>
		<category><![CDATA[IOS version 12.2(18) SXF14]]></category>
		<category><![CDATA[IOS version 12.2(44) SE1]]></category>
		<category><![CDATA[IOS Version 12.4(10b) JDA3]]></category>
		<category><![CDATA[IP Address]]></category>
		<category><![CDATA[Multiple SSID]]></category>
		<category><![CDATA[Native VLAN]]></category>
		<category><![CDATA[Sample Configurations]]></category>
		<category><![CDATA[SSIDs]]></category>
		<category><![CDATA[VLANS]]></category>
		<category><![CDATA[Windows 2003 Server]]></category>
		<category><![CDATA[Wireless]]></category>
		<category><![CDATA[Wireless Clients]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/network-technologies/configuring-multiple-ssids-in-cisco-1250-access-points-series-2/</guid>
		<description><![CDATA[In order to configure multiple SSIDs in a Cisco Aironet 1250 Series Access Point, we will follow the following scenario,   The Scenario is based on following hardware and software versions.   Cisco Aironet 1250 Series Access Point runs with an IOS Version 12.4(10b) JDA3. Cisco Catalyst 3560 Switch runs with an IOS version 12.2(44) [...]]]></description>
				<content:encoded><![CDATA[<p><span></span></p>
<p><span><span style="font-family: Calibri;font-size: small">In order to configure multiple SSIDs in a </span><a href="http://www.cisco.com/en/US/products/ps8382/index.html"><span style="color: #003399"><span style="font-family: Calibri;font-size: small">Cisco Aironet 1250 Series Access Point</span></span></a><span style="font-family: Calibri"><span style="font-size: small">, we will follow the following scenario,</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri;font-size: small"> <a href="http://cdn.ttgtmedia.com/ITKE/uploads/blogs.dir/58/files/2009/08/access-point.jpg"><img class="alignnone size-medium wp-image-492" src="http://cdn.ttgtmedia.com/ITKE/uploads/blogs.dir/58/files/2009/08/access-point.jpg" alt="" width="682" height="495" /></a></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri"><span style="font-size: small">The Scenario is based on following hardware and software versions.</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><a href="http://www.cisco.com/en/US/products/ps8382/index.html"><span style="color: #003399"><span style="font-family: Calibri;font-size: small">Cisco Aironet 1250 Series Access Point</span></span></a><span style="font-family: Calibri"><span style="font-size: small"> runs with an IOS Version 12.4(10b) JDA3.</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><a href="http://www.cisco.com/en/US/customer/products/hw/switches/ps5528/index.html"><span style="font-family: Calibri;font-size: small">Cisco Catalyst 3560 Switch</span></a><span style="font-family: Calibri"><span style="font-size: small"> runs with an IOS version 12.2(44) SE1.</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><a href="http://www.cisco.com/en/US/customer/products/hw/switches/ps708/index.html"><span style="font-family: Calibri;font-size: small">Cisco Catalyst 6500 Series Switch</span></a><span style="font-family: Calibri"><span style="font-size: small"> runs with an IOS version 12.2(18) SXF14.</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri;font-size: small">The </span><a href="http://www.cisco.com/en/US/products/ps8382/index.html"><span style="color: #003399"><span style="font-family: Calibri;font-size: small">Cisco Aironet 1250 Series Access Point</span></span></a><span style="font-family: Calibri;font-size: small"> has three VLANs, &#8211; VLAN 100, VLAN 101 and VLAN 102. VLAN 100 will be the native VLAN, VLAN 101 for the ITKE admin department and VLAN 102 for the guest users. The Wireless users who belong to ITKE admin department must connect to the </span><a href="http://www.cisco.com/en/US/products/ps8382/index.html"><span style="color: #003399"><span style="font-family: Calibri;font-size: small">Cisco Aironet 1250 Series Access Point</span></span></a><span style="font-family: Calibri"><span style="font-size: small"> and should be able to connect the ITKE admin department users on the wired network which is VLAN 101. </span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri;font-size: small">The wireless guest users should be able to connect to the Internet Gateway or web server which is on the wired segment of VLAN 102. </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri;font-size: small">A Cisco Catalyst 3560 Switch is connected to the </span><a href="http://www.cisco.com/en/US/products/ps8382/index.html"><span style="color: #003399"><span style="font-family: Calibri;font-size: small">Cisco Aironet 1250 Series Access Point</span></span></a><span style="font-family: Calibri"><span style="font-size: small"> at the access layer and the Cisco Catalyst 3560 Switch is also connected to the Cisco Catalyst 6500 Switch at the Core/Distribution layer). All VLANs are created in the Cisco Catalyst 6500 Switch which is beyond the scope of this document. (If any one feels he or she needs the sample configuration for the VLANs in the Cisco Catalyst 6500 switch it can be provided in the comments section of this blog entry).</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri"><span style="font-size: small">A windows 2003 Server is used as a DHCP server which provides the IP address for both the VLANs VLAN 101 and VLAN 102. A DHCP scope has to be configured for both VLANS in the windows 2003 Server which is also beyond the scope of this document. But I am just adding the snap shot from the DHCP Server.</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri"><span style="font-size: small"><a href="http://cdn.ttgtmedia.com/ITKE/uploads/blogs.dir/58/files/2009/08/dhcp-itke.png"><img class="alignnone size-medium wp-image-493" src="http://cdn.ttgtmedia.com/ITKE/uploads/blogs.dir/58/files/2009/08/dhcp-itke.png" alt="" width="679" height="94" /></a></span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri"><span style="font-size: small">The following IP Address Scheme is applied for the VLANs</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="color: #365f91"><span style="font-family: Calibri"><span style="font-size: small">VLAN 100– 10.0.0.0 /23 (NATIVE VLAN)</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri"><span style="font-size: small">VLAN 101 – 10.2.0.0/23</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri"><span style="font-size: small">VLAN 102– 10.4.0.0/23</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri"><span style="font-size: small">Following are the IP address used for the devices in this document.</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt 0.5in"><span style="font-family: Symbol"><span><span style="font-size: small">·</span><span style="font: 7pt &quot;Times New Roman&#038;quot">         </span></span></span><span><span style="font-family: Calibri;font-size: small">The </span><a href="http://www.cisco.com/en/US/products/ps8382/index.html"><span style="color: #003399"><span style="font-family: Calibri;font-size: small">Cisco Aironet 1250 Series Access Point</span></span></a><span style="font-family: Calibri"><span style="font-size: small"> Bridge-Group Virtual Interface (BVI) IP Address (VLAN 100) 10.0.0.99.</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt 0.5in"><span style="font-family: Symbol"><span><span style="font-size: small">·</span><span style="font: 7pt &quot;Times New Roman&#038;quot">         </span></span></span><span><span style="font-family: Calibri"><span style="font-size: small">Windows 2003 DHCP Server with an IP address 10.0.1.100 with VLAN scopes configured </span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt 0.5in"><span style="font-family: Symbol"><span><span style="font-size: small">·</span><span style="font: 7pt &quot;Times New Roman&#038;quot">         </span></span></span><span><span style="font-family: Calibri"><span style="font-size: small">Web Server with an IP Address 10.4.0.100.</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt 0.5in"><span style="font-family: Symbol"><span><span style="font-size: small">·</span><span style="font: 7pt &quot;Times New Roman&#038;quot">         </span></span></span><span><span style="font-family: Calibri"><span style="font-size: small">Wireless Clients (SSID ITKE) gets connected to VLAN 101 gets an IP address from the Windows 2003 DHCP Server from the subnet 10.2.0.0.</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span><span style="font-family: Calibri;font-size: small"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt 0.5in"><span style="font-family: Symbol"><span><span style="font-size: small">·</span><span style="font: 7pt &quot;Times New Roman&#038;quot">         </span></span></span><span><span style="font-size: small"><span style="font-family: Calibri">Wireless Clients (SSID Guest) gets connected to VLAN 102 gets an IP Address from the Windows 2003 DHCP Server from the subnet 10.4.0.0.</span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt 0.5in"><span><span style="font-size: small"></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt 0.5in"><span><span style="font-size: small"><span style="font-family: Calibri">In my next post I will post the configuration steps required to carry out the above motioned task. Until then do leave your comments for any future improvements or suggestions.</span></span></span></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/network-technologies/configuring-multiple-ssids-in-cisco-1250-access-points-series-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t Panic for ICND 1 Simualtion questions.</title>
		<link>http://itknowledgeexchange.techtarget.com/network-technologies/dont-panic-for-icnd-1-simualtion-questions/</link>
		<comments>http://itknowledgeexchange.techtarget.com/network-technologies/dont-panic-for-icnd-1-simualtion-questions/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 12:28:10 +0000</pubDate>
		<dc:creator>Yasir Irfan</dc:creator>
				<category><![CDATA[CCENT]]></category>
		<category><![CDATA[CCENT Exam]]></category>
		<category><![CDATA[CCNA]]></category>
		<category><![CDATA[CCNA Exam]]></category>
		<category><![CDATA[Cisco Tips]]></category>
		<category><![CDATA[ICND 1 Simualtion questions]]></category>
		<category><![CDATA[ICND1]]></category>
		<category><![CDATA[ICND1 Exam]]></category>
		<category><![CDATA[IP Address]]></category>
		<category><![CDATA[Routing]]></category>
		<category><![CDATA[sho running-config]]></category>
		<category><![CDATA[Show ip interface]]></category>
		<category><![CDATA[Show ip interface brief]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/network-technologies/dont-panic-for-icnd-1-simualtion-questions/</guid>
		<description><![CDATA[One of my colleagues went for the ICND 1 (640-822) exam and he failed to pass the exams with a small margin. He got few simulation questions, in which he was suppose the find out the IP address for the router interfaces connected in the topology provided. The show running command was disabled, he was [...]]]></description>
				<content:encoded><![CDATA[<p class="MsoNormal" style="margin: 0in 0in 10pt"><span style="font-size: 12pt"><span style="font-family: Calibri">One of my colleagues went for the </span><a href="https://cisco.hosted.jivesoftware.com/community/certifications/ccna/icnd1?view=overview"><span style="font-family: Calibri">ICND 1</span></a><span style="font-family: Calibri"> (640-822) exam and he failed to pass the exams with a small margin. He got few simulation questions, in which he was suppose the find out the IP address for the router interfaces connected in the topology provided. The show running command was disabled, he was suppose to use alternative IOS commands to determine the IP address assigned to the router interface. </span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt"><span style="font-size: 12pt"><span style="font-family: Calibri"> </span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt"><span style="font-size: 12pt"><span style="font-family: Calibri">In this scenario don’t panic, <span> </span>the best command to determine the IP address assigned to interface s in any router is “show ip interface brief” or Show ip interfaces. Here is the sample output of these commands</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 12pt"><span style="font-family: Calibri"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri">ITKE-DAC-3745R01#sho ip interface brief </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri">Interface<span>                  </span><span>   </span>IP-Address<span>      </span>OK? Method Status<span>                </span>Protocol</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri">FastEthernet0/0<span>         </span>10.135.5.21<span>     </span>YES DHCP<span>   </span>up<span>                    </span>up<span>      </span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri">FastEthernet0/1<span>         </span>192.168.1.2<span>  </span><span>   </span>YES NVRAM<span>  </span>up<span>                 </span><span>   </span>up<span>      </span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri">Tunnel0<span>                    </span><span>   </span>172.31.31.50<span>    </span>YES NVRAM<span>  </span>up<span>                    </span>up<span>      </span></span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri">ITKE-DAC-3745R01#</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"> </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri">ITKE-DAC-3745R01#show ip interface </span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri">FastEthernet0/0 is up, line protocol is up</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Internet address is 10.135.5.21/24</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Broadcast address is 255.255.255.255</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Address determined by DHCP</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>MTU is 1500 bytes</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Helper address is not set</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Directed broadcast forwarding is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Outgoing access list is not set</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Inbound<span>  </span>access list is not set</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Proxy ARP is enabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Local Proxy ARP is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Security level is default</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Split horizon is enabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>ICMP redirects are always sent</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>ICMP unreachables are always sent</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>ICMP mask replies are never sent</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP fast switching is enabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP fast switching on the same interface is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP Flow switching is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP CEF switching is enabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP CEF Feature Fast switching turbo vector</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP multicast fast switching is enabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP multicast distributed fast switching is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP route-cache flags are Fast, CEF</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Router Discovery is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP output packet accounting is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP access violation accounting is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>TCP/IP header compression is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>RTP/IP header compression is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Policy routing is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Network address translation is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>WCCP Redirect outbound is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>WCCP Redirect inbound is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>WCCP Redirect exclude is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>BGP Policy Mapping is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri">FastEthernet0/1 is up, line protocol is up</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Internet address is 192.168.1.2/28</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Broadcast address is 255.255.255.255</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Address determined by non-volatile memory</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>MTU is 1500 bytes</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span> </span><span> </span>Helper address is not set</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Directed broadcast forwarding is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Multicast reserved groups joined: 224.0.0.5 224.0.0.6</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Outgoing access list is not set</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Inbound<span>  </span>access list is 101</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Proxy ARP is enabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Local Proxy ARP is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Security level is default</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Split horizon is enabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>ICMP redirects are always sent</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>ICMP unreachables are always sent</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>ICMP mask replies are never sent</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP fast switching is enabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP fast switching on the same interface is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP Flow switching is enabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP CEF switching is enabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP CEF Flow Fast switching turbo vector</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP multicast fast switching is enabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP multicast distributed fast switching is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP route-cache flags are Fast, Flow, CEF, Flow Cache</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Router Discovery is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP output packet accounting is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP access violation accounting is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>TCP/IP header compression is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>RTP/IP header compression is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Policy routing is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Network address translation is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>WCCP Redirect outbound is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>WCCP Redirect inbound is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>WCCP Redirect exclude is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>BGP Policy Mapping is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri">Tunnel0 is up, line protocol is up</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Internet address is 172.31.31.50/30</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Broadcast address is 255.255.255.255</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Address determined by non-volatile memory</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>MTU is 1476 bytes</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Helper address is not set</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Directed broadcast forwarding is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Multicast reserved groups joined: 224.0.0.5</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Outgoing access list is not set</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Inbound<span>  </span>access list is not set</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Proxy ARP is enabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Local Proxy ARP is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Security level is default</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Split horizon is enabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>ICMP redirects are always sent</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>ICMP unreachables are always sent</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>ICMP mask replies are never sent</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP fast switching is enabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP fast switching on the same interface is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP Flow switching is enabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP CEF switching is enabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP CEF Flow Fast switching turbo vector</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP multicast fast switching is enabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP multicast distributed fast switching is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP route-cache flags are Fast, Flow, CEF, Flow Cache</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Router Discovery is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP output packet accounting is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>IP access violation accounting is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>TCP/IP header compression is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>RTP/IP header compression is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Policy routing is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>Network address translation is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>WCCP Redirect outbound is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>WCCP Redirect inbound is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>WCCP Redirect exclude is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri"><span>  </span>BGP Policy Mapping is disabled</span></span></p>
<p class="MsoNoSpacing" style="margin: 0in 0in 0pt"><span style="font-size: 16pt;color: #c0504d"><span style="font-family: Calibri">ITKE-DAC-3745R01#</span></span></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/network-technologies/dont-panic-for-icnd-1-simualtion-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to configure intervlan routing between Cisco Catalyst Switches and HP Procurve Switches Series 2</title>
		<link>http://itknowledgeexchange.techtarget.com/network-technologies/how-to-configure-intervlan-routing-between-cisco-catalyst-switches-and-hp-procurve-switches-series-2/</link>
		<comments>http://itknowledgeexchange.techtarget.com/network-technologies/how-to-configure-intervlan-routing-between-cisco-catalyst-switches-and-hp-procurve-switches-series-2/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 08:27:05 +0000</pubDate>
		<dc:creator>Yasir Irfan</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Cisco 3560]]></category>
		<category><![CDATA[Cisco 3560-E]]></category>
		<category><![CDATA[Cisco Learning]]></category>
		<category><![CDATA[Cisco Tips]]></category>
		<category><![CDATA[HP Procurve]]></category>
		<category><![CDATA[HP switches]]></category>
		<category><![CDATA[Intervlan routing]]></category>
		<category><![CDATA[IOS commands]]></category>
		<category><![CDATA[IP Address]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Switches]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/network-technologies/how-to-configure-intervlan-routing-between-cisco-catalyst-switches-and-hp-procurve-switches-series-2/</guid>
		<description><![CDATA[In my previous post I did discussed about the how common terminologies are applied by both Cisco &#38; HP, now it’s time  proceed further , in this example we will create two VLANs and make intervlan communication between HP Procurve Switches  and Cisco Catalyst Switches. &#160; &#160; We will create 2 VLANS in both Switches, [...]]]></description>
				<content:encoded><![CDATA[<p class="MsoNoSpacing"><font face="Calibri">In my previous </font><a href="http://itknowledgeexchange.techtarget.com/network-technologies/how-to-configure-intervlan-routing-between-cisco-catalyst-switches-and-hp-procurve-switches-series-1/"><font face="Calibri">post</font></a><font face="Calibri"> I did discussed about the how common terminologies are applied by both Cisco &amp; HP, now it’s time <span> </span>proceed further , in this example we will create two VLANs and make intervlan communication between </font><a target="_blank" href="http://www.procurve.com/#tabview=tab1"><font color="#0000ff" face="Calibri">HP Procurve Switches </font></a><font face="Calibri"><span> </span>and </font><a target="_blank" href="http://www.cisco.com/en/US/products/hw/switches/index.html"><font face="Calibri">Cisco Catalyst Switches</font></a><font face="Calibri">.</font></p>
<p class="MsoNoSpacing">&nbsp;</p>
<p class="MsoNoSpacing"><a href="http://cdn.ttgtmedia.com/ITKE/uploads/blogs.dir/58/files/2008/09/hp-cisco-vlan.jpg" title="HP-Cisco Vlan"><img src="http://cdn.ttgtmedia.com/ITKE/uploads/blogs.dir/58/files/2008/09/hp-cisco-vlan.jpg" alt="HP-Cisco Vlan" /></a></p>
<p class="MsoNoSpacing">&nbsp;</p>
<p class="MsoNormal"><font face="Calibri">We will create 2 VLANS in both Switches, as shown in the below table</font></p>
<p class="MsoNormal"><a href="http://cdn.ttgtmedia.com/ITKE/uploads/blogs.dir/58/files/2008/09/hp-cisco-ip.jpg" title="IP address"><img src="http://cdn.ttgtmedia.com/ITKE/uploads/blogs.dir/58/files/2008/09/hp-cisco-ip.jpg" alt="IP address" /></a></p>
<p class="MsoNormal">&nbsp;</p>
<p class="MsoNormal"><font face="Calibri">Now let’s see what configuration commands required to create a VLAN, and enable intervlan communication between </font><a target="_blank" href="http://www.procurve.com/#tabview=tab1"><font color="#0000ff" face="Calibri">HP Procurve Switches </font></a><font face="Calibri"><span> </span>and </font><a target="_blank" href="http://www.cisco.com/en/US/products/hw/switches/index.html"><font face="Calibri">Cisco Catalyst Switches</font></a><font face="Calibri">.</font></p>
<p><a href="http://cdn.ttgtmedia.com/ITKE/uploads/blogs.dir/58/files/2008/09/commands2.jpg" title="Commands2"></a></p>
<p class="MsoNormal"><a href="http://cdn.ttgtmedia.com/ITKE/uploads/blogs.dir/58/files/2008/09/commands1.jpg" title="commands1"><img src="http://cdn.ttgtmedia.com/ITKE/uploads/blogs.dir/58/files/2008/09/commands1.jpg" alt="commands1" /></a></p>
<p class="MsoNormal"><a href="http://cdn.ttgtmedia.com/ITKE/uploads/blogs.dir/58/files/2008/09/commands2.jpg" title="Commands2"><img src="http://cdn.ttgtmedia.com/ITKE/uploads/blogs.dir/58/files/2008/09/commands2.jpg" alt="Commands2" /></a></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/network-technologies/how-to-configure-intervlan-routing-between-cisco-catalyst-switches-and-hp-procurve-switches-series-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change an IP address in a HP Procurve Switch</title>
		<link>http://itknowledgeexchange.techtarget.com/network-technologies/how-to-change-an-ip-address-in-a-hp-procurve-switch/</link>
		<comments>http://itknowledgeexchange.techtarget.com/network-technologies/how-to-change-an-ip-address-in-a-hp-procurve-switch/#comments</comments>
		<pubDate>Sat, 16 Aug 2008 11:12:55 +0000</pubDate>
		<dc:creator>Yasir Irfan</dc:creator>
				<category><![CDATA[HP Procurve]]></category>
		<category><![CDATA[HP switches]]></category>
		<category><![CDATA[IP Address]]></category>
		<category><![CDATA[Switches]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/network-technologies/how-to-change-an-ip-address-in-a-hp-procurve-switch/</guid>
		<description><![CDATA[Changing an IP address in a Cisco Switch is quite simple, where as in HP Procurve Switches if you try to change an IP address for any existing vlan you get an error message  The IP address (or subnet) 10.0.0.122/23 already exists..  I will demonstrate how to change an IP address for an existing VLAN. [...]]]></description>
				<content:encoded><![CDATA[<p><font face="Calibri"><a href="http://cdn.ttgtmedia.com/ITKE/uploads/blogs.dir/58/files/2008/08/hp.jpg" title="HP Procurve"></a>Changing an IP address in a Cisco Switch is quite simple, where as in HP Procurve Switches if you try to change an IP address for any existing vlan you get an error message <span> </span></font><font face="Calibri"><span><font face="Calibri">The IP address (or subnet) 10.0.0.122/23 already exists..</font></span></font><font face="Calibri"> </font></p>
<p><font face="Calibri">I will demonstrate how to change an IP address for an existing VLAN. In this example we have a VLAN 100 assigned with an IP address 10.0.0.99/23 in a HP Procurve Switch.</font></p>
<p class="MsoNoSpacing"><font face="Calibri">vlan 100 </font></p>
<p class="MsoNoSpacing"><font face="Calibri"><span>   </span>name &#8220;VLAN100&#8243; </font></p>
<p class="MsoNoSpacing"><font face="Calibri"><span>   </span>ip address 10.0.0.97 255.255.248.0 </font></p>
<p class="MsoNoSpacing"><font face="Calibri"><span>   </span>tagged 25-26 </font></p>
<p class="MsoNoSpacing"><font face="Calibri"><span>   </span>exit</font></p>
<p class="MsoNoSpacing"><font face="Calibri">We will try to change the IP address in a normal way as we do in a Cisco Catalyst Switch.</font></p>
<p class="MsoNoSpacing"><font face="Calibri">ICU(config)# vlan 100</font></p>
<p class="MsoNoSpacing"><font face="Calibri">ICU(vlan-100)# ip address 10.0.0.122 255.255.254.0</font></p>
<p><span><font face="Calibri">The IP address (or subnet) 10.0.0.122/23 already exists..</font></span><font face="Calibri"> </font></p>
<p class="MsoNormal"><font face="Calibri">The moment you enter the IP address command you will get an error message mentioned above.</font></p>
<p class="MsoNormal"><font face="Calibri">In order to change an IP address do the following things</font></p>
<p class="MsoNormal"><font face="Calibri">Log in to the Switch thro a console port.</font></p>
<p class="MsoNormal"><font face="Calibri">Then from the global parameters use the following commands</font></p>
<p class="MsoNoSpacing"><font face="Calibri">vlan 100 </font></p>
<p class="MsoNoSpacing"><font face="Calibri"><span> </span>name &#8220;VLAN100&#8243; </font></p>
<p class="MsoNoSpacing"><font face="Calibri"><span> </span>no ip address 10.0.0.97 255.255.248.0 </font></p>
<p class="MsoNoSpacing"><font face="Calibri"><span> </span>ip address 10.0.0.122 <span> </span>255.255.248.0</font></p>
<p><font face="Calibri">However, you can&#8217;t do that if you connect to the switch remotely. As soon as the &#8220;no ip address&#8221; command is received and processed by the switch, your session will be disconnected and you won&#8217;t be able to get to the switch.</font><font face="Calibri">The trick to get around this issue is to make this IP address change through the switch&#8217;s built-in menu system instead of using the plain old CLI.<br />
<a href="http://cdn.ttgtmedia.com/ITKE/uploads/blogs.dir/58/files/2008/08/hp.jpg" title="HP Procurve"></a><a href="http://cdn.ttgtmedia.com/ITKE/uploads/blogs.dir/58/files/2008/08/hp.jpg" title="HP Procurve"><img src="http://cdn.ttgtmedia.com/ITKE/uploads/blogs.dir/58/files/2008/08/hp.jpg" alt="HP Procurve" /></a><br />
1. Type &#8220;menu&#8221;, hit Enter<br />
2. Select &#8220;Switch Configuration&#8221;<br />
3. Select &#8220;IP Configuration&#8221;<br />
4. Navigate to Edit, hit Enter<br />
5. Change the IP and then Save</p>
<p>you will be disconnected once you save it but you will be able to reconnect using the new IP.</p>
<p></font></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/network-technologies/how-to-change-an-ip-address-in-a-hp-procurve-switch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
