<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Configuring an IPsec tunnel with Openswan and l2tpd</title>
	<atom:link href="http://www.natecarlson.com/2006/07/10/configuring-an-ipsec-tunnel-with-openswan-and-l2tpd/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.natecarlson.com/2006/07/10/configuring-an-ipsec-tunnel-with-openswan-and-l2tpd/</link>
	<description>All geek, most of the time</description>
	<lastBuildDate>Wed, 08 Feb 2012 15:03:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: VPN for security</title>
		<link>http://www.natecarlson.com/2006/07/10/configuring-an-ipsec-tunnel-with-openswan-and-l2tpd/comment-page-1/#comment-312369</link>
		<dc:creator>VPN for security</dc:creator>
		<pubDate>Tue, 12 Apr 2011 19:36:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.natecarlson.com/?p=299#comment-312369</guid>
		<description>[...] systems, and so I will link to a fairly generic installation that will be based on Debian Sarge: Configuring an IPsec tunnel with Openswan and l2tpd Configuring an IPsec tunnel with Openswan and l2tpd  Client-side, if you are using Windows then [...]</description>
		<content:encoded><![CDATA[<p>[...] systems, and so I will link to a fairly generic installation that will be based on Debian Sarge: Configuring an IPsec tunnel with Openswan and l2tpd Configuring an IPsec tunnel with Openswan and l2tpd  Client-side, if you are using Windows then [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Philipp</title>
		<link>http://www.natecarlson.com/2006/07/10/configuring-an-ipsec-tunnel-with-openswan-and-l2tpd/comment-page-1/#comment-312230</link>
		<dc:creator>Philipp</dc:creator>
		<pubDate>Wed, 22 Dec 2010 18:21:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.natecarlson.com/?p=299#comment-312230</guid>
		<description>Thank you for helpful article!
Some observations:
1) If you have &quot;error while loading CRL number&quot; with crl.pem - you need to run this:

$ echo &quot;01&quot; &gt; ./demoCA/crlnumber
$ openssl ca -gencrl -out crl.pem
If you already generated other certificates with empty crl.pem - remove them and generate again.

2) If you have problem with converting certificates for using in Windows with Openssl module pkcs12, try this:
You have following files in work directory: newcert.pem newreq.pem newkey.pem crl.pem and demoCA/cacert.pem.
In compliance with the article, newcert.pem renamed to host.example.com.pem and newreq.pem  to host.example.com.key.
This command:
$ openssl pkcs12 -export -in winhost.example.com.pem -inkey winhost.example.com.key -certfile demoCA/cacert.pem -out winhost.example.com.p12
does not work because it uses request file in -inkey option. Try this:
$ openssl pkcs12 -export -in newcert.pem -inkey newkey.pem -certfile demoCA/cacert.pem -out winhost.p12</description>
		<content:encoded><![CDATA[<p>Thank you for helpful article!<br />
Some observations:<br />
1) If you have &#8220;error while loading CRL number&#8221; with crl.pem &#8211; you need to run this:</p>
<p>$ echo &#8220;01&#8243; &gt; ./demoCA/crlnumber<br />
$ openssl ca -gencrl -out crl.pem<br />
If you already generated other certificates with empty crl.pem &#8211; remove them and generate again.</p>
<p>2) If you have problem with converting certificates for using in Windows with Openssl module pkcs12, try this:<br />
You have following files in work directory: newcert.pem newreq.pem newkey.pem crl.pem and demoCA/cacert.pem.<br />
In compliance with the article, newcert.pem renamed to host.example.com.pem and newreq.pem  to host.example.com.key.<br />
This command:<br />
$ openssl pkcs12 -export -in winhost.example.com.pem -inkey winhost.example.com.key -certfile demoCA/cacert.pem -out winhost.example.com.p12<br />
does not work because it uses request file in -inkey option. Try this:<br />
$ openssl pkcs12 -export -in newcert.pem -inkey newkey.pem -certfile demoCA/cacert.pem -out winhost.p12</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JML</title>
		<link>http://www.natecarlson.com/2006/07/10/configuring-an-ipsec-tunnel-with-openswan-and-l2tpd/comment-page-1/#comment-312226</link>
		<dc:creator>JML</dc:creator>
		<pubDate>Thu, 16 Dec 2010 21:00:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.natecarlson.com/?p=299#comment-312226</guid>
		<description>I think debian openssl makes a newkey.pem instead of overwriting newreq.pem as a key, so you should try using -inkey newkey.pem in your command.  You will know this is what happened if you have newkey.pem in the working directory and when you cat your winhost.example.com.key file it starts with NEW CERTIFICATE REQUEST or similar instead of BEGIN PRIVATE KEY (these are a paraphrases).  

At least that is what happened to me.</description>
		<content:encoded><![CDATA[<p>I think debian openssl makes a newkey.pem instead of overwriting newreq.pem as a key, so you should try using -inkey newkey.pem in your command.  You will know this is what happened if you have newkey.pem in the working directory and when you cat your winhost.example.com.key file it starts with NEW CERTIFICATE REQUEST or similar instead of BEGIN PRIVATE KEY (these are a paraphrases).  </p>
<p>At least that is what happened to me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pinko P</title>
		<link>http://www.natecarlson.com/2006/07/10/configuring-an-ipsec-tunnel-with-openswan-and-l2tpd/comment-page-1/#comment-311915</link>
		<dc:creator>Pinko P</dc:creator>
		<pubDate>Thu, 27 May 2010 12:01:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.natecarlson.com/?p=299#comment-311915</guid>
		<description>I followed your guide and when I try convert it to a p12 format:
$ openssl pkcs12 -export -in winhost.example.com.pem -inkey winhost.example.com.key -certfile demoCA/cacert.pem -out winhost.example.com.p12
I receive this error: &quot;unable to load private key&quot;

Any sugestions?</description>
		<content:encoded><![CDATA[<p>I followed your guide and when I try convert it to a p12 format:<br />
$ openssl pkcs12 -export -in winhost.example.com.pem -inkey winhost.example.com.key -certfile demoCA/cacert.pem -out winhost.example.com.p12<br />
I receive this error: &#8220;unable to load private key&#8221;</p>
<p>Any sugestions?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

