<?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>Cherry's Tech Jottings</title>
	<atom:link href="http://cctechblogs.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://cctechblogs.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sat, 14 Nov 2009 11:53:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='cctechblogs.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Cherry's Tech Jottings</title>
		<link>http://cctechblogs.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://cctechblogs.wordpress.com/osd.xml" title="Cherry&#039;s Tech Jottings" />
	<atom:link rel='hub' href='http://cctechblogs.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Capturing serial traffic on Ethernet with RITE by Jeremy Stretch</title>
		<link>http://cctechblogs.wordpress.com/2009/11/12/rite/</link>
		<comments>http://cctechblogs.wordpress.com/2009/11/12/rite/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 00:02:51 +0000</pubDate>
		<dc:creator>Cherry Cherian</dc:creator>
				<category><![CDATA[Cisco Configuration]]></category>
		<category><![CDATA[Network Admin]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://cctechblogs.wordpress.com/?p=56</guid>
		<description><![CDATA[When it comes to capturing packets traversing an Ethernet switch, Cisco&#8217;s Switched Port Analyzer (SPAN) feature is an invaluable tool. However, replicating traffic across router interfaces poses a problem: SPAN can&#8217;t be used on routers, as the underlying hardware doesn&#8217;t support it. Additionally, the variety of interface types can complicate packet capturing on routers; how [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cctechblogs.wordpress.com&amp;blog=7795806&amp;post=56&amp;subd=cctechblogs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When it comes to capturing packets traversing an Ethernet switch, Cisco&#8217;s <a href="http://www.cisco.com/en/US/products/hw/switches/ps708/products_tech_note09186a008015c612.shtml">Switched Port Analyzer (SPAN)</a> feature is an invaluable tool. However, replicating traffic across router interfaces poses a problem: SPAN can&#8217;t be used on routers, as the underlying hardware doesn&#8217;t support it. Additionally, the variety of interface types can complicate packet capturing on routers; how do we sniff a serial interface with Wireshark running on a laptop, for example?</p>
<p><span id="more-56"></span>Cisco&#8217;s solution is <a href="http://www.cisco.com/en/US/docs/ios/12_3t/12_3t4/feature/guide/gt_rawip.html">IP traffic export</a> (sometimes referred to as Router IP Traffice Export, or RITE). Introduced in IOS 12.3(4)T, RITE allows for the replication of packets from one interface to another on software-switched platforms in the same manner SPAN operates on hardware-based switches. RITE allows us to &#8220;SPAN&#8221; across routed interfaces, even across disparate medium types.</p>
<p>Consider a scenario in which we need a sniffer or IDS to capture IP traffic traversing a PPP serial link between two routers.</p>
<p>We can enable RITE on R1 to replicate WAN traffic to the Ethernet sniffer. Only two items are needed to configure a minimal RITE profile:</p>
<ul>
<li>Physical output interface (the interface connected to our sniffer)</li>
<li>Destination MAC address for the replicated packets (the MAC address of our sniffer)</li>
</ul>
<p>We can see from the diagram that our sniffer is attached to FastEthernet0/0, and we&#8217;ll assume the MAC address of our sniffer is 00-01-02-03-04-05. (Note that as sniffers are generally run in promiscuous mode, <em>any</em> MAC should work in this case. However, RITE won&#8217;t accept a broadcast MAC address.)</p>
<p>Configuring our RITE profile on R1 is straightforward:</p>
<pre>R1(config)# <strong>ip traffic-export profile MyProfile</strong>
R1(conf-rite)# <strong>interface f0/0</strong>
R1(conf-rite)# <strong>mac-address 0001.0203.0405</strong></pre>
<p>The above configuration is all that&#8217;s required for a minimal profile. Additionally, we&#8217;ll include the <code>bidirectional</code> parameter here to ensure that traffic from both directions is replicated (versus only inbound traffic).</p>
<pre>R1(conf-rite)# <strong>bidirectional</strong></pre>
<p>We can also optionally specify an access list and/or sampling rate to limit the type and amount of traffic we capture, respectively, with the <code>incoming</code> and <code>outgoing</code> parameters.</p>
<pre>R1(conf-rite)# <strong>incoming ?</strong>
  access-list  Apply standard or extended access lists to exported traffic
  sample       Enable sampling of exported traffic

R1(conf-rite)# <strong>incoming access-list ?</strong>
  &lt;1-199&gt;      IP access list (standard or extended)
  &lt;1300-2699&gt;  IP expanded access list (standard or extended)
  WORD         Access-list name

R1(conf-rite)# <strong>incoming sample ?</strong>
  one-in-every  Export one packet in every</pre>
<p>Forgoing these options for this scenario, we are ready to apply our RITE policy to R1&#8242;s serial interface. Make sure that you exit RITE configuration before entering interface configuration to avoid modifying the <code>interface</code> parameter of the RITE profile.</p>
<pre>R1(conf-rite)# <strong>exit</strong>
R1(config)# <strong>interface s0/0</strong>
R1(config-if)# <strong>ip traffic-export apply MyProfile </strong>
R1(config-if)#
<em>%RITE-5-ACTIVATE: Activated IP traffic export on interface Serial0/0</em></pre>
<p>The command <code>show ip traffic-export</code> verifies our configuration:</p>
<pre>R1# <strong>show ip traffic-export</strong>
Router IP Traffic Export Parameters
<em>Monitored Interface     Serial0/0</em>
    <em>Export Interface        FastEthernet0/0</em>
    <em>Destination MAC address 0001.0203.0405</em>
    <em>bi-directional traffic export is on</em>
Output IP Traffic Export Information    Packets/Bytes Exported    0/0
    Packets Dropped           0
    Sampling Rate             one-in-every 1 packets
    No Access List configured
Input IP Traffic Export Information Packets/Bytes Exported    15/1500
    Packets Dropped           0
    Sampling Rate             one-in-every 1 packets
    No Access List configured
    Profile MyProfile is Active</pre>
<p>All IP traffic traversing R1&#8242;s Serial0/0 interface is now being replicated out R1&#8242;s FastEthernet0/0 interface toward our sniffer, with one observed exception. Only transit traffic is replicated; inbound traffic destined for R1 itself is also replicated, however outbound traffic generated locally by R1 is <em>not</em>. Also note that only IP traffic is being replicated, and we lose any lower-layer headers (like PPP) due to the change in medium.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cctechblogs.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cctechblogs.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cctechblogs.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cctechblogs.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cctechblogs.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cctechblogs.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cctechblogs.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cctechblogs.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cctechblogs.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cctechblogs.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cctechblogs.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cctechblogs.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cctechblogs.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cctechblogs.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cctechblogs.wordpress.com&amp;blog=7795806&amp;post=56&amp;subd=cctechblogs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cctechblogs.wordpress.com/2009/11/12/rite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/74ea430fdeadb8ea378ca34aea4df547?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CC Techie</media:title>
		</media:content>
	</item>
		<item>
		<title>Cisco&#8217;s NAC hardware explained by David Davis (Techrepublic)</title>
		<link>http://cctechblogs.wordpress.com/2009/06/09/ciscos-nac-hardware-explained-by-david-davis-techrepublic/</link>
		<comments>http://cctechblogs.wordpress.com/2009/06/09/ciscos-nac-hardware-explained-by-david-davis-techrepublic/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 01:52:54 +0000</pubDate>
		<dc:creator>Cherry Cherian</dc:creator>
				<category><![CDATA[Network Admin]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://cctechblogs.wordpress.com/?p=53</guid>
		<description><![CDATA[Cisco Network Admission Control (NAC) is a system to enforce the security policy of your company on all devices attempting network access. The Cisco NAC solution is made up of many different pieces of hardware, software, and services; this article will explain its many pieces. What hardware makes up Cisco’s NAC solution? On Cisco’s network [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cctechblogs.wordpress.com&amp;blog=7795806&amp;post=53&amp;subd=cctechblogs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Cisco Network Admission Control (<a href="http://www.cisco.com/en/US/netsol/ns617/networking_solutions_sub_solution_home.html" target="_blank">NAC</a>) is a system to enforce the security policy of your  company on all devices attempting network access. The Cisco NAC solution is made  up of many different pieces of hardware, software, and services; this article  will explain its many pieces.</p>
<p><span id="more-53"></span></p>
<h2>What hardware makes up Cisco’s NAC solution?</h2>
<p>On Cisco’s network security solutions Web page, you’ll find the following  list of Cisco technologies, all of which play a part in the complete Cisco NAC  solution:</p>
<ul>
<li><a href="http://www.cisco.com/en/US/netsol/ns340/ns394/ns171/ns267/networking_solutions_package.html" target="_blank">Advanced Services for Network Security</a></li>
<li><a href="http://www.cisco.com/en/US/products/sw/secursw/ps5057/index.html" target="_blank">Cisco Security Agent (CSA)</a></li>
<li><a href="http://www.cisco.com/en/US/products/ps6241/index.html" target="_blank">Cisco Security Monitoring, Analysis and Response System  (MARS)</a></li>
<li><a href="http://www.cisco.com/en/US/products/ps5923/products_data_sheet0900aecd80119868.html" target="_blank">Cisco Trust Agent 2.0 (CTA)</a></li>
<li><a href="http://www.cisco.com/en/US/products/sw/secursw/ps2086/index.html" target="_blank">Cisco Secure Access Control Server for Windows (ACS)</a></li>
<li><a href="http://www.cisco.com/en/US/products/sw/secursw/ps5338/index.html" target="_blank">Cisco Secure Access Control Server Solution Engine (ACS)</a></li>
<li><a href="http://www.cisco.com/en/US/products/ps6903/" target="_blank">CiscoWorks Interface Configuration Manager (ICM)</a></li>
<li><a href="http://www.cisco.com/en/US/products/sw/cscowork/ps5209/index.html" target="_blank">CiscoWorks Security Information Management Solution  (CW-SIMS)</a></li>
<li><a href="http://www.cisco.com/en/US/docs/security/nac/appliance/installation_guide/netmodule/nacnmgsg.html#wp40455" target="_blank">NAC-enabled routers</a></li>
<li><a href="http://www.cisco.com/en/US/products/ps6540/index.html" target="_blank">Router security</a></li>
<li><a href="http://www.cisco.com/en/US/products/hw/vpndevc/ps2284/index.html" target="_blank">Cisco VPN 3000 Series Concentrators</a></li>
<li><a href="http://www.cisco.com/en/US/netsol/ns340/ns394/ns348/ns337/networking_solutions_package.html" target="_blank">Cisco Unified Wireless Network</a></li>
<li><a href="http://www.cisco.com/en/US/netsol/ns628/networking_solutions_package.html" target="_blank">Cisco Catalyst switches</a></li>
</ul>
<p>Let’s discuss some of the more critical pieces of Cisco’s NAC solution.</p>
<h2>Cisco NAC-enabled routers</h2>
<p>The recently released Cisco router NAT module enforces NAC at the remote  branch locations or ancillary buildings of a campus. Apart from that, the NAC  router module also improves the overall security of the network by making sure  that all incoming users and devices comply with security policies.</p>
<p>Additionally, the Cisco NAC router module (part # NME-NAC-K9) brings the  capabilities of Cisco NAC Appliance Server to Cisco 2800 and 3800 Series  Integrated Services Routers. This module helps network administrators by not  having to deploy NAC appliances across the board and it helps to consolidate the  administrative tasks into fewer boxes.</p>
<p>Amazingly, this module is actually a 1 GHz Intel Celeron PC, with 512 MB RAM,  64 MB of Compact Flash, and an 80 GB SATA hard drive. All that fits onto a  single 1-pound module that slides into a router and enforces your security  policies. This module requires a 2800 or 3800 series router running IOS  12.4(11)T or later.</p>
<h2>Cisco NAC Appliance</h2>
<p>The single most popular piece of the Cisco NAC solution has been the <a href="http://en.wikipedia.org/wiki/Cisco_NAC_Appliance">Cisco NAC Appliance</a>.  As evident from the name itself, Cisco NAC Appliance is an appliance-based  solution that offers fast deployment, policy management, and enforcement of  security policies.</p>
<p>With the Cisco NAC Appliance, you can opt for an in-band or out-of-band  solution. The in-band solution is for smaller deployments. As your network grows  into a more campus environment, you may not be able to keep the in-band design.  In that case, you can move to the out-of-band deployment scenario.</p>
<p>Here are some advantages of the Cisco NAC Appliance:</p>
<ul>
<li><strong>Identity: </strong>At the point of authentication, the Cisco NAC  Appliance recognizes users, as well as their devices and their responsibility in  the network.</li>
<li><strong>Compliance: </strong>Cisco NAC Appliance also takes into account  whether machines are compliant with security policies or not. This includes  enforcing operating system updates, antivirus definitions, firewall settings,  and antispyware software definitions.</li>
<li><strong>Quarantine: </strong>If the machines attempting to gain access don’t  meet the policies of the network, the Cisco NAC Appliance can quarantine these  machines and bring them into compliance (by applying patches or changing  settings), before releasing them onto the network.</li>
</ul>
<p>For more information about the Cisco NAC Appliance, see the <a href="http://www.cisco.com/en/US/prod/collateral/vpndevc/ps5707/ps8418/ps6128/product_data_sheet0900aecd802da1b5.html" target="_blank">Cisco NAC Appliance datasheet.</a></p>
<h2>Cisco Secure Access Control Server (ACS)</h2>
<p>The Cisco ACS Server could be called the “brain” of the Cisco NAC solution.  It is here that users’ credentials are checked to see if they are valid,  policies are sent back to be enforced, and activities are logged. The ACS server  is called an AAA Server because it performs authentication, authorization, and  accounting.</p>
<p>This server runs on an existing Windows server in your organization and can  use other existing databases in your organization to verify users’ credentials.  For example, most companies have ACS point toward their Windows Active Directory  (AD) system to look up credentials. If those credentials are valid, then ACS can  enforce network authorization polices on those users, with the help of the  network hardware: NAC Appliance, Router NAC module, or ASA/PIX firewalls.</p>
<h2>Cisco Security Agent (CSA)</h2>
<p>Cisco CSA is a software client that is run on every machine in an  organization. These clients talk to a centralized policy server. Together, these  software applications know what software and activities occurring on each PC in  the organization are or are not “normal.” The CSA agent may alert on or block  certain activities that it sees as abnormal.</p>
<p>When compared to anti-virus software that depends on definition updates to  stay current, Cisco touts that the CSA never needs updating because it is  constantly “learning” and monitoring activities, not definitions of viruses.</p>
<p>For more information about the Cisco CSA solution, see the <a href="http://www.cisco.com/en/US/products/sw/secursw/ps5057/products_data_sheets_list.html" target="_blank">Cisco CSA datasheet.</a></p>
<h2>Cisco Trust Agent (CTA)</h2>
<p>You can think of the Cisco Trust Agent as the “NAC Client.” The CTA runs on  each PC in the organization. It talks to the NAC Appliance, for example, to tell  it about the state of the device attempting to access the network. For example,  the CTA reports the version of the OS, patch level, the AV definition level, the  firewall status, and more. According to Cisco, the CTA “interrogates devices.”  You can obtain CTA free of charge from Cisco Systems.</p>
<h2>CiscoWorks Security Information Management Solution (CW-SIMS)</h2>
<p>The CiscoWorks Security Information Management Solution (CW-SIMS) is the  centralized repository that all Cisco devices use for security logging and other  information. According to Cisco, this application “integrates, correlates, and  analyzes security event data from the enterprise network to improve visibility  and provide actionable intelligence for strengthening an organization’s  security.”</p>
<p>With so many security devices in your network, one application has to try to  correlate all the logs and security information that is generated. According to  Cisco, here are the features that the CW-SIMS offers:</p>
<ul>
<li><strong>Comprehensive Correlation</strong>: Statistical, rules-based, and  vulnerability correlation of events as they happen, in real time, across all  integrated Cisco network devices.</li>
<li><strong>Threat Visualization:</strong> See a visual status and generate  reports of all the security events as they happen across your network.</li>
<li><strong>Incident Resolution Management:</strong> SIMs integrates with common  helpdesk packages to track security events until resolution.</li>
<li><strong>Integrated Knowledge Base:</strong> SIMS can be a source of  knowledge about security issues and how they are resolved.</li>
<li><strong>Real-Time Notification:</strong> SIMS can notify security admins, in  real time, when events occur.</li>
</ul>
<p>For more information about the Cisco CW-SIMS solution, see the <a href="http://www.cisco.com/en/US/prod/collateral/vpndevc/ps5739/ps5209/product_data_sheet09186a008017dcb6.html" target="_blank">Cisco SW-SIMS datasheet.</a></p>
<h2>Cisco Security Monitoring, Analysis, and Response System (MARS)</h2>
<p>While MARS may seem similar to CW-SIMS, it is quite different. MARS actually  understands the configuration and topology of your network. You can think of  MARS as a “virtual security admin” for your network — working while you  sleep.</p>
<p>MARS uses NetFlow data from Cisco routers to have a real-time understanding  of network traffic. It knows what is considered normal and what is not; this is  called behavioral analysis. With behavioral analysis, MARS can stop abnormal  network traffic. MARS has over 150 audit compliance templates and will make  recommendations on how to remediate threats to your network.</p>
<p>MARS is actually an appliance that you install on your network. This  appliance comes in a variety of sizes and license levels based on the size of  your network.</p>
<h3>Summary</h3>
<p>To be a complete solution that can fulfill the Cisco Self-Defending Network  framework, the hardware and software of Cisco’s NAC solution must integrate  well. With nine or more different pieces of hardware and software related to  NAC, the challenge of acquiring (i.e., affording), learning to configure,  deploying, and monitoring these solutions can be a large task for any  organization. While having the centralized software applications like CW-SIMS  and MARS can really bring it all together, those applications will take time,  effort, and expertise to master. For this reason, I can relate to anyone who  says that deploying a security solution is difficult.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cctechblogs.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cctechblogs.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cctechblogs.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cctechblogs.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cctechblogs.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cctechblogs.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cctechblogs.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cctechblogs.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cctechblogs.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cctechblogs.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cctechblogs.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cctechblogs.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cctechblogs.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cctechblogs.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cctechblogs.wordpress.com&amp;blog=7795806&amp;post=53&amp;subd=cctechblogs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cctechblogs.wordpress.com/2009/06/09/ciscos-nac-hardware-explained-by-david-davis-techrepublic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/74ea430fdeadb8ea378ca34aea4df547?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CC Techie</media:title>
		</media:content>
	</item>
		<item>
		<title>Secure your Cisco Network Time Protocol with these tips &#8211; Techrepublic Article</title>
		<link>http://cctechblogs.wordpress.com/2009/05/29/ciscontpsecurity/</link>
		<comments>http://cctechblogs.wordpress.com/2009/05/29/ciscontpsecurity/#comments</comments>
		<pubDate>Fri, 29 May 2009 01:06:24 +0000</pubDate>
		<dc:creator>Cherry Cherian</dc:creator>
				<category><![CDATA[Cisco Admin]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://cctechblogs.wordpress.com/?p=48</guid>
		<description><![CDATA[Network Time Protocol (NTP) is a client-server, UDP-based protocol used to synchronize time clocks among network devices. Time synchronization is critical for some feature functionality such as VPNs, time-based ACLs, and authentication and is also a critical element for event correlation, problem debug, and security. NTP uses a hierarchical-based concept called a “stratum” to describe [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cctechblogs.wordpress.com&amp;blog=7795806&amp;post=48&amp;subd=cctechblogs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Network Time Protocol (NTP) is a client-server, UDP-based protocol used to  synchronize time clocks among network devices. Time synchronization is critical  for some feature functionality such as VPNs, time-based ACLs, and authentication  and is also a critical element for event correlation, problem debug, and  security.</p>
<p><span id="more-48"></span></p>
<p>NTP uses a hierarchical-based concept called a “stratum” to describe how many  NTP “hops” away a machine is from an authoritative time source. A Stratum 0  source is the root and is based on an atomic clock, or series of them, and is  incredibly accurate. A Stratum 1 clock would receive its source from a Stratum 0  clock and would therefore be one hop away. This pattern would follow for Stratum  2 and Stratum 3, etc.</p>
<p>Since NTP provides a critical resource for your network, you need to be  certain that it is correct. The most desirable way to provide an accurate,  secure time source would be to have a Stratum 1 clock source directly on your  network. Short of that, the most common implementation currently used is to have  a device on your network, typically a router, synchronize with a public Stratum  1 or 2 time source, and then act as the local network master clock source.</p>
<p>Internal devices, servers, and hosts can then synchronize their clocks with  this network source. This hierarchy allows you to configure strict NTP (UDP port  123) rules on your firewall.</p>
<p>Security can also be improved by implementing NTP authentication between your  routers and implementing NTP Access Control Lists.</p>
<h2>Protecting your NTP deployment</h2>
<p>NTP authentication operates a bit differently than what you may think and is  often a point of confusion. With NTP authentication on Cisco routers, a key is  defined on the source host (master clock) and is used to MD5 hash the response  to queries. However, in the case of NTP, it is up to the client to request  authentication rather than the router to demand it.</p>
<p>In this sense, the requesting client is verifying the integrity of the source  rather than the source verifying the client validity. The net of this is that  the router will also respond to queries that do not require authentication as  well as those that do. However, if a client requests authentication and the  router is not configured for it, the NTP synchronization will fail.</p>
<p>For reliability and security reasons, set up more than one router on your  network to provide NTP synchronization, with each of them getting their time  reference from a different Stratum 1 clock, and then set up peering with  authentication between these routers.</p>
<p>Access Control Lists can also be great tools to protect your NTP deployment.  You can implement a “peer group” ACL to define and control which IP addresses  are allowed to peer with your router. Additionally, you can implement a “serve,”  or “serve-only,” ACL to define which IP addresses or netblocks are allowed to  make NTP queries to your router.</p>
<p>NTP accuracy is critical to your network. It takes a relatively small bit of  time to set it up correctly and protect it with security measures, but your  efforts will pay off big time</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cctechblogs.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cctechblogs.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cctechblogs.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cctechblogs.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cctechblogs.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cctechblogs.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cctechblogs.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cctechblogs.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cctechblogs.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cctechblogs.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cctechblogs.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cctechblogs.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cctechblogs.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cctechblogs.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cctechblogs.wordpress.com&amp;blog=7795806&amp;post=48&amp;subd=cctechblogs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cctechblogs.wordpress.com/2009/05/29/ciscontpsecurity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/74ea430fdeadb8ea378ca34aea4df547?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CC Techie</media:title>
		</media:content>
	</item>
		<item>
		<title>Stopping security threats at the network layer by Paul Mah (Techrepublic)</title>
		<link>http://cctechblogs.wordpress.com/2009/05/21/stopsecuritythreats/</link>
		<comments>http://cctechblogs.wordpress.com/2009/05/21/stopsecuritythreats/#comments</comments>
		<pubDate>Thu, 21 May 2009 00:25:26 +0000</pubDate>
		<dc:creator>Cherry Cherian</dc:creator>
				<category><![CDATA[Network Admin]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://cctechblogs.wordpress.com/2009/05/21/stopping-security-threats-at-the-network-layer-by-paul-mah-techrepublic</guid>
		<description><![CDATA[Cybercriminals are turning to the use of peer-to-peer network technology in order to control their botnets, says FBI agent J. Keith Mularski. Mularski should know, having spent two years as an undercover agent in order to infiltrate an underground Internet forum. The stint culminated in September 2008 with the arrest of 60 criminals around the globe [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cctechblogs.wordpress.com&amp;blog=7795806&amp;post=38&amp;subd=cctechblogs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;line-height:12pt;"><span style="font-size:9pt;font-family:&quot;color:#333333;">Cybercriminals are turning to the use of peer-to-peer network technology in order to control their botnets, says FBI agent J. Keith Mularski. Mularski should know, having spent two years as an undercover agent in order to<span> </span><a href="http://news.cnet.com/8301-1009_3-10234872-83.html"><span style="color:#0066cc;">infiltrate an underground Internet forum</span></a>. The stint culminated in September 2008 with the arrest of 60 criminals around the globe involved in cybercrimes that ranged from hacking to trading of credit card data and manufacturing of fake credit cards.</span></p>
<p style="text-align:justify;line-height:12pt;"><span id="more-38"></span></p>
<p style="text-align:justify;line-height:12pt;">Peer-to-peer technologies, especially when employed with protocol obfuscation and/or encryption make it extraordinarily difficult to detect a botnet infestation. Unlike a security vendor, the overriding concern for a network or system administrator is to correctly identify infected hosts within the corporate network. Remediation would probably start from taking it offline, determining the point of infection, and rebuilding the affected system. What is clear is that most malware, and all botnet-client attacks involve the compromised host making an outbound connection at some point or other. Stopping, or at least detecting, suspicious activities on this front would certainly make for a more secure environment. Yet how could a network administrator, without access to special tools or annual, company-wide hard-disk formatting exercises hope to detect the presence of a botnet infestation in the first place? While not solutions per se, below are a couple of ideas that would help you reduce your exposure.</p>
<p style="text-align:justify;line-height:12pt;"><span style="font-size:9pt;font-family:&quot;color:#333333;"><br />
<strong><span style="font-family:&quot;">Allow only Web traffic; filter and log all URLs</span></strong></span></p>
<p style="text-align:justify;line-height:12pt;"><span style="font-size:9pt;font-family:&quot;color:#333333;">The most draconian step possible would be to allow only for the passage of Web traffic through the corporate firewall. Obviously, this will do no good to protect against phishing attacks or applications that attempt to tunnel outgoing data via SSL or obfuscated as legitimate HTTP requests.  As such, it makes sense to filter outgoing connections according to blacklists maintained by sites such as URLBlacklist.com. You can find additional lists at<span> </span><a href="http://spamlinks.net/filter-bl.htm"><span style="color:#0066cc;">Spam Links</span></a>. In addition, all URLs should be logged and regularly sieved through for suspicious activity and connections. Ditto to non-HTTP connections, since they could contain clues to the presence of infected hosts within the network. Assuming this is a viable option for your organization, such a move would stop a large swath of threats in its steps. </span></p>
<p style="text-align:justify;line-height:12pt;"><strong><span style="font-size:9pt;font-family:&quot;color:#333333;">Allow only selective ports</span></strong></p>
<p style="text-align:justify;line-height:12pt;"><span style="font-size:9pt;font-family:&quot;color:#333333;"> Alas, we live in an imperfect world. A typical business might classify applications such as Skype and MSN as being crucial to business operations. In such cases, it would be unavoidable to open selective ports for legitimate applications. The restriction here would be to open only ports that are necessary and continue to filter and log outgoing connections where it is possible. While not a 100-percent guarantee, the availability of a protocol-aware firewall can also help filter out malware attempts to make outgoing connections via well-known ports. </span></p>
<p style="text-align:justify;line-height:12pt;"><span style="font-size:9pt;font-family:&quot;color:#333333;">Modern computer security is a complex, multifaceted affair with no single or convenient solution. Actively configuring and monitoring one’s network is just another way to defend it from being hijacked. For today, I am assuming the availability of a firewall where it is at least possible to make fine-grained port configurations.</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cctechblogs.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cctechblogs.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cctechblogs.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cctechblogs.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cctechblogs.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cctechblogs.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cctechblogs.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cctechblogs.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cctechblogs.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cctechblogs.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cctechblogs.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cctechblogs.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cctechblogs.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cctechblogs.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cctechblogs.wordpress.com&amp;blog=7795806&amp;post=38&amp;subd=cctechblogs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cctechblogs.wordpress.com/2009/05/21/stopsecuritythreats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/74ea430fdeadb8ea378ca34aea4df547?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CC Techie</media:title>
		</media:content>
	</item>
		<item>
		<title>Configure Cisco routers to use AD Authentication (Server side) by David Davis CCIE (Techrepublic)</title>
		<link>http://cctechblogs.wordpress.com/2009/05/19/configure-cisco-routers-to-use-adirectory-authentication-windows-side-by-david-davis-ccie-techrepublic/</link>
		<comments>http://cctechblogs.wordpress.com/2009/05/19/configure-cisco-routers-to-use-adirectory-authentication-windows-side-by-david-davis-ccie-techrepublic/#comments</comments>
		<pubDate>Tue, 19 May 2009 01:34:03 +0000</pubDate>
		<dc:creator>Cherry Cherian</dc:creator>
				<category><![CDATA[Cisco Admin]]></category>
		<category><![CDATA[Network Admin]]></category>
		<category><![CDATA[Operating System]]></category>

		<guid isPermaLink="false">http://cctechblogs.wordpress.com/?p=23</guid>
		<description><![CDATA[If your organization uses Windows, you probably use your Active Directory (AD) username and password to log onto your PC every day. So why do you need separate credentials on your routers? Even if you just need to remember an extra password, it can be annoying &#8212; but it doesn&#8217;t have to be. In fact, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cctechblogs.wordpress.com&amp;blog=7795806&amp;post=23&amp;subd=cctechblogs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If your organization uses Windows, you probably use your Active Directory (AD) username and password to log onto your PC every day. So why do you need separate credentials on your routers?</p>
<p>Even if you just need to remember an extra password, it can be annoying &#8212; but it doesn&#8217;t have to be. In fact, you can leverage the Windows AD username/password database to log in to your Cisco routers and switches.</p>
<p><span id="more-23"></span></p>
<p>This week, we&#8217;ll start off by discussing how to install, configure, and troubleshoot Windows&#8217; Internet Authentication Service (IAS); next week, we&#8217;ll wrap it up by explaining how to configure your routers and switches to use the authentication.</p>
<p>Before we begin, let&#8217;s go over this article&#8217;s assumptions. For this configuration, we&#8217;ll use IAS, the Microsoft implementation of a Remote Authentication Dial-in User Service (RADIUS) server and proxy, which comes built into Windows 2000 Server and Windows Server 2003.</p>
<p>In addition, we&#8217;re assuming that you&#8217;ve already connected your router or switch to the LAN, enabled its LAN interface, and have an IP address on that LAN interface. If access to the router or switch is through a routed network, it also needs a default gateway configured.</p>
<h2>Install IAS</h2>
<p>Start off by installing IAS if you haven&#8217;t already done so. For Windows Server 2003, follow these steps:</p>
<ol type="1">
<li>Log in as an administrator.</li>
<li>Go to Start | Control Panel, and double-click the Add Or Remove Programs applet.</li>
<li>Click Add/Remove Windows Components.</li>
<li>In the Windows Components Wizard, click Networking Services, and click Details.</li>
<li>In the Networking Services dialog box, select Internet Authentication Service, click OK, and click Next.</li>
<li>The system may prompt you to insert your Windows Server 2003 CD, so have it handy.</li>
<li>After IAS is installed, click Finish, and then Close.</li>
</ol>
<p>To keep track of who can log in to your Cisco network devices, I suggest creating an AD group called <em>ciscoadmin</em>. Then, make your existing Windows account a member of the ciscoadmin group.</p>
<h2>Configure IAS</h2>
<p>Now that we&#8217;ve installed IAS, we need to configure it. Begin by going to Start | Control Panel and double-clicking the Administrative Tools applet. Double-click the Internet Authentication Service applet, as shown in <strong>Figure A</strong>.</p>
<table border="0">
<tbody>
<tr>
<td align="center"><strong>Figure A</strong></td>
</tr>
<tr>
<td align="center"><img src="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic1.png" alt="" /></td>
</tr>
<tr>
<td align="center">To begin configuring IAS, go to Start | Control Panel | Administrative Tools | Internet Authentication Service.</td>
</tr>
</tbody>
</table>
<p>This will open the Internet Authentication Service window, as shown in <strong>Figure B</strong>.</p>
<table border="0">
<tbody>
<tr>
<td align="center"><strong>Figure B</strong></td>
</tr>
<tr>
<td align="center"><img src="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic2.png" alt="" /></td>
</tr>
<tr>
<td align="center">You must open the Internet Authentication Service window to configure IAS.</td>
</tr>
</tbody>
</table>
<p>Now we need to add a RADIUS client. Follow these steps:</p>
<ol type="1">
<li>In the left pane, right-click RADIUS Clients, and select New RADIUS Client.</li>
<li>In the New RADIUS Client dialog box, as shown in <strong>Figure C</strong>, enter a display name for the client (i.e., your router or switch). I suggest using the router&#8217;s hostname.</li>
<li>Enter the LAN IP address of the client.</li>
</ol>
<table border="0">
<tbody>
<tr>
<td align="center"><strong>Figure C</strong></td>
</tr>
<tr>
<td align="center"><img src="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic3.png" alt="" /></td>
</tr>
<tr>
<td align="center">Enter a friendly name for the new client, and enter the IP address.</td>
</tr>
</tbody>
</table>
<ol type="1">
<li>Click Next, and select Cisco for the Client-Vendor.</li>
<li>Enter a password (called a <em>key</em> on a router or switch) that the two devices will share for the authentication process. For this example, I used <em>cisco</em> as my test password.</li>
<li>Click Finish.</li>
</ol>
<p><strong>Figure D</strong> shows the Internet Authentication Service window with the newly added client.</p>
<table border="0">
<tbody>
<tr>
<td align="center"><strong>Figure D</strong></td>
</tr>
<tr>
<td align="center"><img src="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic4.png" alt="" /></td>
</tr>
<tr>
<td align="center">The Internet Authentication Service window displays the newly added client.</td>
</tr>
</tbody>
</table>
<p>Next, we need to create a remote access policy. Follow these steps:</p>
<ol type="1">
<li>In the Internet Authentication Service window, click Remote Access Policies in the left pane.</li>
<li>In the right pane, right-click the default policy, and select Delete.</li>
<li>Right-click inside the right pane, and select New Remote Access Policy.</li>
<li>In the Remote Access Policy Wizard, click Next.</li>
<li>Click Set Up A Custom Policy, name it <em>ciscoauth</em>, and click Next.</li>
<li>Click Add, select Windows-Groups, and click Add, as shown in <strong>Figure E</strong>.</li>
</ol>
<table border="0">
<tbody>
<tr>
<td align="center"><strong>Figure E</strong></td>
</tr>
<tr>
<td align="center"><img src="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic5.png" alt="" /></td>
</tr>
<tr>
<td align="center">Select Windows-Groups, and click the Add button.</td>
</tr>
</tbody>
</table>
<p>Enter <em>ciscoadmin</em> (or whatever group you want to use). In this example, we&#8217;re using a <em>local</em> Windows server group. You can also use a Windows AD group &#8212; which, of course, is preferable. <strong>Figure F</strong> shows the Groups dialog group with the <em>ciscoadmin</em> group listed.</p>
<table border="0">
<tbody>
<tr>
<td align="center"><strong>Figure F</strong></td>
</tr>
<tr>
<td align="center"><img src="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic6.png" alt="" /></td>
</tr>
<tr>
<td align="center">The Groups dialog box will list the group you add.</td>
</tr>
</tbody>
</table>
<p>Select the new group, and click OK. This takes you to the Policy Conditions screen of the New Remote Access Policy Wizard, as show in <strong>Figure G</strong>.</p>
<table border="0">
<tbody>
<tr>
<td align="center"><strong>Figure G</strong></td>
</tr>
<tr>
<td align="center"><img src="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic7.png" alt="" /></td>
</tr>
<tr>
<td align="center">Select Windows-Groups, and click the Add button.</td>
</tr>
</tbody>
</table>
<ol type="1">
<li>Click Next, select Grant Remote Access Permission, and click Next.</li>
<li>Click Edit Profile, and select the Authentication tab.</li>
<li>Deselect all check boxes; only select the Unencrypted Authentication (PAP/SPAP) check box, as shown in <strong>Figure H</strong>, and click OK.</li>
</ol>
<table border="0">
<tbody>
<tr>
<td align="center"><strong>Figure H</strong></td>
</tr>
<tr>
<td align="center"><img src="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic8.png" alt="" /></td>
</tr>
<tr>
<td align="center">Select the Unencrypted Authentication (PAP/SPAP) check box only.</td>
</tr>
</tbody>
</table>
<ol type="1">
<li>Next, select the Advanced tab.</li>
<li>Select Service-Type, and click Edit.</li>
<li>In the Enumerable Attribute Information dialog box, select Login from the Attribute Value drop-down list, as shown in <strong>Figure I</strong>, and click OK.</li>
</ol>
<table border="0">
<tbody>
<tr>
<td align="center"><strong>Figure I</strong></td>
</tr>
<tr>
<td align="center"><img src="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic9.png" alt="" /></td>
</tr>
<tr>
<td align="center">Under Attribute Value, change it from Framed to Login.</td>
</tr>
</tbody>
</table>
<p>Back on the Advanced tab, select Framed-Protocol, and click Remove. <strong>Figure J</strong> displays the resulting dialog box.</p>
<table border="0">
<tbody>
<tr>
<td align="center"><strong>Figure J</strong></td>
</tr>
<tr>
<td align="center"><img src="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic10.png" alt="" /></td>
</tr>
<tr>
<td align="center">All that&#8217;s left to do is click OK.</td>
</tr>
</tbody>
</table>
<p>All you have to do now is click OK. The system will likely ask if you want to view Help topics, as shown in <strong>Figure K</strong>.</p>
<table border="0">
<tbody>
<tr>
<td align="center"><strong>Figure K</strong></td>
</tr>
<tr>
<td align="center"><img src="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic11.png" alt="" /></td>
</tr>
<tr>
<td align="center">For corresponding Help topics, click Yes.</td>
</tr>
</tbody>
</table>
<p>We&#8217;re almost there. Click Next, click Finish, and that&#8217;s it!</p>
<h2>Troubleshoot IAS</h2>
<p>When it comes to troubleshooting IAS, its logs can be very cryptic. For example, <strong>Figure L</strong> shows a log created while testing this article.</p>
<table border="0">
<tbody>
<tr>
<td align="center"><strong>Figure L</strong></td>
</tr>
<tr>
<td align="center"><img src="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic12.png" alt="" /></td>
</tr>
<tr>
<td align="center">IAS logs can be a little hard to interpret.</td>
</tr>
</tbody>
</table>
<p>To help out with reading these logs, I use DeepSoftware.com&#8217;s <a href="http://www.deepsoftware.com/iasviewer" target="_blank">IAS Log Viewer</a>. <strong>Figure M</strong> shows a screenshot of this tool.</p>
<table border="0">
<tbody>
<tr>
<td align="center"><strong>Figure M</strong></td>
</tr>
<tr>
<td align="center"><img src="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic13.png" alt="" /></td>
</tr>
<tr>
<td align="center">IAS Log Viewer helps simplify logs.</td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cctechblogs.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cctechblogs.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cctechblogs.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cctechblogs.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cctechblogs.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cctechblogs.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cctechblogs.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cctechblogs.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cctechblogs.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cctechblogs.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cctechblogs.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cctechblogs.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cctechblogs.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cctechblogs.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cctechblogs.wordpress.com&amp;blog=7795806&amp;post=23&amp;subd=cctechblogs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cctechblogs.wordpress.com/2009/05/19/configure-cisco-routers-to-use-adirectory-authentication-windows-side-by-david-davis-ccie-techrepublic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/74ea430fdeadb8ea378ca34aea4df547?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CC Techie</media:title>
		</media:content>

		<media:content url="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic1.png" medium="image" />

		<media:content url="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic2.png" medium="image" />

		<media:content url="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic3.png" medium="image" />

		<media:content url="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic4.png" medium="image" />

		<media:content url="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic5.png" medium="image" />

		<media:content url="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic6.png" medium="image" />

		<media:content url="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic7.png" medium="image" />

		<media:content url="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic8.png" medium="image" />

		<media:content url="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic9.png" medium="image" />

		<media:content url="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic10.png" medium="image" />

		<media:content url="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic11.png" medium="image" />

		<media:content url="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic12.png" medium="image" />

		<media:content url="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05022007/graphic13.png" medium="image" />
	</item>
		<item>
		<title>Configure Cisco routers to use AD Authenticaion (Router side) by David Davis CCIE (Techrepublic)</title>
		<link>http://cctechblogs.wordpress.com/2009/05/19/confrtrfradaaa/</link>
		<comments>http://cctechblogs.wordpress.com/2009/05/19/confrtrfradaaa/#comments</comments>
		<pubDate>Tue, 19 May 2009 01:13:50 +0000</pubDate>
		<dc:creator>Cherry Cherian</dc:creator>
				<category><![CDATA[Cisco Admin]]></category>
		<category><![CDATA[Network Admin]]></category>

		<guid isPermaLink="false">http://cctechblogs.wordpress.com/?p=17</guid>
		<description><![CDATA[In organizations that use Windows, employees use their Active Directory (AD) username and password to access their PCs every day. So why do you need separate credentials on your routers? You don&#8217;t &#8212; you can use the Windows AD database to log in to your Cisco routers and switches. Before we begin, let&#8217;s go over [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cctechblogs.wordpress.com&amp;blog=7795806&amp;post=17&amp;subd=cctechblogs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In organizations that use Windows, employees use their Active Directory (AD) username and password to access their PCs every day. So why do you need separate credentials on your routers? You don&#8217;t &#8212; you can use the Windows AD database to log in to your Cisco routers and switches.</p>
<p><span id="more-17"></span></p>
<p>Before we begin, let&#8217;s go over this article&#8217;s assumptions. We&#8217;re assuming that you&#8217;ve already connected your router or switch to the LAN, enabled its LAN interface, and have an IP address on that LAN interface. If access to the router or switch is through a routed network, it also needs a default gateway configured.</p>
<p>For this article, I used a Cisco 871W router that&#8217;s running Cisco IOS Software, C870 Software (C870-ADVIPSERVICESK9-M), Version 12.4(4)XC2, RELEASE SOFTWARE (fc1). Specifically, it has this IOS file: c870-advipservicesk9-mz.124-4.XC2.</p>
<p>This router has a VLAN1 that four LAN Ethernet ports share by default. This is where I configured my IP address, as shown below:</p>
<pre>interface Vlan1
ip address 192.168.1.100 255.255.255.0

interface FastEthernet0
no shutdown</pre>
<h2>Configure the router or switch</h2>
<p>While I&#8217;m using a Cisco 871W router, you can also use a Cisco switch, and the configuration should be similar. You can even configure this type of RADIUS authentication on a Cisco PIX firewall or Adaptive Security Appliance (ASA).</p>
<p>To configure a router or switch to talk to the Windows IAS RADIUS server to authenticate logins for management, start by making sure you have a secret password enabled, as shown below:</p>
<pre>enable secret 5 Secret!Pass1</pre>
<p>Next, configure the router for RADIUS authentication. <strong><a href="http://articles.techrepublic.com.com/5100-10878_11-6182945.html#" target="_blank">Listing A</a></strong> offers an example.</p>
<p>In this example, the IP address is the IP address of our Windows IAS RADIUS server, and the key is the key we entered when we configured the RADIUS client on the IAS server. In addition, we&#8217;ve configured the source interface to make sure the IP address of the RADIUS server matches the IP address of the RADIUS client we configured in IAS.</p>
<p>We also configured an authentication list called <em>TRAuthList</em>. While you can use the default authentication list, I don&#8217;t recommend it. The default list automatically applies to all login devices, including the console. So failure of the RADIUS authentication could also lock you out of the console.</p>
<p>I also suggest configuring a local username/password in case the RADIUS server is ever unavailable and you need to access your network device. Because we used the login authentication method <em>radius</em> and then <em>local</em>, the router will fail back to the local authentication server if the RADIUS server ever goes down. Here&#8217;s how to configure a local user:</p>
<pre>R1-871W(config)# user netadmin pass secretpass1</pre>
<p>Next, we need to configure all of our lines with the authentication list we created. For this example, we have the normal five lines (0 to 4), but your device may contain more. Here&#8217;s an example:</p>
<pre>R1-871W(config)# line vty 0 4
R1-871W(config-line)#Â  login authentication TRAuthList</pre>
<p>At this point, Windows AD authentication would work if we used Telnet to connect to the router or switch. However, for security&#8217;s sake, I recommend <a href="http://articles.techrepublic.com.com/5100-1035_11-5875046.html" target="_blank">using SSH instead of Telnet</a>, so now we need to configure SSH.</p>
<p>Start by making sure we have a hostname on the router. Here&#8217;s an example:</p>
<pre>Router(config)# hostname R1-871W</pre>
<p>Then, make sure there&#8217;s an IP domain name configured. Here&#8217;s an example:</p>
<pre>R1-871W(config)# ip domain-name TechRepublic.com</pre>
<p>Next, generate the crypto keys, as shown below, and answer all questions with their defaults:</p>
<pre>R1-871W(config)# crypto key generate rsa</pre>
<p>Finally, restrict VTY lines to use only SSH &#8212; not Telnet. Here&#8217;s an example:</p>
<pre>R1-871W(config)# Line vty 0 4
R1-871W(config-line)# Transport input ssh</pre>
<h2>Test the configuration</h2>
<p>I recommend leaving the console or other existing connection to the router up until you can verify that the new configuration works. In addition, don&#8217;t save the configuration until you make sure it works. If it doesn&#8217;t work, you can always remove it or reboot the device to go back to the previous configuration.</p>
<p>To test the new configuration, I connected to the router using <a href="http://www.vandyke.com/products/securecrt/" target="_blank">SecureCRT</a>, but you can also use <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" target="_blank">PuTTY</a>, which is free. <strong>Figure A</strong> displays the Session Options &#8211; New dialog box, which shows my connection settings. Note the SSH1 protocol &#8212; not SSH2.</p>
<table border="0">
<tbody>
<tr>
<td align="center"><strong>Figure A</strong></td>
</tr>
<tr>
<td align="center"><img src="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05102007/graphic1.png" alt="" /></td>
</tr>
<tr>
<td align="center">Notice that we are using SSH1, not SSH2.</td>
</tr>
</tbody>
</table>
<p><strong>Figure B</strong> displays the Enter Username dialog box, which I use to log in with my Windows username.</p>
<table border="0">
<tbody>
<tr>
<td align="center"><strong>Figure B</strong></td>
</tr>
<tr>
<td align="center"><img src="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05102007/graphic2.png" alt="" /></td>
</tr>
<tr>
<td align="center">Log in with your Windows username.</td>
</tr>
</tbody>
</table>
<p>With that, I have successfully connected, as shown in <strong>Figure C</strong>. I used the <em>show users</em> command to show that it&#8217;s really me.</p>
<table border="0">
<tbody>
<tr>
<td align="center"><strong>Figure C</strong></td>
</tr>
<tr>
<td align="center"><img src="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05102007/graphic3.png" alt="" /></td>
</tr>
<tr>
<td align="center">Using the <em>show users</em> command displays a successful connection.</td>
</tr>
</tbody>
</table>
<h2>Troubleshoot the configuration</h2>
<p>When it comes to troubleshooting the Cisco IOS side of this complex configuration, using the <em>debug</em>and <em>test</em>commands is your best bet. Here&#8217;s an example:</p>
<pre>Router# debug aaa authentication
AAA Authentication debugging is on

Router# debug radius authentication
Radius protocol debugging is on
Radius protocol brief debugging is off
Radius protocol verbose debugging is off
Radius packet hex dump debugging is off
Radius packet protocol (authentication) debugging is on
Radius packet protocol (accounting) debugging is off
Radius packet retransmission debugging is off
Radius server fail-over debugging is off
Router#

Router# test aaa group radius ddavis MyPass1 port 1645 new-code</pre>
<p>In addition to using the IAS log files, which I discussed in the previous article, this lets you see what&#8217;s going on in the background on both sides of this configuration (i.e., the router or switch and the RADIUS server). If you run across an error message that you don&#8217;t recognize, search the Web &#8212; someone else has likely run across it already and figured out the resolution.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cctechblogs.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cctechblogs.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cctechblogs.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cctechblogs.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cctechblogs.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cctechblogs.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cctechblogs.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cctechblogs.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cctechblogs.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cctechblogs.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cctechblogs.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cctechblogs.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cctechblogs.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cctechblogs.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cctechblogs.wordpress.com&amp;blog=7795806&amp;post=17&amp;subd=cctechblogs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cctechblogs.wordpress.com/2009/05/19/confrtrfradaaa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/74ea430fdeadb8ea378ca34aea4df547?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CC Techie</media:title>
		</media:content>

		<media:content url="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05102007/graphic1.png" medium="image" />

		<media:content url="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05102007/graphic2.png" medium="image" />

		<media:content url="http://i.i.com.com/cnwk.1d/i/tr/Eve/figs05102007/graphic3.png" medium="image" />
	</item>
		<item>
		<title>AAA and how to configure it in Cisco IOS? by David Davis CCIE (Techrepublic)</title>
		<link>http://cctechblogs.wordpress.com/2009/05/19/whatsaaa/</link>
		<comments>http://cctechblogs.wordpress.com/2009/05/19/whatsaaa/#comments</comments>
		<pubDate>Tue, 19 May 2009 00:57:17 +0000</pubDate>
		<dc:creator>Cherry Cherian</dc:creator>
				<category><![CDATA[Cisco Admin]]></category>
		<category><![CDATA[Network Admin]]></category>

		<guid isPermaLink="false">http://cctechblogs.wordpress.com/?p=11</guid>
		<description><![CDATA[You probably use Authentication, Authorization, and Accounting (AAA), in some form, every day. But what is AAA in terms of network security? David Davis tells you what you need to know about AAA and the basic configuration for it in the Cisco IOS. What is AAA? When it comes to network security, AAA is a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cctechblogs.wordpress.com&amp;blog=7795806&amp;post=11&amp;subd=cctechblogs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><em>You probably use Authentication, Authorization, and Accounting (AAA), in some form, every day. But what is AAA in terms of network security? David Davis tells you what you need to know about AAA and the basic configuration for it in the Cisco IOS.</em></p>
<p><span id="more-11"></span><em></em></p>
<p><strong>What is AAA?</strong></p>
<p>When it comes to network security, AAA is a requirement. Here is what each of these are used for and why you should care:</p>
<ul type="disc">
<li><strong>Authentication</strong>: Identifies users by login and password using challenge and response methodology before the user even gains access to the network. Depending on your security options, it can also support encryption.</li>
<li><strong>Authorization</strong>: After initial authentication, authorization looks at what that authenticated user has access to do. RADIUS or TACACS+ security servers perform authorization for specific privileges by defining attribute-value (AV) pairs, which would be specific to the individual user rights. In the Cisco IOS, you can define AAA authorization with a named list or authorization method.</li>
<li><strong>Accounting: </strong>The last “A” is for accounting. It provides a way of collecting security information that you can use for billing, auditing, and reporting. You can use accounting to see what users do once they are authenticated and authorized. For example, with accounting, you could get a log of when users logged in and when they logged out.</li>
</ul>
<h2>Why every network admin should care about AAA</h2>
<p>Besides passing certification tests like the Cisco CCNA Security, AAA is a critical piece of network infrastructure. AAA is what keeps your network secure by making sure only the right users are authenticated, that those users have access only to the right network resources, and that those users are logged as they go about their business.</p>
<h2>How do you configure AAA in the Cisco IOS?</h2>
<p>Here are the steps to configuring AAA:</p>
<ul type="disc">
<li>Enable AAA</li>
<li>Configure authentication, using RADIUS or TACACS+</li>
<li>Define the method lists for authentication</li>
<li>Apply the method lists per line/ per interface</li>
</ul>
<p>It is important to note that Cisco IOS software attempts authentication with the next-listed authentication method only when there is no response from the previous method. If the security server or user database responds by denying the user access, the authentication process and the user will get a denied user prompt. To configure AAA, use the following statement in global configuration mode:</p>
<pre>Router(config)# aaa new-model</pre>
<p>From this point, most admins start configuring AAA by setting up authentication.</p>
<p>Here is one example of how to configure login authentication using the enable password.</p>
<pre><a title="wp1001167" name="wp1001167"></a>Router(config)# aaa authentication login default enable</pre>
<p>Perhaps you wanted to apply a method list only to a particular interface or set of interfaces. You would create a method list and then apply it to the interfaces. Here’s an example of an authentication method that will be applied only to an interface:<a title="wp1000953" name="wp1000953"></a></p>
<pre>Router(config)# aaa authentication ppp default group radius group tacacs+ local
<a title="wp1000954" name="wp1000954"></a>Router(config)# aaa authentication ppp apple group radius group tacacs+ local none
<a title="wp1000955" name="wp1000955"></a>Router(config)# interface async 3
<a title="wp1000956" name="wp1000956"></a>Router (config-if)# ppp authentication chap apple</pre>
<p>There are literally hundreds of different ways to configure AAA, including group RADIUS and TACACS+. For more information, see the official Cisco IOS documentation article, “<a href="http://www.cisco.com/en/US/docs/ios/12_2/security/configuration/guide/scfathen.html#wp1001165" target="_blank">Configuring Authentication</a>.”</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cctechblogs.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cctechblogs.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cctechblogs.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cctechblogs.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cctechblogs.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cctechblogs.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cctechblogs.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cctechblogs.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cctechblogs.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cctechblogs.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cctechblogs.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cctechblogs.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cctechblogs.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cctechblogs.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cctechblogs.wordpress.com&amp;blog=7795806&amp;post=11&amp;subd=cctechblogs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cctechblogs.wordpress.com/2009/05/19/whatsaaa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/74ea430fdeadb8ea378ca34aea4df547?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CC Techie</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello World</title>
		<link>http://cctechblogs.wordpress.com/2009/05/18/hello-world/</link>
		<comments>http://cctechblogs.wordpress.com/2009/05/18/hello-world/#comments</comments>
		<pubDate>Mon, 18 May 2009 07:11:33 +0000</pubDate>
		<dc:creator>Cherry Cherian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hello and Welcome to my Tech notepad  on cyberspace. This is my maiden post announcing entry into blogosphere. Encoragements are welcome and sarcasm discouraged. Also do tolerate shortcomings if any and suggest corrective steps.  Hope my jottings add some vlue to the already overcrowed blogging circles. Bye for now<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cctechblogs.wordpress.com&amp;blog=7795806&amp;post=1&amp;subd=cctechblogs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:left;">Hello and Welcome to my Tech notepad  on cyberspace. This is my maiden post announcing entry into blogosphere. Encoragements are welcome and sarcasm discouraged. Also do tolerate shortcomings if any and suggest corrective steps.  Hope my jottings add some vlue to the already overcrowed blogging circles.</p>
<p style="text-align:left;">Bye for now</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cctechblogs.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cctechblogs.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cctechblogs.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cctechblogs.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cctechblogs.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cctechblogs.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cctechblogs.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cctechblogs.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cctechblogs.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cctechblogs.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cctechblogs.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cctechblogs.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cctechblogs.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cctechblogs.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cctechblogs.wordpress.com&amp;blog=7795806&amp;post=1&amp;subd=cctechblogs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cctechblogs.wordpress.com/2009/05/18/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/74ea430fdeadb8ea378ca34aea4df547?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CC Techie</media:title>
		</media:content>
	</item>
	</channel>
</rss>
