<?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: How to configure a GRE/IPSec VPN &#8211; Part 1</title>
	<atom:link href="http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/</link>
	<description>Tips and Video Tutorials - Cisco .:. Linux .:. VOIP</description>
	<lastBuildDate>Tue, 29 Nov 2011 04:01:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Self learning Cisco? Is it possible? &#171; eMulanetwork</title>
		<link>http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/comment-page-1/#comment-37577</link>
		<dc:creator>Self learning Cisco? Is it possible? &#171; eMulanetwork</dc:creator>
		<pubDate>Tue, 18 Jan 2011 10:49:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/#comment-37577</guid>
		<description>[...] How to configure a GRE/IPSec VPN – Part 1 [...]</description>
		<content:encoded><![CDATA[<p>[...] How to configure a GRE/IPSec VPN – Part 1 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: trema</title>
		<link>http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/comment-page-1/#comment-37052</link>
		<dc:creator>trema</dc:creator>
		<pubDate>Fri, 17 Dec 2010 05:48:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/#comment-37052</guid>
		<description>I tried to make it, both using tunnel protection n crypto map, but still I can&#039;t see the encrypt an decrypt packet..I wonder why..

Is there an important config that especially affected the result...?

crypto isakmp key blidngho12 address 0.0.0.0 0.0.0.0

I changed it into my destination address of the tunnel...Should I use 0.0.0.0 ? or maybe I didn&#039;t use the wildcard on it?</description>
		<content:encoded><![CDATA[<p>I tried to make it, both using tunnel protection n crypto map, but still I can&#8217;t see the encrypt an decrypt packet..I wonder why..</p>
<p>Is there an important config that especially affected the result&#8230;?</p>
<p>crypto isakmp key blidngho12 address 0.0.0.0 0.0.0.0</p>
<p>I changed it into my destination address of the tunnel&#8230;Should I use 0.0.0.0 ? or maybe I didn&#8217;t use the wildcard on it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: trema</title>
		<link>http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/comment-page-1/#comment-35048</link>
		<dc:creator>trema</dc:creator>
		<pubDate>Fri, 03 Dec 2010 12:49:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/#comment-35048</guid>
		<description>Josh, 

Thank u very much for the answers...^^

1. I will try to remake it first..

2. Thank u very much for the recommendation, I will try to make it in tunnel protection too..by the way, do u have some kind of reference about tunnel protection and crypto map..

Thanks for ur help...I really appreciate it.^^</description>
		<content:encoded><![CDATA[<p>Josh, </p>
<p>Thank u very much for the answers&#8230;^^</p>
<p>1. I will try to remake it first..</p>
<p>2. Thank u very much for the recommendation, I will try to make it in tunnel protection too..by the way, do u have some kind of reference about tunnel protection and crypto map..</p>
<p>Thanks for ur help&#8230;I really appreciate it.^^</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/comment-page-1/#comment-35036</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Wed, 01 Dec 2010 19:08:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/#comment-35036</guid>
		<description>Trema,

1. It is hard to tell without more information. There several things that could cause the behavior you are experiencing.

2. Actually, the tunnel protection method is easier and better. I started using it after creating this tutorial. It skips all the access-lists and crypto maps. 


crypto isakmp policy 1
  authentication pre-share
  hash sha
  encryption 3des

crypto isakmp key blidngho12 address 0.0.0.0 0.0.0.0 

crypto ipsec transform-set 3des-sha esp-3des esp-sha-hmac

crypto ipsec profile GRE-VPN
  set transform-set 3des-sha

int Tunnel0
  ip address 192.168.200.1 255.255.255.252
  tunnel source 12.34.56.78
  tunnel destination 23.45.67.89
  tunnel protection ipsec profile GRE-VPN</description>
		<content:encoded><![CDATA[<p>Trema,</p>
<p>1. It is hard to tell without more information. There several things that could cause the behavior you are experiencing.</p>
<p>2. Actually, the tunnel protection method is easier and better. I started using it after creating this tutorial. It skips all the access-lists and crypto maps. </p>
<p>crypto isakmp policy 1<br />
  authentication pre-share<br />
  hash sha<br />
  encryption 3des</p>
<p>crypto isakmp key blidngho12 address 0.0.0.0 0.0.0.0 </p>
<p>crypto ipsec transform-set 3des-sha esp-3des esp-sha-hmac</p>
<p>crypto ipsec profile GRE-VPN<br />
  set transform-set 3des-sha</p>
<p>int Tunnel0<br />
  ip address 192.168.200.1 255.255.255.252<br />
  tunnel source 12.34.56.78<br />
  tunnel destination 23.45.67.89<br />
  tunnel protection ipsec profile GRE-VPN</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: trema</title>
		<link>http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/comment-page-1/#comment-35033</link>
		<dc:creator>trema</dc:creator>
		<pubDate>Tue, 30 Nov 2010 12:21:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/#comment-35033</guid>
		<description>I want to ask a few questions :

1. When I setting up my VPN with GRE, like yours, (but I&#039;m using a different routing protocol on it), There&#039;s no packets decrypt or encrypt in mine...Why is that? It&#039;s zero...

2. What&#039;s the difference between IPsec using crypto map and tunnel protection...Do u have some kind of reference for me to read about that issues? 

Thanks a lot..</description>
		<content:encoded><![CDATA[<p>I want to ask a few questions :</p>
<p>1. When I setting up my VPN with GRE, like yours, (but I&#8217;m using a different routing protocol on it), There&#8217;s no packets decrypt or encrypt in mine&#8230;Why is that? It&#8217;s zero&#8230;</p>
<p>2. What&#8217;s the difference between IPsec using crypto map and tunnel protection&#8230;Do u have some kind of reference for me to read about that issues? </p>
<p>Thanks a lot..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blindhog.net &#187; Cisco &#8211; How To configure an IPSec VPN</title>
		<link>http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/comment-page-1/#comment-34237</link>
		<dc:creator>blindhog.net &#187; Cisco &#8211; How To configure an IPSec VPN</dc:creator>
		<pubDate>Mon, 06 Sep 2010 03:49:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/#comment-34237</guid>
		<description>[...] How to configure a GRE/IPSec VPN – Part 1 [...]</description>
		<content:encoded><![CDATA[<p>[...] How to configure a GRE/IPSec VPN – Part 1 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: frank</title>
		<link>http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/comment-page-1/#comment-32695</link>
		<dc:creator>frank</dc:creator>
		<pubDate>Sat, 26 Sep 2009 09:43:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/#comment-32695</guid>
		<description>hi i need help,
i already follow basic internet 1 &amp; 2.
able to ping cross over routers through ISP.
but however when continue on this tutorial &#039;how-to-configure-a-greipsec-vpn-part-1&#039; i stuck. on the tutorial on &#039;Look at the routing&#039; at &#039;D	192.168.1.0/24 [90/297246976] via 192.168.200.1, 00:00:27, Tunnel0&#039; I don&#039;t have this line. I&#039;m using ISO &#039;c3640-jk9o3s-mz.124-16.extracted.bin&#039;</description>
		<content:encoded><![CDATA[<p>hi i need help,<br />
i already follow basic internet 1 &amp; 2.<br />
able to ping cross over routers through ISP.<br />
but however when continue on this tutorial &#8216;how-to-configure-a-greipsec-vpn-part-1&#8242; i stuck. on the tutorial on &#8216;Look at the routing&#8217; at &#8216;D	192.168.1.0/24 [90/297246976] via 192.168.200.1, 00:00:27, Tunnel0&#8242; I don&#8217;t have this line. I&#8217;m using ISO &#8216;c3640-jk9o3s-mz.124-16.extracted.bin&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: frank</title>
		<link>http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/comment-page-1/#comment-32694</link>
		<dc:creator>frank</dc:creator>
		<pubDate>Sat, 26 Sep 2009 09:21:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/#comment-32694</guid>
		<description>@bdk  @gabriel,
I had same problem, i can&#039;t make telnet to 192.168.1.1 from R2. Even I can ping cross over ISP from R1 to R2 and other way around. But after make GREIP tunnel from R1 and R2 as for 192.168.200.0 the connection not created.
What I missed?</description>
		<content:encoded><![CDATA[<p>@bdk  @gabriel,<br />
I had same problem, i can&#8217;t make telnet to 192.168.1.1 from R2. Even I can ping cross over ISP from R1 to R2 and other way around. But after make GREIP tunnel from R1 and R2 as for 192.168.200.0 the connection not created.<br />
What I missed?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rbary</title>
		<link>http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/comment-page-1/#comment-32643</link>
		<dc:creator>rbary</dc:creator>
		<pubDate>Mon, 07 Sep 2009 16:38:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/#comment-32643</guid>
		<description>Hi

Need some help on this tutorial 
R2&gt; show ip route 
gives a default route to 23.45.67.1 where is this interface connected to 

i did not get it

thanks in advance

rbary</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>Need some help on this tutorial<br />
R2&gt; show ip route<br />
gives a default route to 23.45.67.1 where is this interface connected to </p>
<p>i did not get it</p>
<p>thanks in advance</p>
<p>rbary</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dinesh vinay</title>
		<link>http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/comment-page-1/#comment-30236</link>
		<dc:creator>dinesh vinay</dc:creator>
		<pubDate>Thu, 30 Apr 2009 07:31:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.blindhog.net/how-to-configure-a-greipsec-vpn-part-1/#comment-30236</guid>
		<description>wonderful and marvelous...
its very interesting</description>
		<content:encoded><![CDATA[<p>wonderful and marvelous&#8230;<br />
its very interesting</p>
]]></content:encoded>
	</item>
</channel>
</rss>

