<?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>[LINICKX].com &#187; asa</title>
	<atom:link href="http://www.linickx.com/tag/asa/feed" rel="self" type="application/rss+xml" />
	<link>http://www.linickx.com</link>
	<description>Moments of Genius followed by Trash.</description>
	<lastBuildDate>Tue, 07 Feb 2012 15:06:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Cisco ASA Firewalls and IP Ranges in ACLS</title>
		<link>http://www.linickx.com/3205/cisco-asa-firewalls-and-ip-ranges-in-acls</link>
		<comments>http://www.linickx.com/3205/cisco-asa-firewalls-and-ip-ranges-in-acls#comments</comments>
		<pubDate>Fri, 29 Jul 2011 15:05:55 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[asa]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=3205</guid>
		<description><![CDATA[I&#8217;ve google&#8217;d and I cannot find a way of creating a firewall range style object in an ASA, you know the kind of thing whereby you want to allow IP addresses 192.168.1.10 thru 192.168.1.20 in an ACL. In my frustration &#8230; <a href="http://www.linickx.com/3205/cisco-asa-firewalls-and-ip-ranges-in-acls">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve google&#8217;d and I cannot find a way of creating a firewall range style object in an ASA, you know the kind of thing whereby you want to allow IP addresses 192.168.1.10 thru 192.168.1.20 in an ACL.</p>
<p>In my frustration I have given up and created a shell script which converts a CSV into an ASA output, simply create a two column CSV with Col A containing your starting IP and Col B containing you end IP.</p>
<p>The script is a recursive loop so should support large outputs such as 10.1.2.10 to 10.2.1.20 howvere I&#8217;m not actually sure you&#8217;d want that in your firewall config but I wrote the computability for the fun it!</p>
<p>Have fun, click &#8220;more&#8221; below if you can&#8217;t see the script!</p>
<p><span id="more-3205"></span></p>
<pre class="brush: bash; title: ; notranslate">
#!/bin/bash

# Commas separated VAR....
IFS=&quot;,&quot;
while read name firstip lastip
# Loop around CSV
do

# Split up our first ip into it's octects
firstipfirstoctect=$(echo $firstip | awk -F &quot;.&quot; '{print $1}')
firstipsecondoctect=$(echo $firstip | awk -F &quot;.&quot; '{print $2}')
firstipthirdoctect=$(echo $firstip | awk -F &quot;.&quot; '{print $3}')
firstipforthoctect=$(echo $firstip | awk -F &quot;.&quot; '{print $4}')

# Split up our last IP into it's ocects
lastipfirstoctect=$(echo $lastip | awk -F &quot;.&quot; '{print $1}')
lastipsecondoctect=$(echo $lastip | awk -F &quot;.&quot; '{print $2}')
lastipthirdoctect=$(echo $lastip | awk -F &quot;.&quot; '{print $3}')
lastipforthoctect=$(echo $lastip | awk -F &quot;.&quot; '{print $4}')

	# Re-set BASH
	unset IFS 

	# Echo out the object GROUP name
	echo &quot;object-group network $name&quot;

	# Loop through 1st Octect
	for a in `seq $firstipfirstoctect $lastipfirstoctect`;
	do
		# test to see if we need to print the whole range
		if [ $firstipfirstoctect -lt $lastipfirstoctect ]
		then
			firstipsecondoctectCOUNTER=&quot;0&quot;
			lastipsecondoctectCOUNTER=&quot;255&quot;
		fi

		# first IP might not be 1
		if [ $a -eq $firstipfirstoctect ]
		then
			firstipsecondoctectCOUNTER=$firstipsecondoctect
		fi

		# last IP might not be 255
		if [ $a -eq $lastipfirstoctect ]
		then
			lastipsecondoctectCOUNTER=$lastipsecondoctect
		fi

			# Loop through 2nd Octect
			for b in `seq $firstipsecondoctect $lastipsecondoctect`;
			do

				# Same tests as before except, next octect.
				if [ $firstipsecondoctect -lt $lastipsecondoctect ]
				then
					firstipthirdoctectCOUNTER=&quot;0&quot;
					lastipthirdoctectCOUNTER=&quot;255&quot;
				fi

				if [ $b -eq $firstipsecondoctect ]
				then
					firstipthirdoctectCOUNTER=$firstipthirdoctect
				fi

				if [ $b -eq $lastipsecondoctect ]
				then
					lastipthirdoctectCOUNTER=$lastipthirdoctect
				fi

					# Loop through 3rd Octect
					for c in `seq $firstipthirdoctectCOUNTER $lastipthirdoctectCOUNTER`;
					do

						# copy / paste / tweak
						if [ $firstipthirdoctect -lt $lastipthirdoctect ]
						then
							firstipforthoctectCOUNTER=&quot;0&quot;
							lastipforthoctectCOUNTER=&quot;255&quot;
						fi

						if [ $c -eq $firstipthirdoctect ]
						then
							firstipforthoctectCOUNTER=$firstipforthoctect
						fi

						if [ $c -eq $lastipthirdoctect ]
						then
							lastipforthoctectCOUNTER=$lastipforthoctect
						fi

							# final octect... echo result.
							for d in `seq $firstipforthoctectCOUNTER $lastipforthoctectCOUNTER`;
							do
								echo &quot; network-object $a.$b.$c.$d  255.255.255.255&quot;
							done

					done
			done
	done

done&lt;./FirewallRanges.csv
</pre>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2012 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/3205/cisco-asa-firewalls-and-ip-ranges-in-acls/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Cisco ASA &#8211; First steps to a Check Point Style Policy</title>
		<link>http://www.linickx.com/3132/cisco-asa-first-steps-to-a-check-point-style-policy</link>
		<comments>http://www.linickx.com/3132/cisco-asa-first-steps-to-a-check-point-style-policy#comments</comments>
		<pubDate>Wed, 01 Dec 2010 10:14:40 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[asa]]></category>
		<category><![CDATA[firewall]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=3132</guid>
		<description><![CDATA[I&#8217;ve just spotted this in the Cisco ASA 8.3 release notes&#8230; You can now configure access rules that are applied globally, as well as access rules that are applied to an interface. If the configuration specifies both a global access &#8230; <a href="http://www.linickx.com/3132/cisco-asa-first-steps-to-a-check-point-style-policy">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just spotted this in the Cisco <a href="http://www.cisco.com/en/US/docs/security/asa/asa83/release/notes/asarn83.html">ASA 8.3 release notes</a>&#8230;</p>
<blockquote><p>You can now configure access rules that are applied globally, as well as access rules that are applied to an interface. If the configuration specifies both a global access policy and interface-specific access policies, the interface-specific policies are evaluated before the global policy.</p>
<p>The following command was modified: access-group global</p></blockquote>
<p>For users/companies which have migrated from Check Point to Cisco (<em>usually to save on licensing fees</em>), getting their head around a new interface level policy rather than a system (<em>global</em>) level is usually a bit of a challenge. </p>
<p>I&#8217;m looking forward to seeing if this really helps with policy migrations!</p>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2012 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/3132/cisco-asa-first-steps-to-a-check-point-style-policy/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Irritating ASDM &amp; Java issues&#8230;</title>
		<link>http://www.linickx.com/1132/irritating-asdm-java-issues</link>
		<comments>http://www.linickx.com/1132/irritating-asdm-java-issues#comments</comments>
		<pubDate>Wed, 20 May 2009 17:02:37 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[asa]]></category>
		<category><![CDATA[asdm]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=1132</guid>
		<description><![CDATA[Follow up from this tweet. Every time I tried to connect to the ASA&#8217;s ASDM Java would crash with a Null Pointer exception, I tried everything from deleting the .asdm folder in my home directory (my documents on windows), uninstalling &#8230; <a href="http://www.linickx.com/1132/irritating-asdm-java-issues">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Follow up <a href="http://www.linickx.com/archives/1129/having-issues-with-java-and-as">from this</a> <a href="http://twitter.com/linickx/status/1857481093">tweet</a>. Every time I tried to connect to the ASA&#8217;s ASDM Java would crash with a Null Pointer exception, I tried everything from deleting the .asdm folder in my home directory (<em>my documents on windows</em>), uninstalling the asdm launcher didn&#8217;t help, neither did clearing java&#8217;s cache or uninstalling and re-installing java. </p>
<p>In the end i had to downgrade, very frustrating!</p>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2012 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/1132/irritating-asdm-java-issues/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Strange ASA ARP Replying Behavior</title>
		<link>http://www.linickx.com/450/strange-asa-arp-replying-behavior</link>
		<comments>http://www.linickx.com/450/strange-asa-arp-replying-behavior#comments</comments>
		<pubDate>Thu, 10 Jul 2008 09:02:29 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[asa]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=450</guid>
		<description><![CDATA[I&#8217;ve been implementing a few Cisco ASA&#8217;s recently, and I blogged about this strange behavior; well I came across another one yesterday. Take a look at this debug arp&#8230;. CiscoASA# debug arp debug arp enabled at level 1 CiscoASA# CiscoASA# &#8230; <a href="http://www.linickx.com/450/strange-asa-arp-replying-behavior">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been implementing a few Cisco ASA&#8217;s recently, and <a href="http://www.linickx.com/archives/446/cisco-asa-and-7905-ip-phone-weirdness">I blogged about this strange behavior</a>; well I came across another one yesterday.</p>
<p>Take a look at this debug arp&#8230;.</p>
<pre>
CiscoASA# debug arp
debug arp  enabled at level 1
CiscoASA#
CiscoASA# arp-set: added arp outside 192.168.1.122 001e.7000.1234 and updating NPs at 4301321940
arp-set: added arp inside 192.168.1.61 001a.7100.1234 and updating NPs at 4301321940
<blockquote>
<code>arp-in: request at outside from 192.168.1.125 001a.3000.1234 for 192.168.1.120 001e.7a51.1234
arp-in: rqst for me from 192.168.1.125 for 192.168.1.120, on outside
arp-set: added arp outside 192.168.1.125 001a.3000.1234 and updating NPs at 4301326660
arp-in: generating reply from 192.168.1.120 001e.7a51.1234 to 192.168.1.125 001a.3000.1234</code></blockquote>

arp-in: request at outside from 192.168.1.125 001a.3000.1234 for 192.168.1.73 001e.7a51.1234
arp-in: rqst for me from 192.168.1.125 for 192.168.1.73, on outside
arp-set: added arp outside 192.168.1.125 001a.3000.1234 and updating NPs at 4301326660
arp-in: generating reply from 192.168.1.73 001e.7a51.1234 to 192.168.1.125 001a.3000.1234
arp-in: request at outside from 192.168.1.125 001a.3000.1234 for 192.168.1.69 001e.7a51.1234
<blockquote>
<code>arp-in: rqst for me from 192.168.1.125 for 192.168.1.69, on outside
arp-set: added arp outside 192.168.1.125 001a.3000.1234 and updating NPs at 4301326660
arp-in: generating reply from 192.168.1.69 001e.7a51.1234 to 192.168.1.125 001a.3000.1234</code></blockquote>

arp-in: request at outside from 192.168.1.125 001a.3000.1234 for 192.168.1.123 001e.7a51.1234
arp-in: rqst for me from 192.168.1.125 for 192.168.1.123, on outside
arp-set: added arp outside 192.168.1.125 001a.3000.1234 and updating NPs at 4301326660
arp-in: generating reply from 192.168.1.123 001e.7a51.1234 to 192.168.1.125 001a.3000.1234
arp-in: response at outside from 192.168.1.125 001a.3000.1234 for 192.168.1.125 ffff.ffff.ffff
arp-in: updating gratuitous ARP 192.168.1.125 - 001a.3000.1234
arp-set: added arp outside 192.168.1.125 001a.3000.1234 and updating NPs at 4301326660
CiscoASA#
</pre>
<p>The firewall is replying to arp requests even though both the source &#038; destination of the traffic are on the same (<em>outside</em>) interface, now I haven&#8217;t manged to work out why the firewall was doing this, but I did find <a href="http://forum.cisco.com/eforum/servlet/NetProf?page=netprof&#038;forum=Security&#038;topic=Firewalling&#038;topicID=.ee6e1fa&#038;fromOutline=&#038;CommCmd=MB%3Fcmd%3Ddisplay_location%26location%3D.2cc12b2b">a fix on the cisco forums</a>.</p>
<p><code>sysopt noproxyarp outside</code></p>
<p>Names, IPs &#038; MAC&#8217;s have been changed to protect the innocent.<br />
 <img src='http://www.linickx.com/wp/wp-includes/images/smilies/icon_cool.gif' alt=':cool:' class='wp-smiley' /> </p>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2012 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/450/strange-asa-arp-replying-behavior/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cisco ASA and 7905 IP Phone Weirdness</title>
		<link>http://www.linickx.com/446/cisco-asa-and-7905-ip-phone-weirdness</link>
		<comments>http://www.linickx.com/446/cisco-asa-and-7905-ip-phone-weirdness#comments</comments>
		<pubDate>Tue, 24 Jun 2008 08:30:04 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[asa]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[ipt]]></category>
		<category><![CDATA[VoIP]]></category>
		<category><![CDATA[weird]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=446</guid>
		<description><![CDATA[I came accross something odd the other day, I had some Cisco IP Phones on a DMZ interface and the Call Manager was behind the inside interface. If you made a call from a 7940 to a 7940 everything worked &#8230; <a href="http://www.linickx.com/446/cisco-asa-and-7905-ip-phone-weirdness">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I came accross something odd the other day, I had some Cisco IP Phones on a DMZ interface and the Call Manager was behind the inside interface. If you made a call from a 7940 to a 7940 everything worked fine, if you made a call from a 7905 to a 7940 it failled! </p>
<p>I ran <a href="http://www.linickx.com/archives/112/debug-packet-command-missing-on-pix-7">a packet capture</a> and found that the phone was &#8220;bouncing&#8221; the RTP stream off the firewall rather than connecting directly to the peer phone&#8230; very weird! The problem was solved by enabling&#8230;</p>
<pre>
same-security-traffic permit intra-interface</pre>
<p>I thought I post this for some future googlers!</p>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2012 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/446/cisco-asa-and-7905-ip-phone-weirdness/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Backup Interface on Cisco ASA Firewall</title>
		<link>http://www.linickx.com/444/backup-interface-on-cisco-asa-firewall</link>
		<comments>http://www.linickx.com/444/backup-interface-on-cisco-asa-firewall#comments</comments>
		<pubDate>Tue, 10 Jun 2008 18:06:45 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[asa]]></category>
		<category><![CDATA[firewall]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=444</guid>
		<description><![CDATA[I tweeted a little while ago about Nokia recently supporting interface failover within IPSO, well it looks like Cisco&#8217;s ASA Version 8 software can do it now too! The following example creates two redundant interfaces: asa(config)# interface redundant 1 asa(config-if)# &#8230; <a href="http://www.linickx.com/444/backup-interface-on-cisco-asa-firewall">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.linickx.com/archives/395/learned-something-new-recently">I tweeted</a> a little while ago about Nokia recently supporting interface failover within IPSO, well it looks like Cisco&#8217;s ASA Version 8 software can do it now too!</p>
<blockquote><p>The following <a href="http://www.cisco.com/en/US/partner/docs/security/asa/asa80/configuration/guide/intrface.html#wpmkr1046659">example</a> creates two redundant interfaces:</p>
<p><code>asa(config)# interface redundant 1<br />
asa(config-if)# member-interface gigabitethernet 0/0<br />
asa(config-if)# member-interface gigabitethernet 0/1<br />
asa(config-if)# interface redundant 2<br />
asa(config-if)# member-interface gigabitethernet 0/2<br />
asa(config-if)# member-interface gigabitethernet 0/3</code></p></blockquote>
<p>Reference: <a href="http://www.cisco.com/en/US/partner/docs/security/asa/asa80/configuration/guide/intrface.html#wpmkr1046659">Adding a Redundant Interface</a></p>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2012 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/444/backup-interface-on-cisco-asa-firewall/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OSPF &amp; Cisco ASAs</title>
		<link>http://www.linickx.com/298/ospf-cisco-asas</link>
		<comments>http://www.linickx.com/298/ospf-cisco-asas#comments</comments>
		<pubDate>Tue, 24 Jul 2007 15:41:15 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[asa]]></category>
		<category><![CDATA[ospf]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.linickx.com/blog/archives/298/ospf-cisco-asas/</guid>
		<description><![CDATA[One of the interesting things about ASA&#8217;s is the fact that it supports running two OSPF Processes. This was a great decision by cisco, if a business has two different OSPF domains the chances are they are owned by two &#8230; <a href="http://www.linickx.com/298/ospf-cisco-asas">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One of the interesting things about ASA&#8217;s is the fact that it supports running two OSPF Processes.  This was a great decision by cisco, if a business has two different OSPF domains the chances are they are owned by two separate parts of the business, so where would be a better place to put a firewall?</p>

<a href='http://www.linickx.com/298/ospf-cisco-asas/asa-ospf-lab-senario' title='ASA OSPF Lab Senario'><img src="http://www.linickx.com/files/2008/10/asa-ospf-lab-senario.png" class="attachment-thumbnail" alt="My Lab Setup" title="ASA OSPF Lab Senario" /></a>
<a href='http://www.linickx.com/298/ospf-cisco-asas/asa-ospf-overview' title='ASA OSPF Overview'><img src="http://www.linickx.com/files/2008/10/asa-ospf-overview.png" class="attachment-thumbnail" alt="Overview of what we&#039;re doing" title="ASA OSPF Overview" /></a>

<p>I&#8217;ve put together a basic lab / config to test out the functionality, obviously this doesn&#8217;t address IP conflicts which are quite likely to happen in a real world scenario, but you do get the general idea. In <a href="http://www.linickx.com/files/cisco/">my cisco config directory </a>you&#8217;ll find two router configs and an ASA config. Each router is intended to represent each ospf domain, the ASA will then re-distribute the routes into each process&#8230; <strong>Note</strong>: you&#8217;ll see some &#8220;show&#8221; commands at the end of the config files.</p>
<p>I actually put this together as a &#8220;just in case&#8221; type thing, but I expect this to come in very handy in the future ! <img src='http://www.linickx.com/wp/wp-includes/images/smilies/icon_cool.gif' alt=':cool:' class='wp-smiley' /> </p>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2012 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/298/ospf-cisco-asas/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

