<?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>L.A.M.N.K &#187; VPN</title> <atom:link href="http://www.lamnk.com/blog/category/vpn/feed/" rel="self" type="application/rss+xml" /><link>http://www.lamnk.com/blog</link> <description>Free your mind ... and your ass will follow</description> <lastBuildDate>Tue, 29 Nov 2011 15:09:17 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>32bit Cisco VPN client on 64 bit linux systems</title><link>http://www.lamnk.com/blog/vpn/32bit-cisco-vpn-client-on-64-bit-linux-systems/</link> <comments>http://www.lamnk.com/blog/vpn/32bit-cisco-vpn-client-on-64-bit-linux-systems/#comments</comments> <pubDate>Wed, 23 Feb 2011 14:13:56 +0000</pubDate> <dc:creator>Lamnk</dc:creator> <category><![CDATA[VPN]]></category> <category><![CDATA[32bit]]></category> <category><![CDATA[cisco]]></category> <category><![CDATA[linux]]></category> <guid
isPermaLink="false">http://www.lamnk.com/blog/?p=306</guid> <description><![CDATA[I&#8217;ve just encountered a strange problem with Cisco VPN Client: # ll /opt/cisco-vpnclient/bin/ total 4224 ---x--x--x 1 root bin 1241184 Feb 23 12:35 cisco_cert_mgr* ---s--x--x 1 root bin 2181976 Feb 23 12:35 cvpnd* ---x--x--x 1 root bin 226700 Feb 23 12:35 ipseclog* ---x--x--x 1 root bin 666260 Feb 23 12:35 vpnclient* # /opt/cisco-vpnclient/bin/vpnclient zsh: no [...]
Related posts:<ol><li><a
href='http://www.lamnk.com/blog/vpn/cisco-vpn-now-runs-on-linux-64-bit-systems/' rel='bookmark' title='Cisco VPN now runs on linux 64 bit systems'>Cisco VPN now runs on linux 64 bit systems</a></li><li><a
href='http://www.lamnk.com/blog/vpn/with-kernel-2624-you-will-need-a-patch-to-install-cisco-vpn-client/' rel='bookmark' title='With kernel 2.6.24 you will need a patch to install Cisco VPN Client'>With kernel 2.6.24 you will need a patch to install Cisco VPN Client</a></li><li><a
href='http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-hardy-heron-804/' rel='bookmark' title='How to install Cisco VPN client on Ubuntu Hardy Heron 8.04 64 bit'>How to install Cisco VPN client on Ubuntu Hardy Heron 8.04 64 bit</a></li></ol>]]></description> <content:encoded><![CDATA[<p>I&#8217;ve just encountered a strange problem with Cisco VPN Client:<br
/> <code><br
/> # ll /opt/cisco-vpnclient/bin/<br
/> total 4224<br
/> ---x--x--x 1 root bin 1241184 Feb 23 12:35 cisco_cert_mgr*<br
/> ---s--x--x 1 root bin 2181976 Feb 23 12:35 cvpnd*<br
/> ---x--x--x 1 root bin  226700 Feb 23 12:35 ipseclog*<br
/> ---x--x--x 1 root bin  666260 Feb 23 12:35 vpnclient*<br
/> # /opt/cisco-vpnclient/bin/vpnclient<br
/> zsh: no such file or directory: /opt/cisco-vpnclient/bin/vpnclient<br
/> </code><br
/> My initial response was &#8220;wtf, how is this possible? The file is there, how dare zsh states the opposite?&#8221;</p><p>I scratched my head for a while, then tried this:<br
/> <code><br
/> # ldd /opt/cisco-vpnclient/bin/vpnclient<br
/> not a dynamic executable<br
/> # ld /opt/cisco-vpnclient/bin/vpnclient<br
/> ld: i386 architecture of input file `/opt/cisco-vpnclient/bin/vpnclient' is incompatible with i386:x86-64 output<br
/> ld: error in /opt/cisco-vpnclient/bin/vpnclient(.eh_frame); no .eh_frame_hdr table will be created.<br
/> ld: warning: cannot find entry symbol _start; defaulting to 000000000040a900<br
/> </code><br
/> Ah, now that makes sense. Cisco has probably compiled vpnclient with gcc 32bit, so I turned the multilib repo on and installed lib32-gcc (named lib32gcc on ubuntu)<br
/> <code><br
/> # pacman -S lib32-glibc lib32-gcc-libs<br
/> # ldd /opt/cisco-vpnclient/bin/vpnclient<br
/> linux-gate.so.1 =>  (0xf7793000)<br
/> libvpnapi.so => /opt/cisco-vpnclient/lib/libvpnapi.so (0xf774a000)<br
/> libm.so.6 => /usr/lib32/libm.so.6 (0xf7701000)<br
/> libc.so.6 => /usr/lib32/libc.so.6 (0xf75b6000)<br
/> /lib/ld-linux.so.2 (0xf7794000)<br
/> </code><br
/> vpnclient works again <img
src='http://www.lamnk.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p><p>Related posts:<ol><li><a
href='http://www.lamnk.com/blog/vpn/cisco-vpn-now-runs-on-linux-64-bit-systems/' rel='bookmark' title='Cisco VPN now runs on linux 64 bit systems'>Cisco VPN now runs on linux 64 bit systems</a></li><li><a
href='http://www.lamnk.com/blog/vpn/with-kernel-2624-you-will-need-a-patch-to-install-cisco-vpn-client/' rel='bookmark' title='With kernel 2.6.24 you will need a patch to install Cisco VPN Client'>With kernel 2.6.24 you will need a patch to install Cisco VPN Client</a></li><li><a
href='http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-hardy-heron-804/' rel='bookmark' title='How to install Cisco VPN client on Ubuntu Hardy Heron 8.04 64 bit'>How to install Cisco VPN client on Ubuntu Hardy Heron 8.04 64 bit</a></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.lamnk.com/blog/vpn/32bit-cisco-vpn-client-on-64-bit-linux-systems/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to install Cisco VPN client on Ubuntu Jaunty Jackalope and Karmic Koala 64 bit</title><link>http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-jaunty-jackalope-and-karmic-koala-64-bit/</link> <comments>http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-jaunty-jackalope-and-karmic-koala-64-bit/#comments</comments> <pubDate>Mon, 26 Oct 2009 09:54:53 +0000</pubDate> <dc:creator>Lamnk</dc:creator> <category><![CDATA[VPN]]></category> <category><![CDATA[64bit]]></category> <category><![CDATA[cisco]]></category> <category><![CDATA[kernel]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[ubuntu]]></category> <guid
isPermaLink="false">http://www.lamnk.com/blog/?p=195</guid> <description><![CDATA[Update 2011-05-09: There is a new patch that works (I still recommend the vpnc client instead of Cisco client). I&#8217;ve mirrored the patch to my server: fixes-2.6.38.patch. Please note that you should apply the patch against a vanilla vpnclient setup directory (no other patch applied). cd vpnclient/setup/directory/ wget http://www.lamnk.com/download/fixes-2.6.38.patch patch < ./fixes-2.6.38.patch sudo ./vpn_install Again, [...]
Related posts:<ol><li><a
href='http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-hardy-heron-804/' rel='bookmark' title='How to install Cisco VPN client on Ubuntu Hardy Heron 8.04 64 bit'>How to install Cisco VPN client on Ubuntu Hardy Heron 8.04 64 bit</a></li><li><a
href='http://www.lamnk.com/blog/vpn/with-kernel-2624-you-will-need-a-patch-to-install-cisco-vpn-client/' rel='bookmark' title='With kernel 2.6.24 you will need a patch to install Cisco VPN Client'>With kernel 2.6.24 you will need a patch to install Cisco VPN Client</a></li><li><a
href='http://www.lamnk.com/blog/vpn/can-not-compile-cisco-vpn-client-on-opensuse-103-64bit/' rel='bookmark' title='Can not compile Cisco VPN client on openSUSE 10.3 64bit'>Can not compile Cisco VPN client on openSUSE 10.3 64bit</a></li></ol>]]></description> <content:encoded><![CDATA[<p><strong>Update 2011-05-09</strong>: There is a <a
href="http://fseitz.de/blog/index.php?url=archives/56-Cisco-vpnclient-unter-Linux-Kernel-2.6.38+.html">new patch</a> that works (I still recommend the vpnc client instead of Cisco client). I&#8217;ve mirrored the patch to my server: <a
href="http://www.lamnk.com/download/fixes-2.6.38.patch">fixes-2.6.38.patch</a>. Please note that you should apply the patch against a vanilla vpnclient setup directory (no other patch applied).</p><blockquote><p><code>cd vpnclient/setup/directory/<br
/> wget http://www.lamnk.com/download/fixes-2.6.38.patch<br
/> patch < ./fixes-2.6.38.patch<br
/> sudo ./vpn_install<br
/> </code></p></blockquote><p>Again, from the awesome <a
href="http://forum.tuxx-home.at/viewtopic.php?f=15&#038;t=1293&#038;p=6346">tuxx-home.at forum</a>.<br
/> <strong>Update 2011-05-08</strong>: <del
datetime="2011-05-09T11:30:55+00:00">Doesn't work for Natty Narwhal 11.04. There is currently no fix for this</del>. You should use <a
href="http://www.unix-ag.uni-kl.de/~massar/vpnc/">vpnc</a> instead. It should be compatible with your VNP server, you just have to install vpnc using Synatics/apt-get and use <a
href="http://svn.unix-ag.uni-kl.de/vpnc/trunk/pcf2vpnc">pcf2vpnc</a> convert your .pcf profile from Cisco client to vpnc .conf profile. Or install network-manager-vpnc-gnome package for a GUI client (doesn't have all capabilities of vpnc on command line).<br
/> <strong>Update 2010-10-31</strong>: Work for Maverick Meerkat 10.10 too<br
/> <strong>Update 2010-08-26</strong>: You can now install with <a
href="http://www.lamnk.com/download/fixes.patch">this cisco vpn patch</a> applied. It's all the old patches combined.</p><blockquote><p><code>cd vpnclient/setup/directory/<br
/> wget http://www.lamnk.com/download/fixes.patch<br
/> patch < ./fixes.patch<br
/> sudo ./vpn_install<br
/> </code></p></blockquote><p>This patch is tested on Ubuntu Lucid Lynx 10.04 LTS on 32bit and 64bit.</p><p><strong>Old post</strong>:<br
/> Cisco module again doesn't let us compile against the new kernel in Ubuntu 9.04 and 9.10 beta:</p><blockquote><p><code>/home/lamnk/vpnclient/interceptor.c: In function ‘interceptor_init’:<br
/> /home/lamnk/vpnclient/interceptor.c:132: error: ‘struct net_device’ has no member named ‘hard_start_xmit’<br
/> /home/lamnk/vpnclient/interceptor.c:133: error: ‘struct net_device’ has no member named ‘get_stats’<br
/> /home/lamnk/vpnclient/interceptor.c:134: error: ‘struct net_device’ has no member named ‘do_ioctl’<br
/> /home/lamnk/vpnclient/interceptor.c: In function ‘add_netdev’:<br
/> /home/lamnk/vpnclient/interceptor.c:271: error: ‘struct net_device’ has no member named ‘hard_start_xmit’<br
/> /home/lamnk/vpnclient/interceptor.c:272: error: ‘struct net_device’ has no member named ‘hard_start_xmit’<br
/> /home/lamnk/vpnclient/interceptor.c: In function ‘remove_netdev’:<br
/> /home/lamnk/vpnclient/interceptor.c:294: error: ‘struct net_device’ has no member named ‘hard_start_xmit’<br
/> make[2]: *** [/home/lamnk/vpnclient/interceptor.o] Error 1<br
/> make[1]: *** [_module_/home/lamnk/vpnclient] Error 2<br
/> make[1]: Leaving directory `/usr/src/linux-headers-2.6.31-1-generic'<br
/> make: *** [default] Error 2<br
/> Failed to make module "cisco_ipsec.ko".</code></p></blockquote><p>Before installtion I assume that you have the latest version 4.8.02.0030 and the required packages for compiling ie gcc, libstdc++6 ... The kernel version should be from 2.6.30 to 2.6.32</p><ul><li>Download the client and extract it</li><li>Go to vpnclient folder:<br
/><blockquote><code>cd vpnclient</code></p></blockquote></li><li>Download patch file for 64 bit and apply it (users on 32bit systems can skip this step):<br
/><blockquote><p><code>wget http://lamnk.com/download/vpnclient-linux-4.8.02-64bit.patch</code></p></blockquote><p></p><blockquote><p><code>patch < ./vpnclient-linux-4.8.02-64bit.patch</code></p></blockquote><p></p><blockquote><p><code>sed -i 's/^CFLAGS/EXTRA_CFLAGS/' Makefile</code></p></blockquote></li><li>Download patch file for newer kernel (2.6.30+) and apply it:<br
/><blockquote><p><code>wget http://lamnk.com/download/vpnclient-linux-2.6.31-final.diff</code></p></blockquote><p></p><blockquote><p><code>patch < ./vpnclient-linux-2.6.31-final.diff</code></p></blockquote></li><li>Next we must edit a kernel source file<br
/><blockquote><p><code>sudo sed -i 's/const\ struct\ net_device_ops\ \*netdev_ops;/struct\ net_device_ops\ \*netdev_ops;/' `find /usr/src -name netdevice.h`</code></p></blockquote><p>Yes, it is a one liner, you should copy &#038; paste that command instead of typing <img
src='http://www.lamnk.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> The command's translation into English: find the string <code>const struct net_device_ops *netdev_ops;</code> and change it to <code>struct net_device_ops *netdev_ops;</code> in the file locates at<br
/><blockquote><code>find /usr/src -name netdevice.h</code></p></blockquote></li><li>And finally, install Cisco VPN Client:<br
/><blockquote><p><code>sudo ./vpn_install</code></p></blockquote></li></ul><p>The patch files are not from me. All credit goes to the people at <a
href="http://forum.tuxx-home.at/viewtopic.php?f=15&#038;t=790&#038;sid=0f466816287ec0ec3941772532ab725e">tuxx-home.at forum</a></p><p>If you can't install or have a problem please leave a comment</p><p>Related posts:<ol><li><a
href='http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-hardy-heron-804/' rel='bookmark' title='How to install Cisco VPN client on Ubuntu Hardy Heron 8.04 64 bit'>How to install Cisco VPN client on Ubuntu Hardy Heron 8.04 64 bit</a></li><li><a
href='http://www.lamnk.com/blog/vpn/with-kernel-2624-you-will-need-a-patch-to-install-cisco-vpn-client/' rel='bookmark' title='With kernel 2.6.24 you will need a patch to install Cisco VPN Client'>With kernel 2.6.24 you will need a patch to install Cisco VPN Client</a></li><li><a
href='http://www.lamnk.com/blog/vpn/can-not-compile-cisco-vpn-client-on-opensuse-103-64bit/' rel='bookmark' title='Can not compile Cisco VPN client on openSUSE 10.3 64bit'>Can not compile Cisco VPN client on openSUSE 10.3 64bit</a></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-jaunty-jackalope-and-karmic-koala-64-bit/feed/</wfw:commentRss> <slash:comments>86</slash:comments> </item> <item><title>How to fix error 27848 / 2738 at Cisco VPN installation</title><link>http://www.lamnk.com/blog/vpn/how-to-fix-error-27848-2738-at-cisco-vpn-installation/</link> <comments>http://www.lamnk.com/blog/vpn/how-to-fix-error-27848-2738-at-cisco-vpn-installation/#comments</comments> <pubDate>Thu, 27 Nov 2008 15:26:50 +0000</pubDate> <dc:creator>Lamnk</dc:creator> <category><![CDATA[VPN]]></category> <category><![CDATA[install]]></category> <category><![CDATA[windows]]></category> <guid
isPermaLink="false">http://www.lamnk.com/blog/?p=80</guid> <description><![CDATA[Sometimes (even with new machines) there are problems at the client&#8217;s installation, for example: Error 27848: Deterministic Network Enhancer installation requires a reboot first, to free locked resources. After that the installation process is rewinded back and canceled. To fix it, open the command prompt as administrator (Right click on cmd then choose Run as [...]
Related posts:<ol><li><a
href='http://www.lamnk.com/blog/vpn/how-to-fix-cisco-vpn-client-error-442-on-windows-vista/' rel='bookmark' title='How to fix Cisco VPN Client error 442 on Windows Vista'>How to fix Cisco VPN Client error 442 on Windows Vista</a></li><li><a
href='http://www.lamnk.com/blog/computer/wordpress-installation-error-establishing-a-database-connection/' rel='bookmark' title='WordPress installation &#8211; Error establishing a database connection'>WordPress installation &#8211; Error establishing a database connection</a></li><li><a
href='http://www.lamnk.com/blog/vpn/error-56-the-cisco-systems-inc-vpn-service-has-not-been-started/' rel='bookmark' title='Error 56: The Cisco Systems, Inc. VPN Service has not been started'>Error 56: The Cisco Systems, Inc. VPN Service has not been started</a></li></ol>]]></description> <content:encoded><![CDATA[<p>Sometimes (even with new machines) there are problems at the client&#8217;s installation, for example:</p><blockquote><p><code>Error 27848: Deterministic Network Enhancer installation requires a reboot first, to free locked resources.</code></p></blockquote><p>After that the installation process is rewinded back and canceled. To fix it, open the command prompt as administrator (Right click on <code>cmd</code> then choose <code>Run as Administrator</code>). Type those commands and press Enter:</p><blockquote><p><code>cd %systemroot%system32</code></p><p><code>regsvr32 /u dneinobj.dll</code></p></blockquote><p>If Vista complains about regsrv32, then maybe the program is not on the system path. You must use absolute path:</p><blockquote><p><code>C:\Windows\system32\regsvr32 /u C:\Windows\system32\dneinobj.dll</code></p></blockquote><p>For error 2738</p><blockquote><p>Internal Error 2738</p></blockquote><p>follow the same procedure as above, just replace the command <code>regsvr32 /u dneinobj.dll</code> with</p><blockquote><p><code>C:\Windows\system32\regsvr32 C:\Windows\system32\vbscript.dll</code></p></blockquote><p><strong>Update</strong>: <code>regsrv32</code> should be <code>regsvr32</code>, my mistake <img
src='http://www.lamnk.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /></p><p>Related posts:<ol><li><a
href='http://www.lamnk.com/blog/vpn/how-to-fix-cisco-vpn-client-error-442-on-windows-vista/' rel='bookmark' title='How to fix Cisco VPN Client error 442 on Windows Vista'>How to fix Cisco VPN Client error 442 on Windows Vista</a></li><li><a
href='http://www.lamnk.com/blog/computer/wordpress-installation-error-establishing-a-database-connection/' rel='bookmark' title='WordPress installation &#8211; Error establishing a database connection'>WordPress installation &#8211; Error establishing a database connection</a></li><li><a
href='http://www.lamnk.com/blog/vpn/error-56-the-cisco-systems-inc-vpn-service-has-not-been-started/' rel='bookmark' title='Error 56: The Cisco Systems, Inc. VPN Service has not been started'>Error 56: The Cisco Systems, Inc. VPN Service has not been started</a></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.lamnk.com/blog/vpn/how-to-fix-error-27848-2738-at-cisco-vpn-installation/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>How to install Cisco VPN client on Ubuntu Hardy Heron 8.04 64 bit</title><link>http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-hardy-heron-804/</link> <comments>http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-hardy-heron-804/#comments</comments> <pubDate>Sat, 17 May 2008 14:34:55 +0000</pubDate> <dc:creator>Lamnk</dc:creator> <category><![CDATA[VPN]]></category> <category><![CDATA[64bit]]></category> <category><![CDATA[cisco]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[ubuntu]]></category> <guid
isPermaLink="false">http://www.lamnk.com/blog/?p=57</guid> <description><![CDATA[Nov 20 2010: New guide for Cisco vpnclient on Ubuntu linux Maverick Meerkat 10.10 UPDATE: A new client for linux (4.8.02.0030) is out. You no longer need the patch for 2.6.24+ kernel (vpnclient-linux-2.6.24-final.diff). However the patch for 64 bit systems is still required and the CFLAGS variable in Makefile still need to be changed to [...]
Related posts:<ol><li><a
href='http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-jaunty-jackalope-and-karmic-koala-64-bit/' rel='bookmark' title='How to install Cisco VPN client on Ubuntu Jaunty Jackalope and Karmic Koala 64 bit'>How to install Cisco VPN client on Ubuntu Jaunty Jackalope and Karmic Koala 64 bit</a></li><li><a
href='http://www.lamnk.com/blog/vpn/with-kernel-2624-you-will-need-a-patch-to-install-cisco-vpn-client/' rel='bookmark' title='With kernel 2.6.24 you will need a patch to install Cisco VPN Client'>With kernel 2.6.24 you will need a patch to install Cisco VPN Client</a></li><li><a
href='http://www.lamnk.com/blog/vpn/can-not-compile-cisco-vpn-client-on-opensuse-103-64bit/' rel='bookmark' title='Can not compile Cisco VPN client on openSUSE 10.3 64bit'>Can not compile Cisco VPN client on openSUSE 10.3 64bit</a></li></ol>]]></description> <content:encoded><![CDATA[<p><strong>Nov 20 2010</strong>: New guide for <a
href="http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-jaunty-jackalope-and-karmic-koala-64-bit/">Cisco vpnclient on Ubuntu linux Maverick Meerkat 10.10</a></p><p><strong>UPDATE</strong>: A new client for linux (4.8.02.0030) is out. You no longer need the patch for 2.6.24+ kernel (vpnclient-linux-2.6.24-final.diff). However the patch for 64 bit systems is still required and the CFLAGS variable in <em>Makefile</em> still need to be changed to EXTRA_CFLAGS.</p><p><strong>June 26 2009</strong>: This post also applies to Ubuntu Jaunty Jackalope 9.04 (more than one year later and it&#8217;s still not fixed)</p><p>I assume that you have the latest version 4.8.01.0640 and the required packages for compiling.</p><p>If you install the original Cisco VPN client on Hardy you will receive the following error:</p><blockquote><p>make -C /lib/modules/2.6.24-16-generic/build SUBDIRS=/home/lamnk/src/vpn/vpnclient modules<br
/> make[1]: Entering directory `/usr/src/linux-headers-2.6.24-16-generic&#8217;<br
/> scripts/Makefile.build:46: *** CFLAGS was changed in &#8220;/home/lamnk/src/vpn/vpnclient/Makefile&#8221;. Fix it to use EXTRA_CFLAGS.  Stop.<br
/> make[1]: *** [_module_/home/lamnk/src/vpn/vpnclient] Error 2<br
/> make[1]: Leaving directory `/usr/src/linux-headers-2.6.24-16-generic&#8217;<br
/> make: *** [default] Error 2</p></blockquote><p>As those lines point out, you need to edit the Makefile file in the <em>vpnclient</em> folder and change CFLAGS to EXTRA_CFLAGS: Change the following line in Makefile</p><blockquote><p>CFLAGS += -mcmodel=kernel -mno-red-zone</p></blockquote><p>to</p><blockquote><p>EXTRA_CFLAGS += -mcmodel=kernel -mno-red-zone</p></blockquote><p>then apply the 2 patches for kernel 2.6.24 and for 64 bit:</p><blockquote><p>vpnclient_folder$ wget lamnk.com/download/vpnclient-linux-2.6.24-final.diff</p><p>vpnclient_folder$ wget lamnk.com/download/cisco_skbuff_offset.patch</p><p>vpnclient_folder$ patch &lt; ./vpnclient-linux-2.6.24-final.diff</p><p>vpnclient_folder$ patch &lt; ./cisco_skbuff_offset.patch</p><p>vpnclient_folder$ ./vpn_install</p></blockquote><p>If your system is 32 bit then you only need to patch the vpnclient-linux-2.6.24-final.diff file.</p><p>The patch for 64 bit system is from <a
title="stephen frost" href="http://www.snowman.net/weblog">Stephen Frost</a> and the patch for kernel 2.6.24 is from <a
title="stephen frost" href="http://www.snowman.net/weblog"></a><a
title="alexander griesser" href="http://tuxx-home.at/">Alexander Griesser</a>. Seriously Cisco should pay those guys some money &#8230; If these patches help you then please consider donate them.<a
title="stephen frost" href="http://www.snowman.net/weblog"><br
/> </a></p><p>Related posts:<ol><li><a
href='http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-jaunty-jackalope-and-karmic-koala-64-bit/' rel='bookmark' title='How to install Cisco VPN client on Ubuntu Jaunty Jackalope and Karmic Koala 64 bit'>How to install Cisco VPN client on Ubuntu Jaunty Jackalope and Karmic Koala 64 bit</a></li><li><a
href='http://www.lamnk.com/blog/vpn/with-kernel-2624-you-will-need-a-patch-to-install-cisco-vpn-client/' rel='bookmark' title='With kernel 2.6.24 you will need a patch to install Cisco VPN Client'>With kernel 2.6.24 you will need a patch to install Cisco VPN Client</a></li><li><a
href='http://www.lamnk.com/blog/vpn/can-not-compile-cisco-vpn-client-on-opensuse-103-64bit/' rel='bookmark' title='Can not compile Cisco VPN client on openSUSE 10.3 64bit'>Can not compile Cisco VPN client on openSUSE 10.3 64bit</a></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-hardy-heron-804/feed/</wfw:commentRss> <slash:comments>20</slash:comments> </item> <item><title>Error 56: The Cisco Systems, Inc. VPN Service has not been started</title><link>http://www.lamnk.com/blog/vpn/error-56-the-cisco-systems-inc-vpn-service-has-not-been-started/</link> <comments>http://www.lamnk.com/blog/vpn/error-56-the-cisco-systems-inc-vpn-service-has-not-been-started/#comments</comments> <pubDate>Wed, 19 Mar 2008 15:19:52 +0000</pubDate> <dc:creator>Lamnk</dc:creator> <category><![CDATA[VPN]]></category> <category><![CDATA[cisco]]></category> <guid
isPermaLink="false">http://www.lamnk.com/blog/vpn/error-56-the-cisco-systems-inc-vpn-service-has-not-been-started/</guid> <description><![CDATA[On some systems there is this problem with Cisco VPN service: cvpnd.exe must be excuted before you run the ipsecdialer.exe ( the GUI for the client ). But even if you start the service per hand in services.msc, it got killed in a few seconds after thus you can not run the client. Update: thanks [...]
Related posts:<ol><li><a
href='http://www.lamnk.com/blog/vpn/how-to-fix-cisco-vpn-client-error-442-on-windows-vista/' rel='bookmark' title='How to fix Cisco VPN Client error 442 on Windows Vista'>How to fix Cisco VPN Client error 442 on Windows Vista</a></li><li><a
href='http://www.lamnk.com/blog/vpn/cisco-vpn-now-runs-on-linux-64-bit-systems/' rel='bookmark' title='Cisco VPN now runs on linux 64 bit systems'>Cisco VPN now runs on linux 64 bit systems</a></li><li><a
href='http://www.lamnk.com/blog/vpn/32bit-cisco-vpn-client-on-64-bit-linux-systems/' rel='bookmark' title='32bit Cisco VPN client on 64 bit linux systems'>32bit Cisco VPN client on 64 bit linux systems</a></li></ol>]]></description> <content:encoded><![CDATA[<p>On some systems there is this problem with Cisco VPN service: <em>cvpnd.exe</em> must be excuted before you run the <em>ipsecdialer.exe</em> ( the GUI for the client ). But even if you start the service per hand in <em>services.msc</em>, it got killed in a few seconds after thus you can not run the client.</p><p><strong>Update:</strong> thanks to <span
class="comment-author vcard"><span
class="fn n">Zhigang Wu we now only need to disable the Internet Connection Sharing service (also in <em>services.msc</em>), turn it from <em>Automatically</em> starting to <em>Manual</em>, and start the Cisco service. It will not be killed again. The registry method becomes obsolete and is only recommended as a last resort as it&#8217;s dangerous and may cause you problems.<br
/> </span></span></p><p><span
style="text-decoration: line-through;">To work around this problem: Uninstall Cisco VPN in Windows Control Panel, then go to regedit and remove all the entries have <em>Cisco</em> term in them. Be careful, back up the registry with built-in export function of regedit first and do not delete somethings like &#8220;Franscisco&#8221;, ok ? Some entries can not be deleted, it&#8217;s normal, just F3 until you reach the end of the registry.</span></p><p>Related posts:<ol><li><a
href='http://www.lamnk.com/blog/vpn/how-to-fix-cisco-vpn-client-error-442-on-windows-vista/' rel='bookmark' title='How to fix Cisco VPN Client error 442 on Windows Vista'>How to fix Cisco VPN Client error 442 on Windows Vista</a></li><li><a
href='http://www.lamnk.com/blog/vpn/cisco-vpn-now-runs-on-linux-64-bit-systems/' rel='bookmark' title='Cisco VPN now runs on linux 64 bit systems'>Cisco VPN now runs on linux 64 bit systems</a></li><li><a
href='http://www.lamnk.com/blog/vpn/32bit-cisco-vpn-client-on-64-bit-linux-systems/' rel='bookmark' title='32bit Cisco VPN client on 64 bit linux systems'>32bit Cisco VPN client on 64 bit linux systems</a></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.lamnk.com/blog/vpn/error-56-the-cisco-systems-inc-vpn-service-has-not-been-started/feed/</wfw:commentRss> <slash:comments>39</slash:comments> </item> <item><title>With kernel 2.6.24 you will need a patch to install Cisco VPN Client</title><link>http://www.lamnk.com/blog/vpn/with-kernel-2624-you-will-need-a-patch-to-install-cisco-vpn-client/</link> <comments>http://www.lamnk.com/blog/vpn/with-kernel-2624-you-will-need-a-patch-to-install-cisco-vpn-client/#comments</comments> <pubDate>Sat, 08 Mar 2008 16:51:08 +0000</pubDate> <dc:creator>Lamnk</dc:creator> <category><![CDATA[VPN]]></category> <category><![CDATA[2.6.24]]></category> <category><![CDATA[cisco]]></category> <category><![CDATA[kernel]]></category> <category><![CDATA[linux]]></category> <guid
isPermaLink="false">http://www.lamnk.com/blog/vpn/with-kernel-2624-you-will-need-a-patch-to-install-cisco-vpn-client/</guid> <description><![CDATA[UPDATE: A new client for linux (4.8.02.0030) is out. You no longer need the patch for 2.6.24+ kernel on 32 bit systems. However a patch for 64 bit systems is still required. Please click on the link right below to see the howto for 64bit. UPDATE: 64 bit systems are a bit more complicated, please [...]
Related posts:<ol><li><a
href='http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-jaunty-jackalope-and-karmic-koala-64-bit/' rel='bookmark' title='How to install Cisco VPN client on Ubuntu Jaunty Jackalope and Karmic Koala 64 bit'>How to install Cisco VPN client on Ubuntu Jaunty Jackalope and Karmic Koala 64 bit</a></li><li><a
href='http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-hardy-heron-804/' rel='bookmark' title='How to install Cisco VPN client on Ubuntu Hardy Heron 8.04 64 bit'>How to install Cisco VPN client on Ubuntu Hardy Heron 8.04 64 bit</a></li><li><a
href='http://www.lamnk.com/blog/vpn/can-not-compile-cisco-vpn-client-on-opensuse-103-64bit/' rel='bookmark' title='Can not compile Cisco VPN client on openSUSE 10.3 64bit'>Can not compile Cisco VPN client on openSUSE 10.3 64bit</a></li></ol>]]></description> <content:encoded><![CDATA[<p><strong>UPDATE</strong>: A new client for linux (4.8.02.0030) is out. You no longer need the patch for 2.6.24+ kernel on 32 bit systems. However a patch for 64 bit systems is still required. Please click on the link right below to see the howto for 64bit.</p><p>UPDATE: 64 bit systems are a bit more complicated, please see <a
href="http://www.lamnk.com/blog/domain/how-to-install-cisco-vpn-client-on-ubuntu-hardy-heron-804/">how to install Cisco VPN on Hardy Heron 8.04 64 bit</a></p><p>UPDATE: with 2.6.25 kernel this patch is still required (luckily)</p><p>OK it&#8217;s not breaking news anymore, but in case you confront these errrors:</p><blockquote><p>make -C /lib/modules/2.6.24-ARCH/build SUBDIRS=/usr/src/vpnclient modules<br
/> make[1]: Entering directory `/usr/src/linux-2.6.24-ARCH&#8217;<br
/> CC [M]  /usr/src/vpnclient/linuxcniapi.o<br
/> In file included from /usr/src/vpnclient/Cniapi.h:15,<br
/> from /usr/src/vpnclient/linuxcniapi.c:31:<br
/> /usr/src/vpnclient/GenDefs.h:113: error: conflicting types for &#8216;uintptr_t&#8217;<br
/> include/linux/types.h:40: error: previous declaration of &#8216;uintptr_t&#8217; was here<br
/> make[2]: *** [/usr/src/vpnclient/linuxcniapi.o] Error 1<br
/> make[1]: *** [_module_/usr/src/vpnclient] Error 2<br
/> make[1]: Leaving directory `/usr/src/linux-2.6.24-ARCH&#8217;<br
/> make: *** [default] Error 2</p></blockquote><p>Then you probably need a patch:</p><blockquote><p>cd /path/to/the/vpnclient/folder<br
/> wget http://projects.tuxx-home.at/ciscovpn/patches/vpnclient-linux-2.6.24-final.diff<br
/> patch &lt; ./vpnclient-linux-2.6.24-final.diff</p></blockquote><p>This is due to a change in 2.6.4 kernel that the &#8220;init_net&#8221; symbol is now again exported using EXPORT_SYMBOL() instead of EXPORT_SYMBOL_GPL()</p><p>Related posts:<ol><li><a
href='http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-jaunty-jackalope-and-karmic-koala-64-bit/' rel='bookmark' title='How to install Cisco VPN client on Ubuntu Jaunty Jackalope and Karmic Koala 64 bit'>How to install Cisco VPN client on Ubuntu Jaunty Jackalope and Karmic Koala 64 bit</a></li><li><a
href='http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-hardy-heron-804/' rel='bookmark' title='How to install Cisco VPN client on Ubuntu Hardy Heron 8.04 64 bit'>How to install Cisco VPN client on Ubuntu Hardy Heron 8.04 64 bit</a></li><li><a
href='http://www.lamnk.com/blog/vpn/can-not-compile-cisco-vpn-client-on-opensuse-103-64bit/' rel='bookmark' title='Can not compile Cisco VPN client on openSUSE 10.3 64bit'>Can not compile Cisco VPN client on openSUSE 10.3 64bit</a></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.lamnk.com/blog/vpn/with-kernel-2624-you-will-need-a-patch-to-install-cisco-vpn-client/feed/</wfw:commentRss> <slash:comments>43</slash:comments> </item> <item><title>Strange error when compile vpnc</title><link>http://www.lamnk.com/blog/vpn/strange-error-when-compile-vpnc/</link> <comments>http://www.lamnk.com/blog/vpn/strange-error-when-compile-vpnc/#comments</comments> <pubDate>Sat, 08 Mar 2008 00:29:47 +0000</pubDate> <dc:creator>Lamnk</dc:creator> <category><![CDATA[VPN]]></category> <category><![CDATA[compile]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[vpnc]]></category> <guid
isPermaLink="false">http://www.lamnk.com/blog/vpn/strange-error-when-compile-vpnc/</guid> <description><![CDATA[I was playing around with Arch linux recently. It&#8217;s a minimalistic distro which lets you configure your system the way you want. Advatanges are booting time ( man it&#8217;s fast ), rolling release system so it doesn&#8217;t require you to install new release every 6 months like other distros, good package management tool alongside with [...]
Related posts:<ol><li><a
href='http://www.lamnk.com/blog/vpn/can-not-compile-cisco-vpn-client-on-opensuse-103-64bit/' rel='bookmark' title='Can not compile Cisco VPN client on openSUSE 10.3 64bit'>Can not compile Cisco VPN client on openSUSE 10.3 64bit</a></li><li><a
href='http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-jaunty-jackalope-and-karmic-koala-64-bit/' rel='bookmark' title='How to install Cisco VPN client on Ubuntu Jaunty Jackalope and Karmic Koala 64 bit'>How to install Cisco VPN client on Ubuntu Jaunty Jackalope and Karmic Koala 64 bit</a></li></ol>]]></description> <content:encoded><![CDATA[<p>I was playing around with Arch linux recently. It&#8217;s a minimalistic distro which lets you configure your system the way you want. Advatanges are booting time ( man it&#8217;s fast ), rolling release system so it doesn&#8217;t require you to install new release every 6 months like other distros, good package management tool alongside with the ports-like ABS to build things from source. Disadavantges are the time consuming configuration and you really need some linux knowledge, otherwise you will go back to Ubuntu someday :p</p><p>Back on topic, i rarely have any trouble compiling vpnc before, but this time it&#8217;s quite strange:</p><blockquote><p>gcc -O3 -g -W -Wall -Wmissing-declarations -Wwrite-strings  -DVERSION=\&#8221;0.5.1\&#8221;   -c -o sysdep.o sysdep.c<br
/> In file included from config.h:27,<br
/> from sysdep.h:31,<br
/> from sysdep.c:71:<br
/> vpnc-debug.h:1: error: expected &#8216;=&#8217;, &#8216;,&#8217;, &#8216;;&#8217;, &#8216;asm&#8217; or &#8216;__attribute__&#8217; before &#8216;:&#8217; token<br
/> vpnc-debug.h:16: warning: &#8216;struct debug_strings&#8217; declared inside parameter list<br
/> vpnc-debug.h:16: warning: its scope is only this definition or declaration, which is probably not what you want<br
/> vpnc-debug.h:18: error: array type has incomplete element type<br
/> vpnc-debug.h:19: error: array type has incomplete element type<br
/> &#8230;.<br
/> vpnc-debug.h:20: error: array type has incomplete element type</p></blockquote><p>Turn out that you just need to define the locale with &#8220;sudo locale-gen&#8221; after editing the /etc/locale ( the location may differ with other distros )</p><p>Related posts:<ol><li><a
href='http://www.lamnk.com/blog/vpn/can-not-compile-cisco-vpn-client-on-opensuse-103-64bit/' rel='bookmark' title='Can not compile Cisco VPN client on openSUSE 10.3 64bit'>Can not compile Cisco VPN client on openSUSE 10.3 64bit</a></li><li><a
href='http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-jaunty-jackalope-and-karmic-koala-64-bit/' rel='bookmark' title='How to install Cisco VPN client on Ubuntu Jaunty Jackalope and Karmic Koala 64 bit'>How to install Cisco VPN client on Ubuntu Jaunty Jackalope and Karmic Koala 64 bit</a></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.lamnk.com/blog/vpn/strange-error-when-compile-vpnc/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Never ending headache … disconnect problem again</title><link>http://www.lamnk.com/blog/vpn/never-ending-headache-disconnect-problem-again/</link> <comments>http://www.lamnk.com/blog/vpn/never-ending-headache-disconnect-problem-again/#comments</comments> <pubDate>Wed, 27 Feb 2008 17:26:11 +0000</pubDate> <dc:creator>Lamnk</dc:creator> <category><![CDATA[VPN]]></category> <category><![CDATA[cisco]]></category> <category><![CDATA[vista]]></category> <category><![CDATA[windows]]></category> <guid
isPermaLink="false">http://www.lamnk.com/blog/vpn/never-ending-headache-disconnect-problem-again/</guid> <description><![CDATA[The VPN connection on Vista drops after every 5-10 minutes idle times ( means no surfing or other net related activities ). Why ? Fuck me if i know. It doesn&#8217;t matter over wireless or LAN, wired connection breaks all the time too. And the employees in uni are reporting disconnecting problem on XP with [...]
Related posts:<ol><li><a
href='http://www.lamnk.com/blog/vpn/how-to-fix-cisco-vpn-client-error-442-on-windows-vista/' rel='bookmark' title='How to fix Cisco VPN Client error 442 on Windows Vista'>How to fix Cisco VPN Client error 442 on Windows Vista</a></li><li><a
href='http://www.lamnk.com/blog/vpn/cisco-vpn-client-reason-412-the-remote-peer-is-no-longer-responding/' rel='bookmark' title='Cisco VPN Client: Reason 412 &#8211; The remote peer is no longer responding'>Cisco VPN Client: Reason 412 &#8211; The remote peer is no longer responding</a></li><li><a
href='http://www.lamnk.com/blog/vpn/error-56-the-cisco-systems-inc-vpn-service-has-not-been-started/' rel='bookmark' title='Error 56: The Cisco Systems, Inc. VPN Service has not been started'>Error 56: The Cisco Systems, Inc. VPN Service has not been started</a></li></ol>]]></description> <content:encoded><![CDATA[<p>The VPN connection on Vista drops after every 5-10 minutes idle times ( means no surfing or other net related activities ). Why ? Fuck me if i know. It doesn&#8217;t matter over wireless or LAN, wired connection breaks all the time too.</p><p>And the employees in uni are reporting disconnecting problem on XP with their home DSL &#8230; How could i fix it, given that i&#8217;ve never ever used a dsl line before ? Otherwise reproducing disconnecting problems is very time consuming and boring.</p><p>Related posts:<ol><li><a
href='http://www.lamnk.com/blog/vpn/how-to-fix-cisco-vpn-client-error-442-on-windows-vista/' rel='bookmark' title='How to fix Cisco VPN Client error 442 on Windows Vista'>How to fix Cisco VPN Client error 442 on Windows Vista</a></li><li><a
href='http://www.lamnk.com/blog/vpn/cisco-vpn-client-reason-412-the-remote-peer-is-no-longer-responding/' rel='bookmark' title='Cisco VPN Client: Reason 412 &#8211; The remote peer is no longer responding'>Cisco VPN Client: Reason 412 &#8211; The remote peer is no longer responding</a></li><li><a
href='http://www.lamnk.com/blog/vpn/error-56-the-cisco-systems-inc-vpn-service-has-not-been-started/' rel='bookmark' title='Error 56: The Cisco Systems, Inc. VPN Service has not been started'>Error 56: The Cisco Systems, Inc. VPN Service has not been started</a></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.lamnk.com/blog/vpn/never-ending-headache-disconnect-problem-again/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Cisco VPN now runs on linux 64 bit systems</title><link>http://www.lamnk.com/blog/vpn/cisco-vpn-now-runs-on-linux-64-bit-systems/</link> <comments>http://www.lamnk.com/blog/vpn/cisco-vpn-now-runs-on-linux-64-bit-systems/#comments</comments> <pubDate>Fri, 18 Jan 2008 17:19:19 +0000</pubDate> <dc:creator>Lamnk</dc:creator> <category><![CDATA[VPN]]></category> <category><![CDATA[cisco]]></category> <category><![CDATA[linux]]></category> <guid
isPermaLink="false">http://www.lamnk.com/blog/vpn/cisco-vpn-now-runs-on-linux-64-bit-systems/</guid> <description><![CDATA[Errm &#8230; with a patch. Cisco hasn&#8217;t released a new version for Linux yet. Quick guide: ( I assume you knew all the requirements to install the Cisco client ) Go to the extracted vpn directory wget http://tuxx-home.at/projects/cisco-vpnclient/cisco_skbuff_offset.patch patch &#60; cisco_skbuff_offset.patch sudo ./vpn_install That&#8217;s it. Related posts: 32bit Cisco VPN client on 64 bit linux [...]
Related posts:<ol><li><a
href='http://www.lamnk.com/blog/vpn/32bit-cisco-vpn-client-on-64-bit-linux-systems/' rel='bookmark' title='32bit Cisco VPN client on 64 bit linux systems'>32bit Cisco VPN client on 64 bit linux systems</a></li><li><a
href='http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-jaunty-jackalope-and-karmic-koala-64-bit/' rel='bookmark' title='How to install Cisco VPN client on Ubuntu Jaunty Jackalope and Karmic Koala 64 bit'>How to install Cisco VPN client on Ubuntu Jaunty Jackalope and Karmic Koala 64 bit</a></li><li><a
href='http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-hardy-heron-804/' rel='bookmark' title='How to install Cisco VPN client on Ubuntu Hardy Heron 8.04 64 bit'>How to install Cisco VPN client on Ubuntu Hardy Heron 8.04 64 bit</a></li></ol>]]></description> <content:encoded><![CDATA[<p>Errm &#8230; with a patch. Cisco hasn&#8217;t released a new version for Linux yet.</p><p>Quick guide: ( I assume you knew all the requirements to install the Cisco client )</p><ul><li>Go to the extracted vpn directory</li><li>wget http://tuxx-home.at/projects/cisco-vpnclient/cisco_skbuff_offset.patch</li><li>patch &lt; cisco_skbuff_offset.patch</li><li>sudo ./vpn_install</li></ul><p>That&#8217;s it.</p><p>Related posts:<ol><li><a
href='http://www.lamnk.com/blog/vpn/32bit-cisco-vpn-client-on-64-bit-linux-systems/' rel='bookmark' title='32bit Cisco VPN client on 64 bit linux systems'>32bit Cisco VPN client on 64 bit linux systems</a></li><li><a
href='http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-jaunty-jackalope-and-karmic-koala-64-bit/' rel='bookmark' title='How to install Cisco VPN client on Ubuntu Jaunty Jackalope and Karmic Koala 64 bit'>How to install Cisco VPN client on Ubuntu Jaunty Jackalope and Karmic Koala 64 bit</a></li><li><a
href='http://www.lamnk.com/blog/vpn/how-to-install-cisco-vpn-client-on-ubuntu-hardy-heron-804/' rel='bookmark' title='How to install Cisco VPN client on Ubuntu Hardy Heron 8.04 64 bit'>How to install Cisco VPN client on Ubuntu Hardy Heron 8.04 64 bit</a></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.lamnk.com/blog/vpn/cisco-vpn-now-runs-on-linux-64-bit-systems/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Cisco VPN Client: Reason 412 &#8211; The remote peer is no longer responding</title><link>http://www.lamnk.com/blog/vpn/cisco-vpn-client-reason-412-the-remote-peer-is-no-longer-responding/</link> <comments>http://www.lamnk.com/blog/vpn/cisco-vpn-client-reason-412-the-remote-peer-is-no-longer-responding/#comments</comments> <pubDate>Wed, 16 Jan 2008 15:38:17 +0000</pubDate> <dc:creator>Lamnk</dc:creator> <category><![CDATA[VPN]]></category> <category><![CDATA[cisco]]></category> <guid
isPermaLink="false">http://www.lamnk.com/blog/vpn/cisco-vpn-client-reason-412-the-remote-peer-is-no-longer-responding/</guid> <description><![CDATA[The error: "Secure VPN connection terminated locally by the Client. Reason 412: The remote peer is no longer responding" means the software VPN Client detected that the VPN server is not responding anymore and deleted the connection. This is caused by several different reasons, for example: The user is behind a firewall that is blocking [...]
Related posts:<ol><li><a
href='http://www.lamnk.com/blog/vpn/using-firestarter-with-cisco-vpn-client/' rel='bookmark' title='Using Firestarter with Cisco VPN Client'>Using Firestarter with Cisco VPN Client</a></li><li><a
href='http://www.lamnk.com/blog/vpn/how-to-fix-cisco-vpn-client-error-442-on-windows-vista/' rel='bookmark' title='How to fix Cisco VPN Client error 442 on Windows Vista'>How to fix Cisco VPN Client error 442 on Windows Vista</a></li><li><a
href='http://www.lamnk.com/blog/computer/cisco-vpn-client-freezes-system-with-dual-core-cpu/' rel='bookmark' title='Cisco VPN Client freezes system with dual core CPU'>Cisco VPN Client freezes system with dual core CPU</a></li></ol>]]></description> <content:encoded><![CDATA[<p>The error: <code>"Secure VPN connection terminated locally by the Client. Reason 412: The remote peer is no longer responding"</code> means the software VPN Client detected that the VPN server is not responding anymore and deleted the connection. This is caused by several different reasons, for example:</p><ul><li>The user is behind a firewall that is blocking ports UDP 4500/500 and/or ESP.</li><li>The VPN client is using connecting on TCP and the default TCP port 10000 for NATT is blocked.</li><li>The internet connection is not stable and some packets are not reaching the VPN concentrator/server or the replies from the server/concentrator aren&#8217;t getting to the client, hence the client thinks the server is no longer available.</li><li>The VPN client is behind a NAT device and the VPN Server doesn&#8217;t have NAT-T enabled. In this case the user will not be able to send or receive traffic at all. It will be able to connect but that&#8217;s all. After some time the software client deletes the VPN tunnel.</li></ul><p>Suggested solutions:</p><ul><li>If you are using wireless, try to connect with cable</li><li>Turn your firewall off, then test the connection to see whether the problem still occurs. If it doesn&#8217;t then you can turn your firewall back on, add exception rules for port 500, port 4500 and the ESP protocol in your firewall</li><li>Turn on NAT-T/TCP in your profile ( remember to unblock port 10000 in your firewall)</li><li>Edit your profile with your editor and change ForceKeepAlive=0 to 1</li></ul><p>Related posts:<ol><li><a
href='http://www.lamnk.com/blog/vpn/using-firestarter-with-cisco-vpn-client/' rel='bookmark' title='Using Firestarter with Cisco VPN Client'>Using Firestarter with Cisco VPN Client</a></li><li><a
href='http://www.lamnk.com/blog/vpn/how-to-fix-cisco-vpn-client-error-442-on-windows-vista/' rel='bookmark' title='How to fix Cisco VPN Client error 442 on Windows Vista'>How to fix Cisco VPN Client error 442 on Windows Vista</a></li><li><a
href='http://www.lamnk.com/blog/computer/cisco-vpn-client-freezes-system-with-dual-core-cpu/' rel='bookmark' title='Cisco VPN Client freezes system with dual core CPU'>Cisco VPN Client freezes system with dual core CPU</a></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.lamnk.com/blog/vpn/cisco-vpn-client-reason-412-the-remote-peer-is-no-longer-responding/feed/</wfw:commentRss> <slash:comments>38</slash:comments> </item> </channel> </rss>
