<?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; Labor</title>
	<atom:link href="http://www.abirendon.com/index.php/category/labor/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>Job Search</title>
		<link>http://www.abirendon.com/index.php/2007/12/21/job-search/</link>
		<comments>http://www.abirendon.com/index.php/2007/12/21/job-search/#comments</comments>
		<pubDate>Sat, 22 Dec 2007 04:57:50 +0000</pubDate>
		<dc:creator>Abi Rendon</dc:creator>
				<category><![CDATA[Labor]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.azuretek.com/2007/12/21/job-search/</guid>
		<description><![CDATA[So as some of you may know, I&#8217;ve been looking for a new job. If anyone knows of any job openings just let me know.
So far I&#8217;ve applied to a few but due to the holiday season only a couple have gotten back to me in a timely manner. I hope to get some word [...]]]></description>
			<content:encoded><![CDATA[<p>So as some of you may know, I&#8217;ve been looking for a new job. If anyone knows of any job openings just let me know.</p>
<p>So far I&#8217;ve applied to a few but due to the holiday season only a couple have gotten back to me in a timely manner. I hope to get some word back come the new year, otherwise I&#8217;ll be posting from a much more homeless place.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abirendon.com/index.php/2007/12/21/job-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla?</title>
		<link>http://www.abirendon.com/index.php/2007/04/23/joomla/</link>
		<comments>http://www.abirendon.com/index.php/2007/04/23/joomla/#comments</comments>
		<pubDate>Mon, 23 Apr 2007 20:21:24 +0000</pubDate>
		<dc:creator>Abi Rendon</dc:creator>
				<category><![CDATA[Labor]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.azuretek.com/archives/17</guid>
		<description><![CDATA[NetRiver is officially using Joomla as a CMS solution. Because of this I&#8217;m working on a way to automate installation and templating from our development team. Currently it takes me about 3 hours of modification to successfully template a Joomla install.
I&#8217;m working on a way to automate most of the process and basically get those [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://netriver.net">NetRiver</a> is officially using Joomla as a CMS solution. Because of this I&#8217;m working on a way to automate installation and templating from our development team. Currently it takes me about 3 hours of modification to successfully template a Joomla install.</p>
<p>I&#8217;m working on a way to automate most of the process and basically get those 3 hours of my time back to put towards other things.</p>
<p>So far I&#8217;ve made a base SVN trunk for our Joomla installs. The trunk has a default basic template and a set of our &#8220;supported&#8221; modules. We currently have a similar setup for our Chambergate product and I&#8217;m going to be maintaining our joomla base install. Hopefully the way I&#8217;m doing it will make it easier to roll out mass updates for people and also allow us to document a set of static features.</p>
<p>You can check out my default install <a href="http://joomla.nr-dev.com">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.abirendon.com/index.php/2007/04/23/joomla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Heart Chinese</title>
		<link>http://www.abirendon.com/index.php/2007/04/22/i-heart-chinese/</link>
		<comments>http://www.abirendon.com/index.php/2007/04/22/i-heart-chinese/#comments</comments>
		<pubDate>Mon, 23 Apr 2007 02:31:26 +0000</pubDate>
		<dc:creator>Abi Rendon</dc:creator>
				<category><![CDATA[Labor]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.azuretek.com/archives/16</guid>
		<description><![CDATA[I was recently contracted to do work for a fellow goon over at the something awful forums, so far it&#8217;s going pretty great.
The project is called &#8220;I Heart Chinese&#8220;, it&#8217;s a really neat idea. Teaching Chinese with online flash animations, it&#8217;s online learning but in a fun and easy way. So far I&#8217;ve been working [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently contracted to do work for a fellow goon over at the something awful <a href="http://forums.somethingawful.com">forums</a>, so far it&#8217;s going pretty great.</p>
<p>The project is called &#8220;<a href="http://iheartchinese.com/">I Heart Chinese</a>&#8220;, it&#8217;s a really neat idea. Teaching Chinese with online flash animations, it&#8217;s online learning but in a fun and easy way. So far I&#8217;ve been working on the base system, the base system is built around my own database abstraction layer working with ADODB. It&#8217;s also using the smarty template engine, no particular reason other than it helps keep the code managable.</p>
<p>I&#8217;ll be updating as I write more, but so far it&#8217;s hard to show any recognizable progress.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abirendon.com/index.php/2007/04/22/i-heart-chinese/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plans for netriver</title>
		<link>http://www.abirendon.com/index.php/2007/03/07/plans-for-netriver/</link>
		<comments>http://www.abirendon.com/index.php/2007/03/07/plans-for-netriver/#comments</comments>
		<pubDate>Thu, 08 Mar 2007 01:51:24 +0000</pubDate>
		<dc:creator>Abi Rendon</dc:creator>
				<category><![CDATA[Labor]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.azuretek.com/archives/14</guid>
		<description><![CDATA[Recently I&#8217;ve started a new marketing idea for NetRiver, we moved into our new facility and I&#8217;m tired of it being mostly empty so I&#8217;ve taken it upon myself to help fill it up. I have connections all over so it shouldn&#8217;t be too hard to bring clients the only hassle is going to be [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve started a new marketing idea for NetRiver, we moved into our new facility and I&#8217;m tired of it being mostly empty so I&#8217;ve taken it upon myself to help fill it up. I have connections all over so it shouldn&#8217;t be too hard to bring clients the only hassle is going to be the countless hours it is taking me to fill the content and design the website.</p>
<p>If you want to track my progress (anybody actually read this?) check out <a href="http://netriver.nr-dev.com">http://netriver.nr-dev.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abirendon.com/index.php/2007/03/07/plans-for-netriver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
