<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Packetslave Industries &#187; ASA</title>
	<atom:link href="http://www.packetslave.com/category/asa/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.packetslave.com</link>
	<description>This is my blog.  There are many like it, but this one is mine.</description>
	<lastBuildDate>Tue, 20 Jul 2010 19:04:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>ASA URL filtering with MPF</title>
		<link>http://www.packetslave.com/2009/10/21/asa-url-filtering-with-mpf/</link>
		<comments>http://www.packetslave.com/2009/10/21/asa-url-filtering-with-mpf/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 17:36:03 +0000</pubDate>
		<dc:creator>blanders</dc:creator>
				<category><![CDATA[ASA]]></category>
		<category><![CDATA[CCIE]]></category>
		<category><![CDATA[CCIE Security]]></category>
		<category><![CDATA[filtering]]></category>
		<category><![CDATA[MPF]]></category>

		<guid isPermaLink="false">http://www.packetslave.com/?p=177</guid>
		<description><![CDATA[Problem:  &#8220;I want to block facebook.com and myspace.com but I don&#8217;t have a Websense server.&#8221; regex domlist1 "facebook.com" regex domlist2 "myspace.com" ! class-map type regex match-any DomainBlockList match regex domlist1 match regex domlist2 ! class-map type inspect http match-all BlockDomainsClass match request header host regex class DomainBlockList ! policy-map type inspect http http_inspection_policy class BlockDomainsClass [...]]]></description>
			<content:encoded><![CDATA[<p>Problem:  &#8220;I want to block facebook.com and myspace.com but I don&#8217;t have a Websense server.&#8221;</p>
<pre>regex domlist1 "facebook.com"
regex domlist2 "myspace.com"
!
class-map type regex match-any DomainBlockList
  match regex domlist1
  match regex domlist2
!
class-map type inspect http match-all BlockDomainsClass
  match request header host regex class DomainBlockList
!
policy-map type inspect http http_inspection_policy
  class BlockDomainsClass
  reset log
!
policy-map global_policy
  class inspection_default
  inspect http http_inspection_policy
!
service-policy global_policy global
wr mem</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.packetslave.com/2009/10/21/asa-url-filtering-with-mpf/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>BGP Through an ASA with Authentication</title>
		<link>http://www.packetslave.com/2009/07/12/bgp-through-an-asa-with-authentication/</link>
		<comments>http://www.packetslave.com/2009/07/12/bgp-through-an-asa-with-authentication/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 19:34:04 +0000</pubDate>
		<dc:creator>blanders</dc:creator>
				<category><![CDATA[ASA]]></category>
		<category><![CDATA[BGP]]></category>
		<category><![CDATA[CCIE]]></category>
		<category><![CDATA[CCIE Security]]></category>

		<guid isPermaLink="false">http://www.packetslave.com/?p=173</guid>
		<description><![CDATA[By default, the ASA will strip TCP option 19 causing MD5 authentication for BGP to fail.  In addition, the ASA randomizes the TCP sequence numbers, which also breaks things.  To fix this: tcp-map BGP_FIX tcp-options range 19 19 allow ! access-list BGP permit tcp any any eq 179 ! class BGP match access-list BGP !! [...]]]></description>
			<content:encoded><![CDATA[<p>By default, the ASA will strip TCP option 19 causing MD5 authentication for BGP to fail.  In addition, the ASA randomizes the TCP sequence numbers, which also breaks things.  To fix this:</p>
<pre>tcp-map BGP_FIX
  tcp-options range 19 19 allow
!
access-list BGP permit tcp any any eq 179
!
class BGP
  match access-list BGP
  !! could also use match protocol tcp eq bgp
!
policy-map global_policy
  class BGP
    set connection advanced-options BGP_FIX
    set connection random-sequence-number disable
!</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.packetslave.com/2009/07/12/bgp-through-an-asa-with-authentication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASA Authentication Proxy with ACS</title>
		<link>http://www.packetslave.com/2009/07/12/asa-authentication-proxy-with-acs/</link>
		<comments>http://www.packetslave.com/2009/07/12/asa-authentication-proxy-with-acs/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 16:45:45 +0000</pubDate>
		<dc:creator>blanders</dc:creator>
				<category><![CDATA[AAA]]></category>
		<category><![CDATA[ASA]]></category>
		<category><![CDATA[CCIE]]></category>
		<category><![CDATA[CCIE Security]]></category>

		<guid isPermaLink="false">http://www.packetslave.com/?p=171</guid>
		<description><![CDATA[Goal:  all outbound telnet and HTTP connections passing through the ASA must first be authenticated against an ACS server using the TACACS+ protocol. aaa-server ACS_SERVER protocol tacacs+ aaa-server ACS_SERVER (inside) host 1.2.3.4 key myACSkey ! access-list outbound_auth permit tcp any any eq 23 access-list outbound_auth permit tcp any any eq 80 ! aaa authentication match [...]]]></description>
			<content:encoded><![CDATA[<p>Goal:  all outbound telnet and HTTP connections passing through the ASA must first be authenticated against an ACS server using the TACACS+ protocol.</p>
<pre>aaa-server ACS_SERVER protocol tacacs+
aaa-server ACS_SERVER (inside) host 1.2.3.4
    key myACSkey
!
access-list outbound_auth permit tcp any any eq 23
access-list outbound_auth permit tcp any any eq 80
!
aaa authentication match outbound_auth inside ACS_SERVER</pre>
<p>There are additional options to configure HTTP vs. HTTPS and redirection vs. basic HTTP authentication.  The documentation is a bit confusing, so I will be labbing this up shortly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.packetslave.com/2009/07/12/asa-authentication-proxy-with-acs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASA Enhanced Service Object Groups</title>
		<link>http://www.packetslave.com/2009/07/11/asa-enhanced-service-object-groups/</link>
		<comments>http://www.packetslave.com/2009/07/11/asa-enhanced-service-object-groups/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 22:02:07 +0000</pubDate>
		<dc:creator>blanders</dc:creator>
				<category><![CDATA[ASA]]></category>
		<category><![CDATA[CCIE]]></category>
		<category><![CDATA[CCIE Security]]></category>

		<guid isPermaLink="false">http://www.packetslave.com/?p=168</guid>
		<description><![CDATA[The ASA introduced the concept of object groups in version 7.0.  You could group a list of IP addresses, protocols, services, or ICMP types into one logical entity and refer to it by name in your access lists.  In the 7.x releases, however, a service object group could only contain entries for a single protocol [...]]]></description>
			<content:encoded><![CDATA[<p>The ASA introduced the concept of <a title="ASA 7.0 Configuration Guide" href="http://www.cisco.com/en/US/docs/security/asa/asa70/configuration/guide/traffic.html#wp1053224">object groups</a> in version 7.0.  You could group a list of IP addresses, protocols, services, or ICMP types into one logical entity and refer to it by name in your access lists.  In the 7.x releases, however, a service object group could only contain entries for a single protocol (TCP, UDP, or both TCP/UDP).  This forced admins to either use a separate object group for TCP and UDP ports (requiring two ACE entries), or to match more ports than necessary (by using the tcp-udp type).</p>
<p>The 8.0 release of the ASA software solves this problem by introducing an enhanced Service object group that allows a mix of multiple protocols within the same group.  Unfortunately, the 8.0 and 8.2 ASA configuration guides don&#8217;t appear to cover this new type of service group or show an example.</p>
<pre>object-group network DMZ_NET
  network-object 1.2.3.0 255.255.255.0
!
object-group service DMZ_SERVICES
  service-object tcp eq 80
  service-object udp eq 53
  service-object tcp eq 53
  service-object icmp
!
access-list DMZ extended permit object-group DMZ_SERVICES any object-group DMZ_NET</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.packetslave.com/2009/07/11/asa-enhanced-service-object-groups/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
