<?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: Fixing Cisco VPN Client 4.9 With Parallels Desktop 3.0 on Mac OS X</title>
	<atom:link href="http://www.cb1inc.com/2007/06/11/fixing-cisco-vpn-client-4-9-with-parallels-desktop-3-0-on-mac-os-x/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cb1inc.com/2007/06/11/fixing-cisco-vpn-client-4-9-with-parallels-desktop-3-0-on-mac-os-x/</link>
	<description></description>
	<lastBuildDate>Fri, 13 Jan 2012 14:53:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
	<item>
		<title>By: B Campbell</title>
		<link>http://www.cb1inc.com/2007/06/11/fixing-cisco-vpn-client-4-9-with-parallels-desktop-3-0-on-mac-os-x/comment-page-1/#comment-851</link>
		<dc:creator>B Campbell</dc:creator>
		<pubDate>Fri, 03 Sep 2010 14:40:15 +0000</pubDate>
		<guid isPermaLink="false">#comment-851</guid>
		<description>This is what helped me when I had this problem:

http://forum.maas360.com/go/mobileitexpertise/fix-for-cisco-vpn-error-51-unable-to-communicate-with-the-vpn-subsystem/</description>
		<content:encoded><![CDATA[<p>This is what helped me when I had this problem:</p>
<p><a href="http://forum.maas360.com/go/mobileitexpertise/fix-for-cisco-vpn-error-51-unable-to-communicate-with-the-vpn-subsystem/" rel="nofollow">http://forum.maas360.com/go/mobileitexpertise/fix-for-cisco-vpn-error-51-unable-to-communicate-with-the-vpn-subsystem/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ron Pelley</title>
		<link>http://www.cb1inc.com/2007/06/11/fixing-cisco-vpn-client-4-9-with-parallels-desktop-3-0-on-mac-os-x/comment-page-1/#comment-16</link>
		<dc:creator>Ron Pelley</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-16</guid>
		<description>Hi 
this is great, but since I don&#039;t usually get involved in using the Terminal, could you help me out with the &quot;for dummies&quot; version. As in how do we make sure we put the right stuff in the right place using Pico and how do we save it as an overwrite of the existing file?
That would really help.
Thanks in advance</description>
		<content:encoded><![CDATA[<p>Hi<br />
this is great, but since I don&#8217;t usually get involved in using the Terminal, could you help me out with the &#8220;for dummies&#8221; version. As in how do we make sure we put the right stuff in the right place using Pico and how do we save it as an overwrite of the existing file?<br />
That would really help.<br />
Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Barber</title>
		<link>http://www.cb1inc.com/2007/06/11/fixing-cisco-vpn-client-4-9-with-parallels-desktop-3-0-on-mac-os-x/comment-page-1/#comment-17</link>
		<dc:creator>Chris Barber</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-17</guid>
		<description>Using Pico is pretty simple.  Double click the Macintosh HD and navigate to:

&lt;div class=&quot;cb1-docs-code&quot;&gt;&lt;pre&gt;Applications &gt; Utilities &gt; Terminal&lt;/pre&gt;&lt;/div&gt;

Launch the terminal and type the following at the command prompt:

&lt;div class=&quot;cb1-docs-code&quot;&gt;&lt;pre&gt;sudo pico /System/Library/StartupItems/CiscoVPN/CiscoVPN&lt;/pre&gt;&lt;/div&gt;

In order to edit the startup script, you must have super user access.  The &lt;code&gt;sudo&lt;/code&gt; command will allow you to run a command as the super user.  Just type your password in when it prompts for the password and then Pico will launch:

&lt;div align=&quot;center&quot;&gt;&lt;img src=&quot;http://cb1inc.com/sites/default/comments/20070615-ciscovpn-pico.png&quot; /&gt;&lt;/div&gt;

Find the &lt;code&gt;StartService()&lt;/code&gt; function and add the bolded text:

&lt;div class=&quot;cb1-docs-code&quot;&gt;&lt;pre&gt;StartService ()
{
    &lt;b&gt;#disable fw0
    /sbin/ifconfig fw0 down&lt;/b&gt;

    if [ -d $CISCO_VPN_DIR ]; then
        ConsoleMessage &quot;Starting Cisco Systems VPN Driver&quot;
        kextload $CISCO_VPN_DIR
    fi
}
&lt;/pre&gt;&lt;/div&gt;

Remember, your interface may be called something other than &lt;code&gt;fw0&lt;/code&gt; such as &lt;code&gt;fw1&lt;/code&gt;. Press CTRL-X when you are finished and it Pico will prompt you to save:

&lt;div class=&quot;cb1-docs-code&quot;&gt;&lt;pre&gt;Save modified buffer (ANSWERING &quot;No&quot; WILL DESTROY CHANGES) ?                                                                
 Y Yes
 N No           ^C Cancel&lt;/pre&gt;&lt;/div&gt;

Press &quot;Y&quot; to save and you should be good to go.  Give your box a quick reboot and just make sure that everything works.</description>
		<content:encoded><![CDATA[<p>Using Pico is pretty simple.  Double click the Macintosh HD and navigate to:</p>
<div class="cb1-docs-code">
<pre>Applications &gt; Utilities &gt; Terminal</pre>
</div>
<p>Launch the terminal and type the following at the command prompt:</p>
<div class="cb1-docs-code">
<pre>sudo pico /System/Library/StartupItems/CiscoVPN/CiscoVPN</pre>
</div>
<p>In order to edit the startup script, you must have super user access.  The <code>sudo</code> command will allow you to run a command as the super user.  Just type your password in when it prompts for the password and then Pico will launch:</p>
<div align="center"><img src="http://cb1inc.com/sites/default/comments/20070615-ciscovpn-pico.png" /></div>
<p>Find the <code>StartService()</code> function and add the bolded text:</p>
<div class="cb1-docs-code">
<pre>StartService ()
{
    <b>#disable fw0
    /sbin/ifconfig fw0 down</b>

    if [ -d $CISCO_VPN_DIR ]; then
        ConsoleMessage "Starting Cisco Systems VPN Driver"
        kextload $CISCO_VPN_DIR
    fi
}
</pre>
</div>
<p>Remember, your interface may be called something other than <code>fw0</code> such as <code>fw1</code>. Press CTRL-X when you are finished and it Pico will prompt you to save:</p>
<div class="cb1-docs-code">
<pre>Save modified buffer (ANSWERING "No" WILL DESTROY CHANGES) ?
 Y Yes
 N No           ^C Cancel</pre>
</div>
<p>Press &#8220;Y&#8221; to save and you should be good to go.  Give your box a quick reboot and just make sure that everything works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ron Pelley</title>
		<link>http://www.cb1inc.com/2007/06/11/fixing-cisco-vpn-client-4-9-with-parallels-desktop-3-0-on-mac-os-x/comment-page-1/#comment-18</link>
		<dc:creator>Ron Pelley</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-18</guid>
		<description>Well, that was quick. Thanks so much. I edited it as you suggested. There was one extra step at the end which seemed to invite me to rename the file, but I just hit return and it saved. I restarted, the file looks like it should (I think the formatting is a little different, as the #disable fw0 is not indented) and the VPN still comes up OK. However, when I do an ifconfig -a I see that FW0 is still there and has an IP address. What&#039;s up with that?</description>
		<content:encoded><![CDATA[<p>Well, that was quick. Thanks so much. I edited it as you suggested. There was one extra step at the end which seemed to invite me to rename the file, but I just hit return and it saved. I restarted, the file looks like it should (I think the formatting is a little different, as the #disable fw0 is not indented) and the VPN still comes up OK. However, when I do an ifconfig -a I see that FW0 is still there and has an IP address. What&#8217;s up with that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Barber</title>
		<link>http://www.cb1inc.com/2007/06/11/fixing-cisco-vpn-client-4-9-with-parallels-desktop-3-0-on-mac-os-x/comment-page-1/#comment-19</link>
		<dc:creator>Chris Barber</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-19</guid>
		<description>When you run &lt;code&gt;ifconfig&lt;/code&gt;, just make sure that the &lt;code&gt;fw0&lt;/code&gt;&#039;s flags = 8822:

&lt;div class=&quot;cb1-docs-code&quot;&gt;&lt;pre&gt;fw0: flags=8822&lt;BROADCAST,SMART,SIMPLEX,MULTICAST&gt; mtu 2030
        inet 169.254.107.94 netmask 0xffff0000 broadcast 169.254.255.255
        lladdr 00:19:e3:ff:fe:69:37:c4 
        media: autoselect &lt;full-duplex&gt; status: inactive
        supported media: autoselect &lt;full-duplex&gt;&lt;/pre&gt;&lt;/div&gt;
</description>
		<content:encoded><![CDATA[<p>When you run <code>ifconfig</code>, just make sure that the <code>fw0</code>&#8216;s flags = 8822:</p>
<div class="cb1-docs-code">
<pre>fw0: flags=8822&lt;BROADCAST,SMART,SIMPLEX,MULTICAST&gt; mtu 2030
        inet 169.254.107.94 netmask 0xffff0000 broadcast 169.254.255.255
        lladdr 00:19:e3:ff:fe:69:37:c4
        media: autoselect &lt;full-duplex&gt; status: inactive
        supported media: autoselect &lt;full-duplex&gt;</pre>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ron Pelley</title>
		<link>http://www.cb1inc.com/2007/06/11/fixing-cisco-vpn-client-4-9-with-parallels-desktop-3-0-on-mac-os-x/comment-page-1/#comment-20</link>
		<dc:creator>Ron Pelley</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-20</guid>
		<description>fw:0 flags=8822

So I gues I&#039;m all set.
Thanks
</description>
		<content:encoded><![CDATA[<p>fw:0 flags=8822</p>
<p>So I gues I&#8217;m all set.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Geoff Smyth</title>
		<link>http://www.cb1inc.com/2007/06/11/fixing-cisco-vpn-client-4-9-with-parallels-desktop-3-0-on-mac-os-x/comment-page-1/#comment-21</link>
		<dc:creator>Geoff Smyth</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-21</guid>
		<description>Thankyou very much for this fix, was doing my head in.</description>
		<content:encoded><![CDATA[<p>Thankyou very much for this fix, was doing my head in.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://www.cb1inc.com/2007/06/11/fixing-cisco-vpn-client-4-9-with-parallels-desktop-3-0-on-mac-os-x/comment-page-1/#comment-22</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-22</guid>
		<description>Hi,
I just wanted to thank you for this detailed blog.  It was very easy to follow and allowed me to upgrade to 3.0 without a hitch.
Greg
</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I just wanted to thank you for this detailed blog.  It was very easy to follow and allowed me to upgrade to 3.0 without a hitch.<br />
Greg</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Hyatt</title>
		<link>http://www.cb1inc.com/2007/06/11/fixing-cisco-vpn-client-4-9-with-parallels-desktop-3-0-on-mac-os-x/comment-page-1/#comment-23</link>
		<dc:creator>Michael Hyatt</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-23</guid>
		<description>I am still not able to get this to work. What are your network settings in Parallels? I am using Bridge mode, but I have tried the others. Thanks!</description>
		<content:encoded><![CDATA[<p>I am still not able to get this to work. What are your network settings in Parallels? I am using Bridge mode, but I have tried the others. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Barber</title>
		<link>http://www.cb1inc.com/2007/06/11/fixing-cisco-vpn-client-4-9-with-parallels-desktop-3-0-on-mac-os-x/comment-page-1/#comment-24</link>
		<dc:creator>Chris Barber</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-24</guid>
		<description>I personally do shared networking because I want to be able to have my Mac talk to my VMs and vice versa when I don&#039;t have Internet access.

I have run bridge mode, but that was before I installed Parallels 3.0.</description>
		<content:encoded><![CDATA[<p>I personally do shared networking because I want to be able to have my Mac talk to my VMs and vice versa when I don&#8217;t have Internet access.</p>
<p>I have run bridge mode, but that was before I installed Parallels 3.0.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

