<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:media="http://search.yahoo.com/mrss/" version="2.0">

<channel>
	<title>CCIE Quick Reference</title>
	
	<link>http://www.cciequick.com</link>
	<description>Short, concise reference information and checklists for your CCIE study</description>
	<lastBuildDate>Sun, 07 Feb 2010 20:17:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
	<!-- podcast_generator="podPress/8.8.10.2" -->
	<copyright>Copyright © CCIE Quick Reference 2011 </copyright>
	<managingEditor>brian@packetslave.com (CCIE Quick Reference)</managingEditor>
	<webMaster>brian@packetslave.com (CCIE Quick Reference)</webMaster>
	<image>
		<url>http://www.cciequick.com/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
		<title>CCIE Quick Reference</title>
		<link>http://www.cciequick.com</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:subtitle />
	<itunes:summary>Short, concise reference information and checklists for your CCIE study</itunes:summary>
	<itunes:keywords />
	<itunes:category text="Society &amp; Culture" />
	<itunes:author>CCIE Quick Reference</itunes:author>
	<itunes:owner>
		<itunes:name>CCIE Quick Reference</itunes:name>
		<itunes:email>brian@packetslave.com</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://www.cciequick.com/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/CcieQuickReference" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="cciequickreference" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Configure IOS Zone-based Firewall (ZBF)</title>
		<link>http://www.cciequick.com/2010/02/07/configure-ios-zone-based-firewall-zbf/</link>
		<comments>http://www.cciequick.com/2010/02/07/configure-ios-zone-based-firewall-zbf/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 20:17:09 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[CCIE R&S]]></category>
		<category><![CDATA[CCIE Security]]></category>
		<category><![CDATA[IOS firewall ZBF security]]></category>

		<guid isPermaLink="false">http://www.cciequick.com/?p=4</guid>
		<description><![CDATA[Create zones zone security INSIDE zone security OUTSIDE Map zones to interfaces interface Serial1/0 zone-member security OUTSIDE ! interface GigabitEthernet0/0 zone-member security INSIDE ! Create class-maps to classify inter-zone traffic class-map type inspect match-any SERVERS match protocol http match protocol smtp ! Create policy-maps to filter inter-zone traffic policy-map type inspect INBOUND_POLICY class type inspect [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>Create zones</li>
<pre>
zone security INSIDE
zone security OUTSIDE
</pre>
<li>Map zones to interfaces</li>
<pre>
interface Serial1/0
  zone-member security OUTSIDE
!
interface GigabitEthernet0/0
  zone-member security INSIDE
!
</pre>
<li>Create class-maps to classify inter-zone traffic</li>
<pre>
class-map type inspect match-any SERVERS
  match protocol http
  match protocol smtp
!
</pre>
<li>Create policy-maps to filter inter-zone traffic</li>
<pre>
policy-map type inspect INBOUND_POLICY
  class type inspect SERVERS
    pass
!
policy-map type inspect OUTBOUND_POLICY
  class-default
    inspect
!
</pre>
<li>Configure zone-pairs to apply policies to traffic</li>
<pre>
zone-pair security IN2OUT source INSIDE destination OUTSIDE
  service-policy type inspect OUTBOUND_POLICY
!
zone-pair security OUT2IN source OUTSIDE destination INSIDE
  service-policy type inspect INBOUND_POLICY
!
</pre>
<li>Verify</li>
<pre>
show policy-map type inspect zone-pair
</pre>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.cciequick.com/2010/02/07/configure-ios-zone-based-firewall-zbf/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Configure IOS Intrusion Prevention (IPS)</title>
		<link>http://www.cciequick.com/2010/01/16/configure-ios-intrusion-prevention-ips/</link>
		<comments>http://www.cciequick.com/2010/01/16/configure-ios-intrusion-prevention-ips/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 19:15:32 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[CCIE R&S]]></category>
		<category><![CDATA[CCIE Security]]></category>
		<category><![CDATA[IDS]]></category>
		<category><![CDATA[IOS]]></category>
		<category><![CDATA[IPS]]></category>
		<category><![CDATA[R&S]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.cciequick.com/?p=1</guid>
		<description><![CDATA[Create and define a directory for IPS configuration files mkdir flash:/ips Import the Cisco RSA public key (available from the cisco.com download area) crypto key pubkey-chain rsa named-key realm-cisco.pub signature key-string .... quit (optional) create an ACL to define what traffic gets inspected ip access-list extended IPS-INSPECT permit ip any host 1.2.3.4 permit ip host [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>Create and define a directory for IPS configuration files</li>
<pre>mkdir flash:/ips</pre>
<li>Import the Cisco RSA public key (available from the cisco.com download area)</li>
<pre>
crypto key pubkey-chain rsa
  named-key realm-cisco.pub signature
    key-string
    ....
    quit</pre>
<li>(optional) create an ACL to define what traffic gets inspected</li>
<pre>
ip access-list extended IPS-INSPECT
  permit ip any host 1.2.3.4
  permit ip host 1.2.3.4 any
!
ios ips name IPS1 list IPS-INSPECT</pre>
<li>Retire and un-retire signature sets</li>
<pre>
ip ips signature-category
  category-all
    retired true
  category ios_ips_basic
    retired false
    exit
  exit</pre>
<li>Apply the IPS configuration to an interface</li>
<pre>
int gi0/0
  ip ips IPS1 in
  ip ips IPS1 out</pre>
<li>Upload signature definitions</li>
<pre>copy ftp://cisco:cisco@10.1.1.1/IOS-S310-CLI.pkg idconf</pre>
<li>(optional) enable syslog notifications for IPS events</li>
<pre>ip ips notify log</pre>
<li>(optional) enable SDEE notifications for IPS events</li>
<pre>
access-list 80 permit 2.2.2.2
ip http access-class 80
ip http server enable
ip ips notify sdee</pre>
<li>(optional) Tweak individual signatures</li>
<pre>
ip ips signature-definition
  signature 6130 10
    engine
      event-action produce-alert
      event-action deny-packet-inline
      exit
    exit
  exit</pre>
<li>Verification</li>
<pre>show ip ips signature count</pre>
</ol>
<p>Based on Keith Barker&#8217;s <a href="http://blog.internetworkexpert.com/2010/01/14/ios-ips-ccie-rs-ccie-sc/">blog post</a> at InternetworkExpert and <a href="http://www.cisco.com/en/US/prod/collateral/iosswrel/ps6537/ps6586/ps6634/prod_white_paper0900aecd805c4ea8.html">this</a> Cisco.com technote.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cciequick.com/2010/01/16/configure-ios-intrusion-prevention-ips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

