<?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>Abi Rendon - Sysadmin &#187; Technology</title>
	<atom:link href="http://www.abirendon.com/index.php/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.abirendon.com</link>
	<description>The trials and tribulations of a web developer and sysadmin.</description>
	<lastBuildDate>Fri, 16 Apr 2010 18:51:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>VPN Tunnel Between Cisco ASA and Juniper SSG Firewalls</title>
		<link>http://www.abirendon.com/index.php/2009/11/03/vpn-tunnel-between-cisco-asa-and-juniper-ssg-firewalls/</link>
		<comments>http://www.abirendon.com/index.php/2009/11/03/vpn-tunnel-between-cisco-asa-and-juniper-ssg-firewalls/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 20:03:42 +0000</pubDate>
		<dc:creator>Abi Rendon</dc:creator>
				<category><![CDATA[Labor]]></category>
		<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[juniper]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.abirendon.com/?p=205</guid>
		<description><![CDATA[Recently at work I was tasked with configuring a VPN tunnel between Cisco ASA 5505 to a Juniper SSG 320M. After hearing that it wasn&#8217;t compatible from many sources including our partners I just could not believe that this was the case, ipsec tunnels are a standard protocol and both Juniper and Cisco should be [...]]]></description>
			<content:encoded><![CDATA[<p>Recently at work I was tasked with configuring a VPN tunnel between Cisco ASA 5505 to a Juniper SSG 320M. After hearing that it wasn&#8217;t compatible from many sources including our partners I just could not believe that this was the case, ipsec tunnels are a standard protocol and both Juniper and Cisco should be compatible with ipsec.</p>
<p>After a day of google searches and troubleshooting I couldn&#8217;t find a proper solution that was easy and explained properly for my type of standard setup. Here is how I configured an ipsec VPN tunnel between the SSG and ASA.</p>
<p><strong>Cisco ASA 5505</strong></p>
<ul>
<li>IP: 1.1.1.1</li>
<li>Network: 192.168.1.0/24</li>
</ul>
<p><strong>Juniper SSG 320M</strong></p>
<ul>
<li>IP: 2.2.2.2</li>
<li>Network: 192.168.2.0/24</li>
</ul>
<blockquote><p>
192.168.1.0/24 < -> 1.1.1.1 < --VPN Tunnel--> 2.2.2.2 < -> 192.168.2.0/24
</p></blockquote>
<p>Here is the actual configuration including all the access list to allow all traffic through, you will probably want to lock this down as it will allow all traffic through.</p>
<p><strong>Cisco ASA 5505 Configuration</strong></p>
<blockquote><p>
object-group network local_cisco_network<br />
 network-object 192.168.1.0 255.255.255.0<br />
object-group network remote_juniper_network<br />
 network-object 192.168.2.0 255.255.255.0</p>
<p>access-list ciscovpn_nat_junipervpn extended permit ip object-group local_cisco_network object-group remote_juniper_network<br />
access-list ciscovpn_nat_junipervpn extended permit ip object-group remote_juniper_network object-group local_cisco_network</p>
<p>access-list ciscotojuniper_cryptomap extended permit ip 192.168.1.0 255.255.255.0 192.168.2.0 255.255.255.0</p>
<p>crypto map outside_map 1 match address ciscotojuniper_cryptomap<br />
crypto map outside_map 1 set pfs<br />
crypto map outside_map 1 set peer 2.2.2.2<br />
crypto map outside_map 1 set transform-set ESP-3DES-SHA</p>
<p>tunnel-group 2.2.2.2 type ipsec-l2l<br />
tunnel-group 2.2.2.2 ipsec-attributes<br />
 pre-shared-key <mypresharedkey><br />
</mypresharedkey></p></blockquote>
<p><strong>Juniper SSG 320M Configuration</strong></p>
<blockquote><p>
set address &#8220;Trust&#8221; &#8220;192.168.2.0/24&#8243; 10.248.1.0 255.255.255.0<br />
set address &#8220;Untrust&#8221; &#8220;192.168.1.0/24&#8243; 10.0.10.0 255.255.255.0</p>
<p>set ike gateway &#8220;1.1.1.1&#8243; address 1.1.1.1 Main outgoing-interface &#8220;ethernet0/1&#8243; preshare &#8220;<mypresharedkey>&#8221; proposal &#8220;pre-g2-3des-sha&#8221;</p>
<p>set vpn &#8220;1.1.1.1&#8243; gateway &#8220;1.1.1.1&#8243; no-replay tunnel idletime 0 proposal &#8220;g2-esp-3des-sha&#8221;<br />
set policy id 2 name &#8220;1.1.1.1&#8243; from &#8220;Trust&#8221; to &#8220;Untrust&#8221;  &#8220;192.168.2.0/24&#8243; &#8220;192.168.1.0/24&#8243; &#8220;ANY&#8221; tunnel vpn &#8220;1.1.1.1&#8243; id 0xa pair-policy 1<br />
set policy id 2<br />
exit<br />
set policy id 1 name &#8220;1.1.1.1&#8243; from &#8220;Untrust&#8221; to &#8220;Trust&#8221;  &#8220;192.168.1.0/24&#8243; &#8220;192.168.2.0/24&#8243; &#8220;ANY&#8221; tunnel vpn &#8220;1.1.1.1&#8243; id 0xa pair-policy 2<br />
set policy id 1<br />
exit<br />
</mypresharedkey></p></blockquote>
<p>This configuration will allow traffic from 192.168.1.0/24 to 192.168.2.0/24 and vice versa. On the Juniper side the name of the vpn and gateway I think are important otherwise the Phase 1 negotiation will not work. If I&#8217;ve missed something or if you don&#8217;t understand something please let me know.</p>
<p>I will probably need to configure this against a Cisco router in the near future so stay tuned for an update for the cisco side.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abirendon.com/index.php/2009/11/03/vpn-tunnel-between-cisco-asa-and-juniper-ssg-firewalls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone Blog Test</title>
		<link>http://www.abirendon.com/index.php/2009/02/19/iphone-blog-test/</link>
		<comments>http://www.abirendon.com/index.php/2009/02/19/iphone-blog-test/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 00:24:13 +0000</pubDate>
		<dc:creator>Abi Rendon</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[phone]]></category>

		<guid isPermaLink="false">http://www.abirendon.com/index.php/2009/02/19/iphone-blog-test/</guid>
		<description><![CDATA[I&#8217;m just testing the wordpress plugin for the iPhone. So far it looks like it&#8217;s pretty good. I&#8217;m still looking for new iPhone apps too.


]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m just testing the wordpress plugin for the iPhone. So far it looks like it&#8217;s pretty good. I&#8217;m still looking for new iPhone apps too.</p>
<p><a href="http://www.abirendon.com/wp-content/uploads/2009/02/p-640-480-45f71667-b2e3-45ce-a11c-afa1bb7572ef.jpeg"><img src="http://www.abirendon.com/wp-content/uploads/2009/02/p-640-480-45f71667-b2e3-45ce-a11c-afa1bb7572ef.jpeg" alt="" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
<p><a href="http://www.abirendon.com/wp-content/uploads/2009/02/p-640-480-e2cb6b60-ec5d-4280-a0e7-9594faba5d6c.jpeg"><img src="http://www.abirendon.com/wp-content/uploads/2009/02/p-640-480-e2cb6b60-ec5d-4280-a0e7-9594faba5d6c.jpeg" alt="" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.abirendon.com/index.php/2009/02/19/iphone-blog-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New URL and Design</title>
		<link>http://www.abirendon.com/index.php/2009/02/19/new-url-and-design/</link>
		<comments>http://www.abirendon.com/index.php/2009/02/19/new-url-and-design/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 23:12:09 +0000</pubDate>
		<dc:creator>Abi Rendon</dc:creator>
				<category><![CDATA[Home]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[hp]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.abirendon.com/?p=171</guid>
		<description><![CDATA[As some might have noticed, I&#8217;ve recently updated my domain to abirendon.com and I&#8217;ve also applied a new wordpress theme, just made a few tweaks but it all seems to be working splendidly and it looks good.
I&#8217;ll be posting some guides on setting up and configuring VMWare ESXi, converting VMWare Server VMs to ESXi format, [...]]]></description>
			<content:encoded><![CDATA[<p>As some might have noticed, I&#8217;ve recently updated my domain to <a href="http://www.abirendon.com">abirendon.com</a> and I&#8217;ve also applied a new wordpress theme, just made a few tweaks but it all seems to be working splendidly and it looks good.</p>
<p>I&#8217;ll be posting some guides on setting up and configuring VMWare ESXi, converting VMWare Server VMs to ESXi format, configuring a raid 5 array on an MSA20 via linux command line and hopefully some more interesting pictures.</p>
<p>I&#8217;ve also just bought an iphone so I&#8217;ll probably be messing around with doing updates on the go.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abirendon.com/index.php/2009/02/19/new-url-and-design/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Samsung Blackjack</title>
		<link>http://www.abirendon.com/index.php/2007/05/17/samsung-blackjack/</link>
		<comments>http://www.abirendon.com/index.php/2007/05/17/samsung-blackjack/#comments</comments>
		<pubDate>Thu, 17 May 2007 17:20:40 +0000</pubDate>
		<dc:creator>Abi Rendon</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[phone]]></category>

		<guid isPermaLink="false">http://www.azuretek.com/archives/18</guid>
		<description><![CDATA[So I received my blackjack yesterday, so far I&#8217;d have to say it&#8217;s pretty neat. I&#8217;m enjoying it a lot. My only issues is the battery life, also moving my contacts over was a little more time consuming than I&#8217;d have hoped.
I still haven&#8217;t tried to write any applications for it but after I&#8217;m all [...]]]></description>
			<content:encoded><![CDATA[<p>So I received my blackjack yesterday, so far I&#8217;d have to say it&#8217;s pretty neat. I&#8217;m enjoying it a lot. My only issues is the battery life, also moving my contacts over was a little more time consuming than I&#8217;d have hoped.</p>
<p>I still haven&#8217;t tried to write any applications for it but after I&#8217;m all moved I&#8217;ll give that a try.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abirendon.com/index.php/2007/05/17/samsung-blackjack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
