<?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>Networks Training &#187; Cisco Switches</title>
	<atom:link href="http://www.networkstraining.com/category/cisco-switches/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.networkstraining.com</link>
	<description>IP Networks Training and Tutorials</description>
	<lastBuildDate>Sun, 15 Jan 2012 10:35:45 +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>vlan access-map example configuration</title>
		<link>http://www.networkstraining.com/vlan-access-map-example-configuration/</link>
		<comments>http://www.networkstraining.com/vlan-access-map-example-configuration/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 19:31:39 +0000</pubDate>
		<dc:creator>Blog Admin</dc:creator>
				<category><![CDATA[Cisco Switches]]></category>

		<guid isPermaLink="false">http://www.networkstraining.com/?p=1054</guid>
		<description><![CDATA[In this post I will discuss Vlan access control lists (VACL), also called VLAN access Map or VLAN Map. A VLAN Access-map allows us to filter incoming and outgoing traffic in a switch Vlan. VLAN access-map configuration is very similar to the Route-map configuration. A Vlan access-map is placed on the whole Vlan, which means [...]]]></description>
			<content:encoded><![CDATA[<p>In this post I will discuss Vlan access control lists (VACL), also called VLAN access Map or VLAN Map. A VLAN Access-map allows us to filter incoming and outgoing traffic in a switch Vlan. VLAN access-map configuration is very similar to the Route-map configuration.</p>
<p>A Vlan access-map is placed on the whole Vlan, which means that the incoming and outgoing traffic in a Vlan are filterd by the VLan access-map. We can apply a VLAN access-map to a Layer3 access-list and also to a mac access-list.</p>
<p>We know that the usual access control list (ACL), which is the most well known concept, has an implied DENY IP ANY ANY at the end. Of course, a VACL has the same implied deny statement, but this is not recommended, as we will see next.</p>
<p>Because a normal ACL checks only Layer 3 packet traffic, therefore it doesn’t block Layer 2 protocols like STP, VTP, ARP etc. On the other hand, a VLAN access-map blocks L2 protocols (in addition to Layer3), if we don’t explicitly allow them. That’s why it’s recommended to have an implicit deny all at the end.</p>
<p>Looking now at the details, let’s consider the following example: we have two Routers R1 and R2 which are in the same VLAN (Broadcast Domain) and they are connected to each other via a switch as shown below. Let’s block only Telnet protocol from R1 and permit all the rest.</p>
<p><img class="aligncenter size-full wp-image-1057" title="vlan-access-map" src="http://www.networkstraining.com/wp-content/uploads/2011/10/vlan-access-map.jpg" alt="" width="505" height="259" /></p>
<p>Before starting configuration, let’s check if telnet works from R1.</p>
<p>R1#<strong>telnet 192.168.10.2</strong><br />
Trying 192.168.10.2 &#8230; Open</p>
<p>User Access Verification</p>
<p>Password:</p>
<p>R1#<strong>quit</strong></p>
<p>[Connection to 192.168.10.2 closed by foreign host]<br />
R1#</p>
<p>As we see, telnet is working, so now let’s start the VLAN access-map configuration which will block telnet and permit everything else.</p>
<p><em>!Create access-list, by which interesting traffic will be matched. As I’ve already said, the principle of VLAN access-map config is similar to the route-map working principle. Later we snap this access-list to a VLAN access-map.</em></p>
<p>switch(config)#<strong>ip access-list extended  restrict_telnet_R2</strong><br />
switch(config-ext-nacl)#<strong>permit tcp host 192.168.10.1 host 192.168.10.2 eq 23</strong></p>
<p>After this we’ll create a vlan access-map, which has two main parameters: action and match.</p>
<p>Match: by this parameter the interesting traffic is matched and here RACL or MAC ACL can be applied as well.</p>
<p>Action: what to do with matched traffic. Two main parameters exist: Drop and Forward. In case of Drop, matched traffic will be dropped, and in case of forward, matched traffic will be allowed. Also, on High-End devices, a Redirect and Capture parameters also exist in the Action statement.</p>
<p>In our case we must block matched traffic and permit all the rest.<br />
switch(config-ext-nacl)#<strong>vlan access-map VACL</strong> <strong>10</strong><br />
switch(config-access-map)#<strong>action drop</strong><br />
switch(config-access-map)#<strong>match ip address restrict_telnet_R2</strong><br />
switch(config-access-map)#<strong>vlan access-map VACL 20 </strong><br />
switch(config-access-map)#<strong>action forward<br />
</strong>switch(config-access-map)#<strong>exit</strong></p>
<p>After creating the VLAN access-map, it should be applied to a VLAN or VLANs. In this case we’ll apply it to VLAN 10 which is specified by “vlan-list 10”.</p>
<p>switch(config)#<strong>vlan filter VACL vlan-list 10</strong></p>
<p>By this configuration is completed. Let’s see if telnet is blocked and ping works.</p>
<p>R1#<strong>ping 192.168.10.2</strong></p>
<p>Type escape sequence to abort.<br />
Sending 5, 100-byte ICMP Echos to 192.168.10.2, timeout is 2 seconds:<br />
!!!!!</p>
<p>R1#<strong>telnet 192.168.10.2</strong><br />
Trying 192.168.10.2 &#8230;<br />
<strong>% Connection timed out; remote host not responding</strong></p>
<p>As we see, ping is okay from R1 and telnet is blocked as we planned.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.networkstraining.com/vlan-access-map-example-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Private Vlan Configuration</title>
		<link>http://www.networkstraining.com/private-vlan-configuration/</link>
		<comments>http://www.networkstraining.com/private-vlan-configuration/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 19:23:16 +0000</pubDate>
		<dc:creator>Blog Admin</dc:creator>
				<category><![CDATA[Cisco Switches]]></category>

		<guid isPermaLink="false">http://www.networkstraining.com/?p=1038</guid>
		<description><![CDATA[We know that a Layer 2 VLAN is an isolated Broadcast Domain and for communicating between VLANs a Layer 3 Device is required for inter-VLAN Routing. A Private VLAN gives us the  opportunity to divide a VLAN into Sub VLANs. In the case of PVLAN, a normal VLAN is mapped on Secondary VLANs. This helps [...]]]></description>
			<content:encoded><![CDATA[<p>We know that a Layer 2 VLAN is an isolated Broadcast Domain and for communicating between VLANs a Layer 3 Device is required for inter-VLAN Routing. A Private VLAN gives us the  opportunity to divide a VLAN into Sub VLANs. In the case of PVLAN, a normal VLAN is mapped on Secondary VLANs. This helps us to restrict devices being connected in the same normal VLAN (subnet) to communicate with each other. Catalyst 3560 and higher models support PVLAN.</p>
<p>Often PVLANs are used in cases where servers are located in a DMZ on the same Layer2 Vlan and we want to restrict these servers to communicate between them. This helps a lot in security. If the servers are publicly accessible from the Internet, when one of the servers is compromised by hackers, we can block the attacker to access the other servers on the same Vlan. Of course we can do this with a L3 device or firewall, but in this case each server should have it’s own VLAN and as a result we’ll get a complex network. In the case of PVLAN, we’ll have one network (VLAN) and we’ll restrict the connection between servers by creating secondary VLANs.</p>
<p><span style="text-decoration: underline;">Private VLAN Types and Port Types:</span></p>
<p><strong>Promiscuous (P)</strong>: Usually connects to a router (Default gateway) and also to span port &#8211; a type of a port which is allowed to send and receive frames from any other port on the Primary VLAN.</p>
<p><strong>Isolated (I)</strong>: This type of port is only allowed to communicate with P-ports – they are “stub”. This type of port usually connects to hosts. Only one isolated VLAN is created. The ports, which are in isolated VLAN, can communicate to each other.</p>
<p><strong>Community (C)</strong>: The ports in the same Community can communicate with each other and also are connected to Promiscuous port. There are multiple Communities available.</p>
<p>Community ports are allowed to talk to their buddies, sharing the same group (of course they can talk to P-ports).</p>
<p><span style="text-decoration: underline;">Let’s see how to configure PVLANs</span></p>
<p>Equipment Used in this LAB:</p>
<p>Cisco  Catalyst 3560  &#8211; C3560-IPSERVICES-M  Version 12.2(50)SE<br />
Cisco Router 2801 -  C2801-ADVIPSERVICESK9-M  Version 12.4(9)T4</p>
<p><img class="aligncenter size-full wp-image-1039" title="private vlans network" src="http://www.networkstraining.com/wp-content/uploads/2011/08/PVLANS.jpg" alt="" width="550" height="650" /></p>
<p>Scenario: Create one Community vlan, in which SRV1 and SRV2 will belong to. Create also an Isolated VLAN, in which SRV3 and SRV4 will belong to. Make Ge0/1 promiscuous and connect to default gateway (router). According to this configuration, SRV1 and SRV2 can talk to each other and also with Router (Default Gateway). On the other hand, Servers in Isolated VLAN (SRV3 and SRV4) will not communicate between each other and also will not be able to talk with F0/0 (Router-Default Gateway).</p>
<p>Before starting PVLAN configuration, switching VTP Mode to Transparent is required. If VTP works in other mode, PVLAN will not work.</p>
<p><em>!switch to Transparent mode</em></p>
<p><strong>Switch(config)# vtp mode transparent<br />
</strong>Setting device to VTP TRANSPARENT mode.</p>
<p>!Create Isolated VLAN</p>
<p><strong>Switch(config)# vlan 102<br />
Switch(config-vlan)# private-vlan isolated</strong></p>
<p><em>!create community vlan</em></p>
<p><strong>Switch(config)# vlan 101</strong></p>
<p><strong>Switch(config-vlan)#private-vlan community </strong></p>
<p><em>!Create Primary VLAN and map with secondary vlans<br />
</em><strong>Switch(config-vlan)# vlan 100<br />
Switch(config-vlan)# private-vlan primary<br />
switch(config-vlan)# private-vlan association 101 102</strong></p>
<p>Our Complete Configuration looks Like This:</p>
<p><strong>vlan 100<br />
private-vlan primary<br />
private-vlan association 101 102<br />
!<br />
vlan 101<br />
private-vlan community</strong></p>
<p><strong>vlan 102<br />
private-vlan isolated</strong></p>
<p><em>! Create promiscuous port and map with the other vlans</em></p>
<p><strong>Switch(config)# interface ge0/1<br />
Switch(config-if)# switchport mode private-vlan promiscuous<br />
Switch(config-if)# switchport private-vlan mapping 100 101 102</strong></p>
<p><em>! association of Ge0/2 and Ge0/3 ports with Primary and Secondary VLANS. According to our scenario Ge0/2 and Ge0/3 should be in community Vlan. </em></p>
<p><strong>Switch(config)# interface range ge0/2-ge0/3<br />
Switch(config-if)# switchport mode private-vlan host<br />
Switch(config-if)# switchport private-vlan host-association 100 101</strong></p>
<p><em>! association Ge0/4 and Ge0/5 ports with Primary and Secondary VLANS. According to our !scenario Ge0/4 and Ge0/ should be in Isolated Vlan. </em></p>
<p><strong>Switch(config)# interface range ge0/4-ge0/5<br />
Switch(config-if)# switchport mode private-vlan host<br />
Switch(config-if)# switchport private-vlan host-association 100 102</strong></p>
<p>Configuration is completed now so let’s see how the output looks like.</p>
<p>Switch# <strong>show interface status</strong></p>
<p>Port      Name               Status       Vlan       Duplex  Speed Type<br />
Gi0/1                        connected    100        a-full  a-100 10/100BaseTX<br />
Gi0/2                        connected    100,101 a-full  a-100 10/100/0BaseTX<br />
Gi0/3                        connected    100,101 a-full  a-100 10/100BaseTX<br />
Gi0/4                        connected    100,102 a-full  a-100 10/100BaseTX<br />
Gi0/5                        connected    100,102 a-full  a-100 10/100BaseTX</p>
]]></content:encoded>
			<wfw:commentRss>http://www.networkstraining.com/private-vlan-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco Switching Products</title>
		<link>http://www.networkstraining.com/cisco-switching-products/</link>
		<comments>http://www.networkstraining.com/cisco-switching-products/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 19:28:14 +0000</pubDate>
		<dc:creator>Blog Admin</dc:creator>
				<category><![CDATA[Cisco Switches]]></category>

		<guid isPermaLink="false">http://www.networkstraining.com/?p=1023</guid>
		<description><![CDATA[Cisco Systems Inc. supports a broad range of local area network (LAN) switching architecture technologies and platforms.  The general minimal requirements that the Cisco switching platforms are designed to address include the following: High-performance switched Ethernet, capable of delivering 100 Mbps and 1Gbps to the desktop, and 1Gbps or 10Gbps uplinks. Quality of Service (QoS) [...]]]></description>
			<content:encoded><![CDATA[<p>Cisco Systems Inc. supports a broad range of local area network (LAN) switching architecture technologies and platforms.  The general minimal requirements that the Cisco switching platforms are designed to address include the following:</p>
<ul>
<li>High-performance switched Ethernet, capable of delivering 100 Mbps and 1Gbps to the desktop, and 1Gbps or 10Gbps uplinks.</li>
<li>Quality of Service (QoS) features permitting prioritization of delay-sensitive traffic and control over packet delay and jitter.</li>
<li>Simple, highly structured, and deterministic design (Predictable – in both normal and failure recovery modes).</li>
<li>Support for both IP version 4 and IP version 6 protocols.</li>
<li>Fault tolerance (Redundancy for critical components and links ‑ eliminating network single-points-of-failure).</li>
<li>Flexibility (Network logically partitioned at Layers 2, 3 and 4, to direct traffic flow).</li>
<li>Secured through authentication, authorization and accounting (AAA) controls.</li>
<li>Modular design capable of supporting new applications and network growth without requiring “fork-lift” upgrades.</li>
<li>Scalability for cost-effective delivery of the smallest to the largest telecommunications rooms and campuses</li>
<li>Multicast protocol support for end-to-end management and optimization of streaming content delivery.</li>
<li>Switches capable of powering IP telephones (via phantom power).</li>
<li>Capable of being remotely monitored and managed using network management tools, such as HP Openview.</li>
</ul>
<p>All Cisco switches are based on a distributed hardware architecture in which the LAN switching functions are separated from the “control plane” functions of switch management by utilizing both one or more general-purpose central processing chips and port or line card application-specific integrated circuits (ASICs).</p>
<p>The general-purpose CPU handles network management functions, like user logins, SNMP, and maintenance operations like operating system booting.  The general-purpose processor controls the configuration of the switch platforms with a command-line interface.  The ASICs optimize packet and frame switching at the port and line card level in order to reduce inter-frame delays and increase overall system throughput.</p>
<p>Older Cisco switches used an operating system called CatOS, with a command-line syntax based on set and clear statements.  Newer switch use an operating system referred to as the Cisco Internetwork Operating System (IOS), which is common across both switching and routing platforms.  The older CatOS is end-of-life and end-of-sale.  Only configurations involving IOS will be shown here.  A newer switching operating system based on the Cisco next-generation Nexus platforms is called NXOS, but is nearly identical to the IOS command syntax, and most of the Cisco switch product is based on IOS.</p>
<p>Cisco switching utilizes recommendations for a hierarchical design in switched network infrastructures, called core, distribution, and access layers.  It is acceptable to combine the functions of the core and distribution layers in smaller switched networks, which is called a collapsed core design.  The functions of each layer are as follows:</p>
<p><strong>Core layer</strong></p>
<ul>
<li>Links to WAN (Internet or other wide-area network)</li>
<li>Links to distribution switches</li>
<li>Additional Virtual Local Area Networks (VLANs) —Used by the system for routed ports as well as WAN ports</li>
</ul>
<p><strong>Distribution Layer</strong></p>
<ul>
<li>Server connections</li>
<li>Links to downstream (closet) access switches via layer 2 or layer 3 links.</li>
<li>Site services, like wireless LAN controllers</li>
<li>Service VLANs—To forward traffic to the service modules, such as the client VLAN of a content switch</li>
<li>Fault tolerant VLANs—For redundancy with CSM, FWSM, CSS, and so forth</li>
</ul>
<p><strong>Access Layer</strong></p>
<ul>
<li>Client connectivity at 10/100/1000Mbps</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.networkstraining.com/cisco-switching-products/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deleting the VLAN Database from a Cisco Switch</title>
		<link>http://www.networkstraining.com/deleting-the-vlan-database-from-a-cisco-switch/</link>
		<comments>http://www.networkstraining.com/deleting-the-vlan-database-from-a-cisco-switch/#comments</comments>
		<pubDate>Sun, 14 Nov 2010 20:28:09 +0000</pubDate>
		<dc:creator>Blog Admin</dc:creator>
				<category><![CDATA[Cisco Switches]]></category>
		<category><![CDATA[how to delete switch configuration]]></category>
		<category><![CDATA[how to delete switch vlans]]></category>
		<category><![CDATA[vlan.dat]]></category>

		<guid isPermaLink="false">http://www.networkstraining.com/?p=919</guid>
		<description><![CDATA[If you have your own Cisco switch equipment at your home lab or at your work environment you might have encountered the situation that you want to completely erase the whole switch configuration including any Vlans that are already configured on the switch. In a Cisco switch, erasing the switch startup configuration is one thing [...]]]></description>
			<content:encoded><![CDATA[<p>If you have your own Cisco switch equipment at your home lab or at your work environment you might have encountered the situation that you want to completely erase the whole switch configuration including any Vlans that are already configured on the switch. In a Cisco switch, erasing the switch startup configuration is one thing and erasing the vlans that exist on the switch is another thing.</p>
<p>It is a good practice to completely erase everything on a switch (both switch configuration and switch Vlans) before using the switch in another part of your network. This is important in order to avoid any network conflicts because of any old configuration settings that are already configured on the switch.</p>
<p>Now let us see how to delete the configuration and Vlans from a Cisco switch.</p>
<p><strong>1) <span style="text-decoration: underline;">Deleting the switch configuration</span></strong></p>
<p>This is the easy part. It’s the same as deleting the configuration from any other Cisco network IOS device. Basically you need to delete the “<strong>startup-configuration</strong>” and then reboot the switch.</p>
<p><strong>Switch#erase startup-config</strong></p>
<p><em>Erasing the nvram filesystem will remove all configuration files! Continue?</em></p>
<p><em>[confirm]</em></p>
<p><em>[OK]</em></p>
<p><em>Erase of nvram: complete</em></p>
<p><strong>Switch#reload</strong></p>
<p><strong>2) <span style="text-decoration: underline;">Deleting the switch Vlans</span></strong></p>
<p>The strange part is that after deleting the switch configuration you will notice that the Vlans are still there.</p>
<p><strong>Switch#show vlan brief</strong></p>
<p>2   VLAN0002                         active<br />
3   VLAN0003                         active<br />
4   VLAN0004                         active</p>
<p>By executing the command “<strong>show vlan brief</strong>” you can see that there are 3 vlans configured on the switch. These vlans are stored in a file in flash memory called “<strong>vlan.dat</strong>”. You can see this file if you read what is stored in the flash:</p>
<p><strong>Switch#show flash:</strong></p>
<p><em>Directory of flash:/</em></p>
<p><em>1  -rw-     4414921          &lt;no date&gt;  c2960-lanbase-mz.122-25.FX.bin</em></p>
<p><em>2  -rw-         616          &lt;no date&gt;  <strong>vlan.dat</strong></em></p>
<p><em>64016384 bytes total (59600847 bytes free)</em></p>
<p>As you can see from output above, the file “<strong>vlan.dat</strong>” is stored in flash. You have to delete this file in order to completely erase all vlans on the switch.</p>
<p><strong>Switch#delete vlan.dat</strong></p>
<p><em>Delete filename [vlan.dat]?</em></p>
<p><em>Delete flash:/vlan.dat? [confirm]</em></p>
<p><strong>Switch#sh flash</strong></p>
<p><em>Directory of flash:/</em></p>
<p><em>1  -rw-     4414921          &lt;no date&gt;  c2960-lanbase-mz.122-25.FX.bin</em></p>
<p><em>64016384 bytes total (59601463 bytes free)</em></p>
<p><strong>Switch#reload</strong></p>
<p>After executing the command “<strong>delete vlan.dat</strong>” just hit enter twice and it will be gone. Then you have to reload the switch.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.networkstraining.com/deleting-the-vlan-database-from-a-cisco-switch/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Basic Cisco Switch Configuration</title>
		<link>http://www.networkstraining.com/basic-cisco-switch-configuration/</link>
		<comments>http://www.networkstraining.com/basic-cisco-switch-configuration/#comments</comments>
		<pubDate>Thu, 04 Nov 2010 09:59:55 +0000</pubDate>
		<dc:creator>Blog Admin</dc:creator>
				<category><![CDATA[Cisco Switches]]></category>
		<category><![CDATA[cisco switch configuration guide]]></category>
		<category><![CDATA[step by step switch configuration]]></category>

		<guid isPermaLink="false">http://www.networkstraining.com/?p=912</guid>
		<description><![CDATA[In my opinion, the Cisco switches are the best in the market. Versatile, reliable, flexible and powerful, the Cisco switch product line (such as the 2960, 3560, 3750, 4500, 6500 etc) offer unparalleled performance and features. Although a Cisco switch is a much simpler network device compared with other devices (such as routers and firewalls [...]]]></description>
			<content:encoded><![CDATA[<p>In my opinion, the Cisco switches are the best in the market. Versatile, reliable, flexible and powerful, the Cisco switch product line (such as the 2960, 3560, 3750, 4500, 6500 etc) offer unparalleled performance and features.</p>
<p>Although a Cisco switch is a much simpler network device compared with other devices (such as routers and firewalls for example), many people have difficulties to configure a Cisco Catalyst Switch. Unlike other lower class switch vendors (which are plug-and-play), the Cisco switch needs some initial basic configuration in order to enable management, security and some other important features.</p>
<p>In this article I will describe the basic steps needed to configure a Cisco switch from scratch. I don’t like graphical GUI or web management at all, so I will show you command line configuration which is much more powerful and makes the administrators learn what they are doing on the device.</p>
<p><span style="text-decoration: underline;">STEP1:</span> <span style="text-decoration: underline;">Connect to the device via console</span></p>
<p>Use a terminal emulation software such as PuTTY and connect to the console of the switch. You will get the initial command prompt “<strong>Switch&gt;</strong>”</p>
<p>Type “<strong>enable</strong>” and hit enter. You will get into privileged mode (“<strong>Switch#</strong>”)</p>
<p> Now, get into Global Configuration Mode:</p>
<p><strong>Switch# configure terminal</strong><br />
<strong>Switch(config)#</strong></p>
<p><span style="text-decoration: underline;">STEP2: Set up a hostname for the particular switch to distinguish it in the network</span></p>
<p><strong>Switch(config)# hostname access-switch1</strong><br />
<strong>access-switch1(config)#</strong></p>
<p><span style="text-decoration: underline;">STEP3: Configure an administration password (enable secret password)</span></p>
<p><strong>access-switch1(config)# enable secret <em>somestrongpass</em></strong></p>
<p><span style="text-decoration: underline;">STEP4: Configure a password for Telnet access</span></p>
<p><strong>access-switch1(config)# line vty 0 15</strong><br />
<strong>access-switch1(config-line)# password <em>strongtelnetpass</em></strong><br />
<strong>access-switch1(config-line)# login</strong><br />
<strong>access-switch1(config-line)# exit</strong><br />
<strong>access-switch1(config)#</strong></p>
<p><span style="text-decoration: underline;">STEP5: Define which IP addresses are allowed to access the switch via Telnet</span></p>
<p><strong>access-switch1(config)# </strong><strong>ip access-list standard TELNET-ACCESS</strong><br />
<strong>access-switch1(config-std-nacl)# permit 10.1.1.100</strong><br />
<strong>access-switch1(config-std-nacl)# permit 10.1.1.101</strong><br />
<strong>access-switch1(config-std-nacl)# exit</strong></p>
<p><em>!Apply the access list to Telnet VTY Lines</em><br />
<strong>access-switch1(config)# line vty 0 15</strong><br />
<strong>access-switch1(config-line)# access-class TELNET-ACCESS in</strong><br />
<strong>access-switch1(config-line)# exit</strong><br />
<strong>access-switch1(config)#</strong></p>
<p><span style="text-decoration: underline;">STEP6: Assign IP address to the switch for management</span></p>
<p><em>!Management IP is assigned to Vlan 1 by default</em><br />
<strong>access-switch1(config)# </strong><strong>interface vlan 1</strong><br />
<strong>access-switch1(config-if)# ip address 10.1.1.200 255.255.255.0</strong><br />
<strong>access-switch1(config-if)# exit</strong><br />
<strong>access-switch1(config)#</strong></p>
<p><span style="text-decoration: underline;">STEP7: Assign default gateway to the switch</span></p>
<p><strong>access-switch1(config)# </strong><strong>ip default-gateway 10.1.1.254</strong></p>
<p><span style="text-decoration: underline;">STEP8: Disable unneeded ports on the switch</span></p>
<p><em>! This step is optional but enhances security</em><br />
<em>! Assume that we have a 48-port switch and we don’t need ports 25 to 48</em></p>
<p><strong>access-switch1(config)# </strong><strong>interface range fe 0/25-48</strong><br />
<strong>access-switch1(config-if-range)# shutdown</strong><br />
<strong>access-switch1(config-if-range)# exit</strong><br />
<strong>access-switch1(config)#</strong></p>
<p><span style="text-decoration: underline;">STEP9: Save the configuration</span></p>
<p><strong>access-switch1(config)# </strong><strong>wr</strong></p>
<p>The above are some steps that can be followed for basic set-up of a Cisco switch. Of course there are more things you can configure (such as SNMP servers, NTP, AAA etc) but those depend on the requirements of each particular network.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.networkstraining.com/basic-cisco-switch-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco Switch Network Design</title>
		<link>http://www.networkstraining.com/cisco-switch-network-design/</link>
		<comments>http://www.networkstraining.com/cisco-switch-network-design/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 16:59:25 +0000</pubDate>
		<dc:creator>Blog Admin</dc:creator>
				<category><![CDATA[Cisco Switches]]></category>

		<guid isPermaLink="false">http://www.networkstraining.com/?p=641</guid>
		<description><![CDATA[I was browsing the Cisco support forum the other day and found the following question post which is about designing a Cisco switched network. Some useful answers are given, so I thought I would repost here for my blog readers. You will find useful tips about switch port dimensioning, redundancy etc. I Hope you find [...]]]></description>
			<content:encoded><![CDATA[<p>I was browsing the Cisco support forum the other day and found the following question post which is about designing a Cisco switched network. Some useful answers are given, so I thought I would repost here for my blog readers. You will find useful tips about switch port dimensioning, redundancy etc. I Hope you find it useful.</p>
<p><span style="text-decoration: underline;"><strong>Initial Post Question</strong></span></p>
<p>Hello all,</p>
<p>I am relatively new to networking and am currently doing some theory work with network design to gain some knowledge. I&#8217;m sure you have all been there!!</p>
<p>I have a specification which details the needs for the network across a large campus, including number of users, their bandwidth usage, their locations, overall budget etc. I have chosen what servers are need and their locations, and the number of routers needed and their connectivity to each other to build in redundancy. My next step is to calculate how many switches will be needed for each building to get all the users onto the network and this is where I am getting quite confused.</p>
<p>My understanding is that a host connects to one port on the switch and a standard switch has generally around 24 ports. Therefore one switch can theoretically connect only 24 users to the network (perhaps 23 if one of those ports are used to connect to the router). My problem is that is some buildings I have over 400 users (Ive added a small percentage to allow for growth of the company). Does this mean that I need one switch to connect to the router and then another switch on each of the 24 ports to have enough ports to connect this many users? If this or something similar is true how is redundancy built in because if the switch that connects to the router goes down all the users in that building lose their connection. This seems a very expensive solution and probably quite an ugly one.</p>
<p>If anybody could guide me through a solution it would be very much appreciated. I have spent a long time reading articles and such on the internet but nowhere seems to go though this so if you know of a resource that walks you through design a medium/large network that would be great.</p>
<p>Many thanks in advance<br /> Darren</p>
<p><span style="text-decoration: underline;"><strong>Reply 1</strong></span></p>
<p>Hi Darren,</p>
<p>To answer a couple of your points, you can get access switches with 48 ports (Cisco 2960 or 3560 for example).<br /> If you have 400 users in a building, will all 400 user locations be cabled back to a single network cabinet (closet)?<br /> If they are then you may be better off looking at a chassis based switch such as the 4500 series for example.<br /> If not, you might want to to distribute the access switches in different cabinets around the building and link them back to a central distribution switch or router.<br /> The final design will depend on the physical size of the building because don&#8217;t forget that you are restricted to 100 meters of UTP cabling between the user outlet port and the switch.</p>
<p>Hope that gives you some pointers.</p>
<p>Pete</p>
<p><span style="text-decoration: underline;"><strong>Reply 2</strong></span></p>
<p>Hi Darren,</p>
<p>To have redundancy in network you should have redundant pair of devices in your network to support redundancy and to support 400 users you can have chassis based switches with ethernet modules to support more number of users.</p>
<p>with you setup redundancy will be the main question as one router and local lan so the switch which is connected to router goes down then network outage.</p>
<p>The better way is to have dual router and dual switch in bundling mode and connect a cris cross cable between router and switch to have full redundancy in your network.In this fashion you can achive full redundancy and no network outage if any one of the device goes down.</p>
<p>Hope that helps out your query !!</p>
<p>Regards</p>
<p>Ganesh.H</p>
<p><span style="text-decoration: underline;"><strong>Reply 3</strong></span></p>
<p>Hello Darren,</p>
<p>IMHO the design is mainly dependent on how the connectivity and the requirements per floor( if any). If there is a per floor cabinet then may be you can use C3750 stack for access layer solution per floor.To increase any capacity needs you just keep adding to the stacks. Then if there is fiber wiring between floors  available you can chose to interconnect access layer and distribution using that.  Say one closet/cabinet on any floor as the collapsed distribution model, the choice is vast here c3750/4500/6503. The access layer c3750 do come with 48 ports and 4 SFP based uplink ports.  so you can use the sfp based uplink ports to connected these back to your collapsed distribution layer, which becomes your default gateway and may be the STP root port too. Now for redundancy, IMHO the access layer needs to be dual connected to a redundant gateway model (each acccess stack connected to both gateways) as Ganesh suggested earlier. You can either use HSRP/VRRP to provide L3 gateway redundancy. You can also use etherchannel for uplinks to provide more redundancy. Of course if one switch fails in the stack then we loose those ports, but still the other switches on the stack will work. this is just my thoughts on you requirements.</p>
<p>Hope that helps.</p>
<p>Deesh</p>
]]></content:encoded>
			<wfw:commentRss>http://www.networkstraining.com/cisco-switch-network-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to configure a Cisco Layer 3 switch-InterVLAN Routing</title>
		<link>http://www.networkstraining.com/how-to-configure-a-cisco-layer-3-switch-intervlan-routing/</link>
		<comments>http://www.networkstraining.com/how-to-configure-a-cisco-layer-3-switch-intervlan-routing/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 13:15:19 +0000</pubDate>
		<dc:creator>Blog Admin</dc:creator>
				<category><![CDATA[Cisco Switches]]></category>
		<category><![CDATA[intervlan routing]]></category>
		<category><![CDATA[layer 3 switch]]></category>

		<guid isPermaLink="false">http://www.networkstraining.com/?p=559</guid>
		<description><![CDATA[Cisco Catalysts switches equipped with the Enhanced Multilayer Image (EMI) can work as Layer 3 devices with full routing capabilities. Example switch models that support layer 3 routing are the 3550, 3750, 3560 etc. On a Layer3-capable switch, the port interfaces work as Layer 2 access ports by default, but you can also configure them [...]]]></description>
			<content:encoded><![CDATA[<p>Cisco Catalysts switches equipped with the Enhanced Multilayer Image (EMI) can work as Layer 3 devices with full routing capabilities. Example switch models that support layer 3 routing are the 3550, 3750, 3560 etc.</p>
<p>On a Layer3-capable switch, the port interfaces work as Layer 2 access ports by default, but you can also configure them as &#8220;<strong>Routed Ports</strong>&#8221; which act as normal router interfaces. That is, you can assign an IP address directly on the routed port. Moreover, you can configure also a <strong>Switch Vlan Interface</strong> (<strong>SVI</strong>) with the &#8220;interface vlan&#8221; command which acts as a virtual layer 3 interface on the Layer3 switch.</p>
<p>On this post I will describe a scenario with a Layer3 switch acting as &#8220;Inter Vlan Routing&#8221; device together with two Layer2 switches acting as closet access switches. See the diagram below:</p>
<p style="text-align: center;"><img class="alignnone" title="layer 3 switch intervlan routing" src="http://www.networkstraining.com/images/Cisco-Layer3-Switch-Routing.jpg" alt="" width="379" height="668" /></p>
<p>Interface Fa0/48 of the Layer3 switch is configured as a Routed Port with IP address 10.0.0.1. Two Vlans are configured on the L3 switch, Vlan10 and Vlan20. For Vlan10 we will create an SVI with IP address 10.10.10.10 and for Vlan20 an SVI with IP address 10.20.20.20. These two IP addresses will be the default gateway addresses for hosts belonging to Vlan10 and Vlan20 on the Layer2 switches respectively. That is, hosts connected on Vlan10 on the closet L2 switches will have as default gateway the IP address 10.10.10.10. Similarly, hosts connected on Vlan20 on the closet switches will have address 10.20.20.20 as their default gateway. Traffic between Vlan10 and Vlan20 will be routed by the L3 Switch (InterVlan Routing). Also, all interfaces connecting the three switches must be configured as <strong>Trunk Ports</strong> in order to allow Vlan10 and Vlan20 tagged frames to pass between switches. Let’s see a configuration snapshot for all switches below:</p>
<p><span style="text-decoration: underline;">Cisco L2 Switch (same configuration for both switches)</span></p>
<p><em>!  Create VLANs 10 and 20 in the switch database<br />
</em><strong>Layer2-Switch# configure terminal<br />
Layer2-Switch(config)# vlan 10<br />
Layer2-Switch(config-vlan)# end</strong></p>
<p><strong>Layer2-Switch(config)# vlan 20<br />
Layer2-Switch(config-vlan)# end</strong></p>
<p><em>!  Assign Port Fe0/1 in VLAN 10<br />
</em><strong>Layer2-Switch(config)# interface fastethernet0/1<br />
Layer2-Switch(config-if)# switchport mode access<br />
Layer2-Switch(config-if)# switchport access vlan 10<br />
Layer2-Switch(config-if)# end</strong></p>
<p><em>!  Assign Port Fe0/2 in VLAN 20<br />
</em><strong>Layer2-Switch(config)# interface fastethernet0/2<br />
Layer2-Switch(config-if)# switchport mode access<br />
Layer2-Switch(config-if)# switchport access vlan 20<br />
Layer2-Switch(config-if)# end</strong></p>
<p><em>!  Create Trunk Port Fe0/24</em><br />
<strong>Layer2-Switch(config)# interface fastethernet0/24<br />
Layer2-Switch(config-if)# switchport mode trunk<br />
Layer2-Switch(config-if)# switchport trunk encapsulation dot1q<br />
Layer2-Switch(config-if)# end</strong></p>
<p><span style="text-decoration: underline;">Cisco Layer 3 Switch</span></p>
<p><em>! Enable Layer 3 routing</em><br />
<strong>Layer3-Switch(config)</strong><strong> # ip routing</strong></p>
<p><em>!  Create VLANs 10 and 20 in the switch database<br />
</em><strong>Layer3-Switch# configure terminal<br />
Layer3-Switch(config)# vlan 10<br />
Layer3-Switch(config-vlan)# end</strong></p>
<p><strong>Layer3-Switch(config)# vlan 20<br />
Layer3-Switch(config-vlan)# end</strong></p>
<p><em>!  Configure a Routed Port for connecting to the ASA firewall</em><strong> </strong><br />
<strong>Layer3-Switch(config)# interface FastEthernet0/48</strong><br />
<strong>Layer3-Switch(config-if)# description To Internet Firewall</strong><br />
<strong>Layer3-Switch(config-if)# no switchport</strong><br />
<strong>Layer3-Switch(config-if)# ip address 10.0.0.1 255.255.255.252</strong></p>
<p><em>!  Create Trunk Ports Fe0/47 Fe0/46</em><br />
<strong>Layer3-Switch(config)# interface fastethernet0/47<br />
Layer3-Switch(config-if)# switchport mode trunk<br />
Layer3-Switch(config-if)# switchport trunk encapsulation dot1q<br />
Layer3-Switch(config-if)# end</strong></p>
<p><strong>Layer3-Switch(config)# interface fastethernet0/46<br />
Layer3-Switch(config-if)# switchport mode trunk<br />
Layer3-Switch(config-if)# switchport trunk encapsulation dot1q<br />
Layer3-Switch(config-if)# end</strong></p>
<p><em>!  Configure Switch Vlan Interfaces (SVI)</em><br />
<strong>Layer3-Switch(config)# interface vlan10</strong><br />
<strong>Layer3-Switch(config-if)# ip address 10.10.10.10 255.255.255.0</strong><br />
<strong>Layer3-Switch(config-if)# no shut</strong></p>
<p><strong>Layer3-Switch(config)# interface vlan20</strong><br />
<strong>Layer3-Switch(config-if)# ip address 10.20.20.20 255.255.255.0</strong><br />
<strong>Layer3-Switch(config-if)# no shut</strong></p>
<p><em>!  Configure default route towards ASA firewall</em><br />
<strong>Layer3-Switch(config)# ip route 0.0.0.0 0.0.0.0 10.0.0.2</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.networkstraining.com/how-to-configure-a-cisco-layer-3-switch-intervlan-routing/feed/</wfw:commentRss>
		<slash:comments>114</slash:comments>
		</item>
		<item>
		<title>How to Configure Cisco VTP &#8211; VLAN Trunk Protocol</title>
		<link>http://www.networkstraining.com/how-to-configure-cisco-vtp-vlan-trunk-protocol/</link>
		<comments>http://www.networkstraining.com/how-to-configure-cisco-vtp-vlan-trunk-protocol/#comments</comments>
		<pubDate>Sat, 16 May 2009 18:22:26 +0000</pubDate>
		<dc:creator>Blog Admin</dc:creator>
				<category><![CDATA[Cisco Switches]]></category>
		<category><![CDATA[cisco switch vtp]]></category>
		<category><![CDATA[cisco vtp]]></category>
		<category><![CDATA[vlan trunk protocol]]></category>

		<guid isPermaLink="false">http://www.networkstraining.com/?p=445</guid>
		<description><![CDATA[In a previous post I explained how to configure VLANs on Cisco Switches. That was a simple scenario with just two switches connected with a trunk port and having shared VLANs belonging to both switches. Now, imagine the situation where you need to manage a huge Layer 2 switched network with tens or hundreds of [...]]]></description>
			<content:encoded><![CDATA[<p>In a previous post I explained <a title="how to configure vlans on cisco switch" href="http://www.networkstraining.com/how-to-configure-vlans-on-a-cisco-switch" target="_blank">how to configure VLANs on Cisco Switches</a>. That was a simple scenario with just two switches connected with a trunk port and having shared VLANs belonging to both switches. Now, imagine the situation where you need to manage a huge Layer 2 switched network with tens or hundreds of switches and with VLANs spread across all switches in the network. This would be a daunting task for any network administrator as he would have to connect on all switches and add or remove VLANs accordingly every time a new vlan is required in the network.</p>
<p>The Cisco Vlan Trunk Protocol (VTP) is a proprietary protocol available on all Cisco Catalyst switches and is designed to reduce the administration complexity and effort of managing many Layer 2 switches. Basically you select one switch in the network (usually a central switch) and configure it to be the <strong>VTP Server</strong> of the network. All other switches are configured as <strong>VTP Clients</strong>. Now, all VLAN administration is done on the VTP Server switch only. If you add a new VLAN on the VTP server switch, this configuration change is propagated on all VTP client switches which automatically add this VLAN to their database. Similarly, by deleting a VLAN on the server, all client switches delete that VLAN from their database.</p>
<p>A Cisco switch can be configured to operate in three VTP modes:</p>
<ul type="disc">
<li><strong>VTP Server Mode</strong> &#8211; This is the default mode for switches. A VTP server switch can add, modify and delete VLANs for the whole VTP domain.</li>
<li><strong>VTP Transparent Mode</strong> &#8211; In this mode, the switch does not participate in the VTP domain. The switch passes VTP messages transparently to other switches but it does not synchronize its VLAN database according to these VTP messages.</li>
<li><strong>VTP Client Mode</strong> &#8211; This is the mode that you configure all switches that you need to have them synchronize their VLAN database according to the VTP server database.</li>
</ul>
<p> <br />
<strong><span style="text-decoration: underline;">Caution: </span></strong>Because VTP Server is the default mode, whenever you connect a new switch in the network, you need to make sure that you configure this switch as VTP Client BEFORE connecting it to the network. This is to avoid the situation where a new switch connected might take the role of the VTP Server for the whole domain and since its VLAN database is still empty, it will cause all other switches in the network to delete all their VLANs.</p>
<p>Another important precaution is to configure also a password for the VTP domain, so that any new switch connected must have the domain password configured by the administrator before participating in the domain.</p>
<p><strong><span style="text-decoration: underline;">Configuration:</span></strong></p>
<p><span style="text-decoration: underline;">VTP Server Switch:</span></p>
<p><em>! Configure first a name for the VTP domain</em><br />
<strong>Vtp-server(config)# vtp domain <em>mynetworkvtpname</em></strong></p>
<p><em>! Configure the switch in server mode</em><br />
<strong>Vtp-server(config)# vtp mode server</strong></p>
<p><em>! Configure a password for the domain</em><br />
<strong>Vtp-server(config)# vtp password vtp123</strong></p>
<p><span style="text-decoration: underline;">VTP Client Switch:</span></p>
<p><em>! Configure first a name for the VTP domain</em><br />
<strong>Vtp-client(config)# vtp domain <em>mynetworkvtpname</em></strong></p>
<p><em>! Configure the switch in client mode</em><br />
<strong>Vtp-client (config)# vtp mode client</strong></p>
<p><em>! Configure the domain password in order to be able to participate</em><br />
<strong>Vtp-client(config)# vtp password vtp123</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.networkstraining.com/how-to-configure-cisco-vtp-vlan-trunk-protocol/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Configure VLANs on a Cisco Switch</title>
		<link>http://www.networkstraining.com/how-to-configure-vlans-on-a-cisco-switch/</link>
		<comments>http://www.networkstraining.com/how-to-configure-vlans-on-a-cisco-switch/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 16:58:07 +0000</pubDate>
		<dc:creator>Blog Admin</dc:creator>
				<category><![CDATA[Cisco Switches]]></category>
		<category><![CDATA[cisco switch vlan]]></category>
		<category><![CDATA[how to configure vlans]]></category>

		<guid isPermaLink="false">http://www.networkstraining.com/?p=425</guid>
		<description><![CDATA[This post will deal with configuring Layer 2 VLANs on Cisco switches. Up to 4094 VLANs can be configured on Cisco catalyst switches. By default, only VLAN 1 is configured on the switch, so if you connect hosts on an out-of-the-box switch they all belong to the same Layer 2 broadcast domain. The need to [...]]]></description>
			<content:encoded><![CDATA[<p>This post will deal with configuring Layer 2 VLANs on <strong>Cisco switches</strong>. Up to 4094 VLANs can be configured on <strong>Cisco catalyst switches</strong>. By default, only VLAN 1 is configured on the switch, so if you connect hosts on an out-of-the-box switch they all belong to the same Layer 2 broadcast domain.</p>
<p>The need to configure several Layer 2 VLANs on a switch arises from the need to segment an internal Local Area Network (LAN) into different IP subnetworks. If you want for example to separate the different departments of your enterprise into different IP subnetworks, then each department should belong to its own Layer 2 VLAN. For example, let&#8217;s assume the following scenario:</p>
<ul class="unIndentedList">
<li> Accounting Department: IP Subnet 192.168.2.0/24 &#8211;&gt; VLAN 2</li>
<li> Management Department: IP Subnet 192.168.3.0/24 &#8211;&gt; VLAN 3</li>
<li> Engineering Department: IP Subnet 192.168.4.0/24 &#8211;&gt; VLAN 4</li>
</ul>
<p>By separating the internal LAN into different IP subnets (and thus different VLANs) allows the network administrators to enforce traffic restrictions if needed between departments and have better control of internal hosts.</p>
<p>VLAN assignment on a switch is configured on a per-interface basis. That is, each switch port interface is assigned individually into a Layer 2 VLAN. If you have more than one switch connected and you want the same VLANs to belong across all switches, then a <strong>Trunk Port</strong> must be configured between the switches. The Trunk Port passes all VLANs between the switches. Let&#8217;s see the following network scenario to help us clarify some concepts.</p>
<p style="text-align: center;"><img class="aligncenter" title="how to configure vlans on cisco switch" src="http://www.networkstraining.com/images/cisco-switch-vlans.jpg" alt="" width="450" height="500" /></p>
<p>On the LAN network above, we have three VLANs. VLAN 2,3, and 4. VLAN 4 belongs both to SWITCH 1 and SWITCH 2, therefore we need a Trunk Port between the two switches in order for hosts in VLAN4 in Switch 1 to be able to communicate with hosts in VLAN4 in Switch 2.</p>
<p>The ports of the two switches shall be configured as following:</p>
<p><span style="text-decoration: underline;">SWITCH 1:</span><br />
Fe0/1 &#8211; Fe0/2 &#8211;&gt; VLAN 2 (Accounting)<br />
Fe0/10 &#8211; Fe0/11 &#8211;&gt; VLAN 4 (Engineering)<br />
Fe0/24 &#8211;&gt; Trunk Port</p>
<p><span style="text-decoration: underline;">SWITCH 2:</span><br />
Fe0/1 &#8211; Fe0/2 &#8211;&gt; VLAN 3 (Management)<br />
Fe0/10 &#8211; Fe0/11 &#8211;&gt; VLAN 4 (Engineering)<br />
Fe0/24 &#8211;&gt; Trunk Port</p>
<p><strong><span style="text-decoration: underline;">Configuration:</span></strong></p>
<p><span style="text-decoration: underline;">Switch 1 Configuration:</span><br />
<em>!  Create VLANs 2 and 4 in the switch database</em><br />
Switch1# configure terminal<br />
Switch1(config)# vlan 2<br />
Switch1(config-vlan)# name Accounting<br />
Switch1(config-vlan)# end</p>
<p>Switch1(config)# vlan 4<br />
Switch1(config-vlan)# name Engineering<br />
Switch1(config-vlan)# end</p>
<p><em>!  Assign Ports Fe0/1 and Fe0/2 in VLAN 2</em><br />
Switch1(config)# interface fastethernet0/1<br />
Switch1(config-if)# switchport mode access<br />
Switch1(config-if)# switchport access vlan 2<br />
Switch1(config-if)# end<br />
Switch1(config)# interface fastethernet0/2<br />
Switch1(config-if)# switchport mode access<br />
Switch1(config-if)# switchport access vlan 2<br />
Switch1(config-if)# end</p>
<p><em>!  Assign Ports Fe0/10 and Fe0/11 in VLAN 4</em><br />
Switch1(config)# interface fastethernet0/10<br />
Switch1(config-if)# switchport mode access<br />
Switch1(config-if)# switchport access vlan 4<br />
Switch1(config-if)# end<br />
Switch1(config)# interface fastethernet0/11<br />
Switch1(config-if)# switchport mode access<br />
Switch1(config-if)# switchport access vlan 4<br />
Switch1(config-if)# end</p>
<p><em>!  Create Trunk Port Fe0/24</em><br />
Switch1(config)# interface fastethernet0/24<br />
Switch1(config-if)# switchport mode trunk<br />
Switch1(config-if)# switchport trunk encapsulation dot1q<br />
Switch1(config-if)# end</p>
<p><span style="text-decoration: underline;">Switch 2 Configuration:</span><br />
<em>!  Create VLANs 3 and 4 in the switch database</em><br />
Switch2# configure terminal<br />
Switch2(config)# vlan 3<br />
Switch2(config-vlan)# name Management<br />
Switch2(config-vlan)# end</p>
<p>Switch2(config)# vlan 4<br />
Switch2(config-vlan)# name Engineering<br />
Switch2(config-vlan)# end</p>
<p><em>!  Assign Ports Fe0/1 and Fe0/2 in VLAN 3</em><br />
Switch2(config)# interface fastethernet0/1<br />
Switch2(config-if)# switchport mode access<br />
Switch2(config-if)# switchport access vlan 3<br />
Switch2(config-if)# end<br />
Switch2(config)# interface fastethernet0/2<br />
Switch2(config-if)# switchport mode access<br />
Switch2(config-if)# switchport access vlan 3<br />
Switch2(config-if)# end</p>
<p><em>!  Assign Ports Fe0/10 and Fe0/11 in VLAN 4</em><br />
Switch2(config)# interface fastethernet0/10<br />
Switch2(config-if)# switchport mode access<br />
Switch2(config-if)# switchport access vlan 4<br />
Switch2(config-if)# end<br />
Switch2(config)# interface fastethernet0/11<br />
Switch2(config-if)# switchport mode access<br />
Switch2(config-if)# switchport access vlan 4<br />
Switch2(config-if)# end</p>
<p><em>!  Create Trunk Port Fe0/24</em><br />
Switch2(config)# interface fastethernet0/24<br />
Switch2(config-if)# switchport mode trunk<br />
Switch2(config-if)# switchport trunk encapsulation dot1q<br />
Switch2(config-if)# end</p>
]]></content:encoded>
			<wfw:commentRss>http://www.networkstraining.com/how-to-configure-vlans-on-a-cisco-switch/feed/</wfw:commentRss>
		<slash:comments>70</slash:comments>
		</item>
		<item>
		<title>Cisco Switches with Power over Ethernet PoE</title>
		<link>http://www.networkstraining.com/cisco-switches-with-power-over-ethernet-poe/</link>
		<comments>http://www.networkstraining.com/cisco-switches-with-power-over-ethernet-poe/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 17:39:20 +0000</pubDate>
		<dc:creator>Blog Admin</dc:creator>
				<category><![CDATA[Cisco Switches]]></category>
		<category><![CDATA[802.3af]]></category>
		<category><![CDATA[catalyst]]></category>
		<category><![CDATA[poe]]></category>
		<category><![CDATA[power over ethernet cisco switch]]></category>

		<guid isPermaLink="false">http://www.networkstraining.com/?p=173</guid>
		<description><![CDATA[Cisco has been supporting the standardized 802.3af power over ethernet feature since 2004. Catalyst switches with PoE are available as 10/100 PoE or even 10/100/1000 PoE. The Power over Ethernet feature is an excellent option for deployments of Cisco IP Phones. Wireless access points and security cameras can also be powered by PoE switches. The [...]]]></description>
			<content:encoded><![CDATA[<p>Cisco has been supporting the standardized 802.3af power over ethernet feature since 2004. Catalyst switches with PoE are available as 10/100 PoE or even 10/100/1000 PoE. The Power over Ethernet feature is an excellent option for deployments of Cisco IP Phones. Wireless access points and security cameras can also be powered by PoE switches. The specific technology uses the Cat5/Cat6 ethernet cable to deliver power in addition to data, thus removing the need of using power adaptors for devices.</p>
<p>The following Cisco Models support PoE:</p>
<ul>
<li>2960</li>
<li>3750</li>
<li>3560</li>
<li>4500</li>
<li>6500</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.networkstraining.com/cisco-switches-with-power-over-ethernet-poe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

Served from: www.networkstraining.com @ 2012-02-04 07:17:01 -->
