<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Tech-Life in Pink &#187; Commands</title>
	<atom:link href="http://techlifeinpink.com/tag/commands/feed/" rel="self" type="application/rss+xml" />
	<link>http://techlifeinpink.com</link>
	<description>A mish-mash of technology, life, and everything in this lady's world.</description>
	<lastBuildDate>Sat, 10 Mar 2012 21:19:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='techlifeinpink.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/62119425e51958d10ed82ddac4fca977?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Tech-Life in Pink &#187; Commands</title>
		<link>http://techlifeinpink.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://techlifeinpink.com/osd.xml" title="Tech-Life in Pink" />
	<atom:link rel='hub' href='http://techlifeinpink.com/?pushpress=hub'/>
		<item>
		<title>Adding a Switch Port Interface to a VLAN</title>
		<link>http://techlifeinpink.com/2010/10/22/adding-a-switch-port-interface-to-a-vlan/</link>
		<comments>http://techlifeinpink.com/2010/10/22/adding-a-switch-port-interface-to-a-vlan/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 17:00:44 +0000</pubDate>
		<dc:creator>annasaldivar</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Commands]]></category>
		<category><![CDATA[Switches]]></category>

		<guid isPermaLink="false">http://techlifeinpink.com/?p=688</guid>
		<description><![CDATA[In an internet data centre, clients can set up a colocation where they can run their servers for access with the internet. In my job, what I would do is configure the Cisco Catalyst switch 3750 for new colocation clients. It is pretty simple. I check for a free port, assign this to the client, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techlifeinpink.com&#038;blog=7018595&#038;post=688&#038;subd=annasaldivar&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In an internet data centre, clients can set up a colocation where they can run their servers for access with the internet. In my job, what I would do is configure the Cisco Catalyst switch 3750 for new colocation clients. It is pretty simple. I check for a free port, assign this to the client, then assign them to a VLAN.</p>
<p>Here&#8217;s a configuration sample of how it would go:</p>
<blockquote><p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>colo.switch&gt;en</p>
<p>colo.switch&gt;password:</p>
<p>colo.switch#show run int fa 1/0/11</p>
<p>Building configuration&#8230;</p>
<p>Current configuration : 36 bytes</p>
<p>!</p>
<p>interface FastEthernet1/0/11</p>
<p>end</p>
<p>colo.switch#conf t</p>
<p>Enter configuration commands, one per line. End with CNTL/Z.</p>
<p>colo.switch(config)#int fa 1/0/11</p>
<p>colo.switch(config-if)#desc ClientNum &#8211; ClientName &#8211; VLAN 311</p>
<p>colo.switch(config-if)#switchport access vlan 311</p>
<p>% Access VLAN does not exist. Creating vlan 311</p>
<p>colo.switch(config-if)#dup full</p>
<p>colo.switch(config-if)#speed 100</p>
<p>colo.switch(config-if)#storm-control broadcast level pps 10k 9k</p>
<p>colo.switch(config-if)#storm-control multicast level pps 10k 9k</p>
<p>colo.switch(config-if)#storm-control unicast level pps 10k 9k</p>
<p>colo.switch(config-if)#switchport mode access</p>
<p>colo.switch(config-if)#no shut</p>
<p>colo.switch(config-if)#^Z</p>
<p>colo.switch#show run int fa 1/0/11</p>
<p>Building configuration&#8230;</p>
<p>Current configuration : 298 bytes</p>
<p>!</p>
<p>interface FastEthernet1/0/11</p>
<p>description ClientNum &#8211; ClientName &#8211; VLAN 311</p>
<p>switchport access vlan 311</p>
<p>switchport mode access</p>
<p>speed 100</p>
<p>duplex full</p>
<p>storm-control broadcast level pps 10k 9k</p>
<p>storm-control multicast level pps 10k 9k</p>
<p>storm-control unicast level pps 10k 9k</p>
<p>end</p>
<p>colo.switch#copy run start</p>
<p>Destination filename [startup-config]?</p>
<p>Building configuration&#8230;</p>
<p>[OK]</p>
<p>colo.switch#</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p></blockquote>
<p>Always keep in mind when configuring a switch port that there are no existing configurations there that you would be overwriting by mistake. This is why the <strong>show run int fa 1/0/xx</strong> is important as it would display the existing <strong>run</strong>ning-configuration.</p>
<p>When you&#8217;re done with your configurations and have verified them correct, be sure to save them to the memory by using the command <strong>copy run start</strong>.</p>
<p>This post just shows a sample of configuring a switch port to a VLAN. Of course, this is not all that needs to be done for the client as they wouldn&#8217;t have access yet to and from the internet. The next step would be assigning them IP addresses and configuring the routes. More of that in another post.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/annasaldivar.wordpress.com/688/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/annasaldivar.wordpress.com/688/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/annasaldivar.wordpress.com/688/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/annasaldivar.wordpress.com/688/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/annasaldivar.wordpress.com/688/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/annasaldivar.wordpress.com/688/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/annasaldivar.wordpress.com/688/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/annasaldivar.wordpress.com/688/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/annasaldivar.wordpress.com/688/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/annasaldivar.wordpress.com/688/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/annasaldivar.wordpress.com/688/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/annasaldivar.wordpress.com/688/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/annasaldivar.wordpress.com/688/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/annasaldivar.wordpress.com/688/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techlifeinpink.com&#038;blog=7018595&#038;post=688&#038;subd=annasaldivar&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techlifeinpink.com/2010/10/22/adding-a-switch-port-interface-to-a-vlan/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a5c4a2d079563d713defff1da78291ba?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">annasaldivar</media:title>
		</media:content>
	</item>
		<item>
		<title>Cisco IOS 10 Basic Commands That Should Be Mastered</title>
		<link>http://techlifeinpink.com/2009/03/25/cisco-ios-10-basic-commands-that-should-be-mastered/</link>
		<comments>http://techlifeinpink.com/2009/03/25/cisco-ios-10-basic-commands-that-should-be-mastered/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 11:00:43 +0000</pubDate>
		<dc:creator>annasaldivar</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Commands]]></category>
		<category><![CDATA[Firewalls]]></category>
		<category><![CDATA[Routers]]></category>
		<category><![CDATA[Switches]]></category>

		<guid isPermaLink="false">http://techlifeinpink.com/?p=122</guid>
		<description><![CDATA[David Davis wrote in TechRepublic about the ten commands that a Cisco professional or network administrator should know when using the Cisco IOS in routers, switches, and firewalls. This is a good reminder for me, and I’m glad to know that I have embedded all of it in my brain already. Below is the list [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techlifeinpink.com&#038;blog=7018595&#038;post=122&#038;subd=annasaldivar&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogs.techrepublic.com.com/networking/?p=546&amp;tag=rbxccnbtr1" target="_blank">David Davis wrote in TechRepublic</a> about the ten commands that a Cisco professional or network administrator should know when using the Cisco IOS in routers, switches, and firewalls. This is a good reminder for me, and I’m glad to know that I have embedded all of it in my brain already.</p>
<p>Below is the list he made plus my comments on what I think about each item.</p>
<p><span style="color:#ff00ff;"><strong>1.    The “?”</strong></span><br />
This is the most helpful command ever. There are thousands of possible commands in the Cisco IOS and this is definitely useful when you don’t know or can’t remember the command to type, or the parameter that should come next.</p>
<p><span style="color:#ff00ff;"><br />
<strong>2.    show running-configuration</strong> <em>(sh run)</em></span><br />
If you want to check the current configuration of the router, switch, or firewall, this is what is used.</p>
<p><span style="color:#ff00ff;"><br />
<strong>3.    copy running-configuration startup-configuration</strong> <em>(copy run start)</em></span><br />
This command will save your current configuration, which is in the RAM, to the nonvolatile RAM (NVRAM). You can also use the <span style="color:#ff00ff;"><em>copy</em></span> command to copy to the TFTP server. If you must turn off your router, do not forget to use this command unless you don’t want to save the configuration changes you made.</p>
<p><span style="color:#ff00ff;"><br />
<strong>4.    show interface</strong> <em>(sh int)</em></span><br />
For troubleshooting, this command is used to check the status of the router’s interfaces.</p>
<p><span style="color:#ff00ff;"><br />
<strong>5.    show ip interface</strong> <em>(sh ip int)</em></span><br />
Much useful information about the configuration and status of the IP protocol and its services, on all interfaces are displayed with this command. Alternatively, you can add <em><span style="color:#ff00ff;">brief</span></em> at the end of the command to get a shorter quick status.</p>
<p style="text-align:left;"><span style="color:#ff00ff;"><img class="aligncenter size-full wp-image-144" title="Cisco 2801 Router" src="http://annasaldivar.files.wordpress.com/2009/03/2788417078_69548349d7.jpg?w=510" alt="Cisco 2801 Router"   /><br />
<strong>6.    config terminal, enable, interface, and router</strong> <em>(conf t, en, int, router)</em></span><br />
These are used to enter different modes in configuring the router.</p>
<p><span style="color:#ff00ff;"><br />
<strong>7.    no shutdown</strong> <em>(no shut)</em></span><br />
This is used to enable an interface, and also useful for troubleshooting when used with <span style="color:#ff00ff;"><em>shut</em></span> (to bring down interface then up).</p>
<p><span style="color:#ff00ff;"><br />
<strong>8.    show ip route</strong> <em>(sh ip ro)</em></span><br />
To check the routing table, use this command.</p>
<p><span style="color:#ff00ff;"><br />
<strong>9.    show version</strong><em> (sh ver)</em></span><br />
This will display the router’s firmware settings, the last time the router was booted, the version of the IOS, the name of the IOS file, the model of the router, and the router’s amount of RAM and Flash.</p>
<p><span style="color:#ff00ff;"><br />
<strong>10.    debug</strong></span><br />
This is helpful in troubleshooting. The <em><span style="color:#ff00ff;">debug</span></em> command is used with other commands like for example, <span style="color:#ff00ff;"><em>d</em><em>ebug ip route</em></span>.</p>
<p>Alright. That should be pretty simple to remember. Commands, stay in my brain please, thank you.</p>
<p><em>Photo Credit: dontthink.feel</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/annasaldivar.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/annasaldivar.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/annasaldivar.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/annasaldivar.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/annasaldivar.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/annasaldivar.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/annasaldivar.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/annasaldivar.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/annasaldivar.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/annasaldivar.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/annasaldivar.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/annasaldivar.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/annasaldivar.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/annasaldivar.wordpress.com/122/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techlifeinpink.com&#038;blog=7018595&#038;post=122&#038;subd=annasaldivar&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techlifeinpink.com/2009/03/25/cisco-ios-10-basic-commands-that-should-be-mastered/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a5c4a2d079563d713defff1da78291ba?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">annasaldivar</media:title>
		</media:content>

		<media:content url="http://annasaldivar.files.wordpress.com/2009/03/2788417078_69548349d7.jpg" medium="image">
			<media:title type="html">Cisco 2801 Router</media:title>
		</media:content>
	</item>
	</channel>
</rss>
